From 1923c460a58cdd2142653c8eed27f17856042fba Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Sat, 7 Dec 2013 19:30:20 -0800 Subject: [PATCH 01/52] Net: for for IPv4 case skipping 0.0.0.0 --- Net/src/IPAddress.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Net/src/IPAddress.cpp b/Net/src/IPAddress.cpp index 0a2689f83..329cf09f4 100644 --- a/Net/src/IPAddress.cpp +++ b/Net/src/IPAddress.cpp @@ -549,7 +549,7 @@ IPAddress IPAddress::parse(const std::string& addr) bool IPAddress::tryParse(const std::string& addr, IPAddress& result) { IPv4AddressImpl impl4(IPv4AddressImpl::parse(addr)); - if (impl4 != IPv4AddressImpl()) + if (impl4 != IPv4AddressImpl() || trim(addr) == "0.0.0.0") { result.newIPv4(impl4.addr()); return true; From 922ca412848bc8b5fd05cd6903779eac4e7463a7 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Sun, 20 Oct 2013 13:06:33 -0700 Subject: [PATCH 02/52] fix pocomsg.h generation so the target stops rebuilding The output directory specified by -h should match the RES_SRCS directory. Changed the RES_SRCS to specify the srcs directory. --- Foundation/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/CMakeLists.txt b/Foundation/CMakeLists.txt index 0f6b3f69a..05589ffa3 100644 --- a/Foundation/CMakeLists.txt +++ b/Foundation/CMakeLists.txt @@ -204,7 +204,7 @@ set(WIN_SRCS ) if (WIN32) - set(RES_SRCS ${CMAKE_SOURCE_DIR}/Foundation/include/Poco/pocomsg.h) + set(RES_SRCS ${CMAKE_SOURCE_DIR}/Foundation/src/pocomsg.h) set_source_files_properties(${RES_SRCS} PROPERTIES GENERATED true) add_custom_command( OUTPUT ${RES_SRCS} From 1e22982ad836a60f0ddef3e80dd88ffa0b348398 Mon Sep 17 00:00:00 2001 From: Pascal Bach Date: Thu, 27 Mar 2014 11:29:50 +0100 Subject: [PATCH 03/52] Fix missing ")" in SQLite Connector for windows --- Data/SQLite/include/Poco/Data/SQLite/Connector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/SQLite/include/Poco/Data/SQLite/Connector.h b/Data/SQLite/include/Poco/Data/SQLite/Connector.h index 266508712..167ac6fe9 100644 --- a/Data/SQLite/include/Poco/Data/SQLite/Connector.h +++ b/Data/SQLite/include/Poco/Data/SQLite/Connector.h @@ -133,7 +133,7 @@ struct SQLite_API SQLiteConnectorRegistrator #if defined(POCO_OS_FAMILY_WINDOWS) extern "C" const struct SQLite_API SQLiteConnectorRegistrator pocoSQLiteConnectorRegistrator; #if defined(SQLite_EXPORTS) - #if defined(_WIN64 || defined(_WIN32_WCE) + #if defined(_WIN64) || defined(_WIN32_WCE) #define POCO_DATA_SQLITE_FORCE_SYMBOL(s) __pragma(comment (linker, "/export:"#s)) #elif defined(_WIN32) #define POCO_DATA_SQLITE_FORCE_SYMBOL(s) __pragma(comment (linker, "/export:_"#s)) From f24cf35322532779ba63d62983895d02bdbfaf0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Thu, 27 Mar 2014 15:48:25 +0100 Subject: [PATCH 04/52] added WEC2013 support to buildwin.cmd --- buildwin.cmd | 58 +++++++++++++++++++++++++++++++--------------------- 1 file changed, 35 insertions(+), 23 deletions(-) diff --git a/buildwin.cmd b/buildwin.cmd index 1c4502779..d0ed8309f 100644 --- a/buildwin.cmd +++ b/buildwin.cmd @@ -22,7 +22,7 @@ rem VS_VERSION: 71|80|90|100|110|120 rem ACTION: build|rebuild|clean rem LINKMODE: static_mt|static_md|shared|all rem CONFIGURATION: release|debug|both -rem PLATFORM: Win32|x64|WinCE +rem PLATFORM: Win32|x64|WinCE|WEC2013 rem SAMPLES: samples|nosamples rem TESTS: tests|notests rem TOOL: devenv|vcexpress|wdexpress|msbuild @@ -157,18 +157,30 @@ if not "%CONFIGURATION%"=="debug" ( if not "%CONFIGURATION%"=="" ( if not "%CONFIGURATION%"=="both" goto usage))) -rem PLATFORM [Win32|x64|WinCE] +rem PLATFORM [Win32|x64|WinCE|WEC2013] set PLATFORM=%5 if not "%PLATFORM%"=="" ( if not "%PLATFORM%"=="Win32" ( if not "%PLATFORM%"=="x64" ( -if not "%PLATFORM%"=="WinCE" goto usage))) +if not "%PLATFORM%"=="WinCE" ( +if not "%PLATFORM%"=="WEC2013" goto usage)))) if "%PLATFORM%"=="" (set PLATFORM_SUFFIX=) else ( if "%PLATFORM%"=="Win32" (set PLATFORM_SUFFIX=) else ( if "%PLATFORM%"=="x64" (set PLATFORM_SUFFIX=_x64) else ( -if "%PLATFORM%"=="WinCE" (set PLATFORM_SUFFIX=_CE)))) +if "%PLATFORM%"=="WinCE" (set PLATFORM_SUFFIX=_CE) else ( +if "%PLATFORM%"=="WEC2013" (set PLATFORM_SUFFIX=_WEC2013)))) + +if "%PLATFORM%"=="WEC2013" ( +if "%WEC2013_PLATFORM%"=="" ( +echo WEC2013_PLATFORM not set. Exiting. +exit /b 1 +) +set PLATFORMSW=/p:Platform=%WEC2013_PLATFORM%) +set USEENV= +set EXTRASW=/m /p:VisualStudioVersion=11.0 +) rem SAMPLES [samples|nosamples] set SAMPLES=%6 @@ -330,72 +342,72 @@ rem //////////////////// echo. if %DEBUG_SHARED%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_shared !PROJECT_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_shared %PLATFORMSW% !PROJECT_FILE! if ERRORLEVEL 1 exit /b 1 echo. && echo. && echo. if %TESTS%==tests ( if exist !TEST_PROJECT_FILE! ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_shared !TEST_PROJECT_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_shared %PLATFORMSW% !TEST_PROJECT_FILE! if ERRORLEVEL 1 exit /b 1 echo. && echo. && echo. ) ) ) if %RELEASE_SHARED%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_shared !PROJECT_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_shared %PLATFORMSW% !PROJECT_FILE! if ERRORLEVEL 1 exit /b 1 echo. && echo. && echo. if %TESTS%==tests ( if exist !TEST_PROJECT_FILE! ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_shared !TEST_PROJECT_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_shared %PLATFORMSW% !TEST_PROJECT_FILE! if ERRORLEVEL 1 exit /b 1 echo. && echo. && echo. ) ) ) if %DEBUG_STATIC_MT%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_mt !PROJECT_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_mt %PLATFORMSW% !PROJECT_FILE! if ERRORLEVEL 1 exit /b 1 echo. && echo. && echo. if %TESTS%==tests ( if exist !TEST_PROJECT_FILE! ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_mt !TEST_PROJECT_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_mt %PLATFORMSW% !TEST_PROJECT_FILE! if ERRORLEVEL 1 exit /b 1 echo. && echo. && echo. ) ) ) if %RELEASE_STATIC_MT%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_mt !PROJECT_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_mt %PLATFORMSW% !PROJECT_FILE! if ERRORLEVEL 1 exit /b 1 echo. && echo. && echo. if %TESTS%==tests ( if exist !TEST_PROJECT_FILE! ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_mt !TEST_PROJECT_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_mt %PLATFORMSW% !TEST_PROJECT_FILE! if ERRORLEVEL 1 exit /b 1 echo. && echo. && echo. ) ) ) if %DEBUG_STATIC_MD%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_md !PROJECT_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_md %PLATFORMSW% !PROJECT_FILE! if ERRORLEVEL 1 exit /b 1 echo. && echo. && echo. if %TESTS%==tests ( if exist !TEST_PROJECT_FILE! ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_md !TEST_PROJECT_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_md %PLATFORMSW% !TEST_PROJECT_FILE! if ERRORLEVEL 1 exit /b 1 echo. && echo. && echo. ) ) ) if %RELEASE_STATIC_MD%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_md !PROJECT_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_md %PLATFORMSW% !PROJECT_FILE! if ERRORLEVEL 1 exit /b 1 echo. && echo. && echo. if %TESTS%==tests ( if exist !TEST_PROJECT_FILE! ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_md !TEST_PROJECT_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_md %PLATFORMSW% !TEST_PROJECT_FILE! if ERRORLEVEL 1 exit /b 1 echo. && echo. && echo. ) @@ -435,32 +447,32 @@ for /f %%G in ('findstr /R "." components') do ( set SOLUTION_FILE=samples%PLATFORM_SUFFIX%_%VS_VERSION%.sln if %DEBUG_SHARED%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_shared !SOLUTION_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_shared %PLATFORMSW% !SOLUTION_FILE! if ERRORLEVEL 1 goto buildfailed echo. && echo. && echo. ) if %RELEASE_SHARED%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_shared !SOLUTION_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_shared %PLATFORMSW% !SOLUTION_FILE! if ERRORLEVEL 1 goto buildfailed echo. && echo. && echo. ) if %DEBUG_STATIC_MT%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_mt !SOLUTION_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_mt %PLATFORMSW% !SOLUTION_FILE! if ERRORLEVEL 1 goto buildfailed echo. && echo. && echo. ) if %RELEASE_STATIC_MT%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_mt !SOLUTION_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_mt %PLATFORMSW% !SOLUTION_FILE! if ERRORLEVEL 1 goto buildfailed echo. && echo. && echo. ) if %DEBUG_STATIC_MD%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_md !SOLUTION_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_md %PLATFORMSW% !SOLUTION_FILE! if ERRORLEVEL 1 goto buildfailed echo. && echo. && echo. ) if %RELEASE_STATIC_MD%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_md !SOLUTION_FILE! + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_md %PLATFORMSW% !SOLUTION_FILE! if ERRORLEVEL 1 goto buildfailed echo. && echo. && echo. ) @@ -510,7 +522,7 @@ echo VS_VERSION: "71|80|90|100|110|120" echo ACTION: "build|rebuild|clean" echo LINKMODE: "static_mt|static_md|shared|all" echo CONFIGURATION: "release|debug|both" -echo PLATFORM: "Win32|x64|WinCE" +echo PLATFORM: "Win32|x64|WinCE|WEC2013" echo SAMPLES: "samples|nosamples" echo TESTS: "tests|notests" echo TOOL: "devenv|vcexpress|wdexpress|msbuild" From 7de3349b57bfebb7bf7bf330064dfae2d1b98bf6 Mon Sep 17 00:00:00 2001 From: Teemu Kemppainen Date: Thu, 3 Apr 2014 16:36:29 +0300 Subject: [PATCH 05/52] Changed #include to #include Including linux/if.h instead of net/if.h causes conflicts with applications that use net/if.h. --- Net/include/Poco/Net/SocketDefs.h | 13 +++---------- Net/src/NetworkInterface.cpp | 2 +- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/Net/include/Poco/Net/SocketDefs.h b/Net/include/Poco/Net/SocketDefs.h index ab3f6daa3..8d963ae77 100644 --- a/Net/include/Poco/Net/SocketDefs.h +++ b/Net/include/Poco/Net/SocketDefs.h @@ -169,16 +169,9 @@ #include #if defined(POCO_OS_FAMILY_UNIX) #if (POCO_OS == POCO_OS_LINUX) - // is needed by NetworkInterface for ifmap, ifreq and ifconf definitions - #include - // if_nametoindex and if_indextoname are needed by IPAddress and NetworkInterface - // we can't get them from because of a conflict with , so - // we declare them here - extern "C" - { - extern unsigned int if_nametoindex (__const char *__ifname) __THROW; - extern char *if_indextoname (unsigned int __ifindex, char *__ifname) __THROW; - } + // Net/src/NetworkInterface.cpp changed #include to #include + // no more conflict, can use #include here + #include #elif (POCO_OS == POCO_OS_HPUX) extern "C" { diff --git a/Net/src/NetworkInterface.cpp b/Net/src/NetworkInterface.cpp index c84e2d6df..daa4d4809 100644 --- a/Net/src/NetworkInterface.cpp +++ b/Net/src/NetworkInterface.cpp @@ -1369,7 +1369,7 @@ NetworkInterface::Map NetworkInterface::map(bool ipOnly, bool upOnly) #ifndef POCO_ANDROID // Android doesn't have #include #endif -#include +#include #include #include #include From 008ef308e7c979b5598963deaf0fdac676d65261 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Fri, 4 Apr 2014 00:12:10 +0200 Subject: [PATCH 06/52] HTMLForm: in URL encoding, percent-encode more characters --- Net/src/HTMLForm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Net/src/HTMLForm.cpp b/Net/src/HTMLForm.cpp index 7b5d19d1c..00e0a24a1 100644 --- a/Net/src/HTMLForm.cpp +++ b/Net/src/HTMLForm.cpp @@ -348,9 +348,9 @@ void HTMLForm::writeUrl(std::ostream& ostr) { if (it != begin()) ostr << "&"; std::string name; - URI::encode(it->first, "=&+;", name); + URI::encode(it->first, "!?#/'\",;:$&()[]*+=@", name); std::string value; - URI::encode(it->second, "=&+;", value); + URI::encode(it->second, "!?#/'\",;:$&()[]*+=@", value); ostr << name << "=" << value; } } From 52d4d814c88cf139058516ce97fff9005a5ff542 Mon Sep 17 00:00:00 2001 From: Paul Freund Date: Sat, 5 Apr 2014 19:26:31 +0200 Subject: [PATCH 07/52] Fixed build script for VS2013 --- buildwin.cmd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/buildwin.cmd b/buildwin.cmd index d0ed8309f..0a556ff56 100644 --- a/buildwin.cmd +++ b/buildwin.cmd @@ -179,7 +179,8 @@ exit /b 1 ) set PLATFORMSW=/p:Platform=%WEC2013_PLATFORM%) set USEENV= -set EXTRASW=/m /p:VisualStudioVersion=11.0 +if %VS_VERSION%==vs110 (set EXTRASW=/m /p:VisualStudioVersion=11.0) +if %VS_VERSION%==vs120 (set EXTRASW=/m /p:VisualStudioVersion=12.0) ) rem SAMPLES [samples|nosamples] From 436737171dd12f6f62713819fd80352101c9f198 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Wed, 9 Apr 2014 16:36:14 +0200 Subject: [PATCH 08/52] Poco::Net::X509Certificate::verify() no longer uses DNS reverse lookups to validate host names --- .../include/Poco/Net/X509Certificate.h | 2 +- NetSSL_OpenSSL/src/X509Certificate.cpp | 45 +++++-------------- 2 files changed, 11 insertions(+), 36 deletions(-) diff --git a/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h b/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h index 6369513bd..cc3d71110 100644 --- a/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h +++ b/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h @@ -108,7 +108,7 @@ public: protected: static bool containsWildcards(const std::string& commonName); - static bool matchByAlias(const std::string& alias, const std::string& hostName); + static bool matchWildcard(const std::string& alias, const std::string& hostName); private: enum diff --git a/NetSSL_OpenSSL/src/X509Certificate.cpp b/NetSSL_OpenSSL/src/X509Certificate.cpp index fcc28dd7d..8f6cd476d 100644 --- a/NetSSL_OpenSSL/src/X509Certificate.cpp +++ b/NetSSL_OpenSSL/src/X509Certificate.cpp @@ -120,7 +120,7 @@ bool X509Certificate::verify(const Poco::Crypto::X509Certificate& certificate, c { // a compare by IPAddress is not possible with wildcards // only allow compare by name - ok = matchByAlias(*it, hostName); + ok = matchWildcard(*it, hostName); } else { @@ -138,11 +138,6 @@ bool X509Certificate::verify(const Poco::Crypto::X509Certificate& certificate, c ok = (*it == ip); } } - else - { - // compare by name - ok = matchByAlias(*it, hostName); - } } } catch (HostNotFoundException&) @@ -160,37 +155,17 @@ bool X509Certificate::containsWildcards(const std::string& commonName) } -bool X509Certificate::matchByAlias(const std::string& alias, const std::string& hostName) +bool X509Certificate::matchWildcard(const std::string& wildcard, const std::string& hostName) { - const HostEntry& heData = DNS::resolve(hostName); // fix wildcards - std::string aliasRep = Poco::replace(alias, ".", "\\."); - Poco::replaceInPlace(aliasRep, "*", ".*"); - Poco::replaceInPlace(aliasRep, "..*", ".*"); - Poco::replaceInPlace(aliasRep, "?", ".?"); - Poco::replaceInPlace(aliasRep, "..?", ".?"); - // compare by name - Poco::RegularExpression expr(aliasRep); - bool found = false; - const HostEntry::AliasList& aliases = heData.aliases(); - HostEntry::AliasList::const_iterator it = aliases.begin(); - HostEntry::AliasList::const_iterator itEnd = aliases.end(); - for (; it != itEnd && !found; ++it) - { - found = expr.match(*it); - } - // Handle the case where the list of aliases is empty. - if (!found) - { - // Compare the resolved host name against the wildcard host name in the certificate. - found = expr.match(heData.name()); - } - if (!found) - { - // Compare the original host name against the wildcard host name in the certificate. - found = expr.match(hostName); - } - return found; + std::string wildcardExpr = Poco::replace(wildcard, ".", "\\."); + Poco::replaceInPlace(wildcardExpr, "*", ".*"); + Poco::replaceInPlace(wildcardExpr, "..*", ".*"); + Poco::replaceInPlace(wildcardExpr, "?", ".?"); + Poco::replaceInPlace(wildcardExpr, "..?", ".?"); + + Poco::RegularExpression expr(wildcardExpr); + return expr.match(hostName); } From f764673c617c45eb0f10b44546ce3daddfedb1d0 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Wed, 9 Apr 2014 17:05:54 +0200 Subject: [PATCH 09/52] cert hostname validation is case insensitive and stricter for wildcard certificates --- NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h | 2 +- NetSSL_OpenSSL/src/X509Certificate.cpp | 12 +++++++++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h b/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h index cc3d71110..cf93eb786 100644 --- a/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h +++ b/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h @@ -1,7 +1,7 @@ // // X509Certificate.h // -// $Id: //poco/1.4/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h#2 $ +// $Id: //poco/1.4/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h#3 $ // // Library: NetSSL_OpenSSL // Package: SSLCore diff --git a/NetSSL_OpenSSL/src/X509Certificate.cpp b/NetSSL_OpenSSL/src/X509Certificate.cpp index 8f6cd476d..f52018e59 100644 --- a/NetSSL_OpenSSL/src/X509Certificate.cpp +++ b/NetSSL_OpenSSL/src/X509Certificate.cpp @@ -1,7 +1,7 @@ // // X509Certificate.cpp // -// $Id: //poco/1.4/NetSSL_OpenSSL/src/X509Certificate.cpp#3 $ +// $Id: //poco/1.4/NetSSL_OpenSSL/src/X509Certificate.cpp#4 $ // // Library: NetSSL_OpenSSL // Package: SSLCore @@ -138,6 +138,10 @@ bool X509Certificate::verify(const Poco::Crypto::X509Certificate& certificate, c ok = (*it == ip); } } + else + { + ok = Poco::icompare(*it, hostName) == 0; + } } } catch (HostNotFoundException&) @@ -158,13 +162,15 @@ bool X509Certificate::containsWildcards(const std::string& commonName) bool X509Certificate::matchWildcard(const std::string& wildcard, const std::string& hostName) { // fix wildcards - std::string wildcardExpr = Poco::replace(wildcard, ".", "\\."); + std::string wildcardExpr("^"); + wildcardExpr += Poco::replace(wildcard, ".", "\\."); Poco::replaceInPlace(wildcardExpr, "*", ".*"); Poco::replaceInPlace(wildcardExpr, "..*", ".*"); Poco::replaceInPlace(wildcardExpr, "?", ".?"); Poco::replaceInPlace(wildcardExpr, "..?", ".?"); + wildcardExpr += "$"; - Poco::RegularExpression expr(wildcardExpr); + Poco::RegularExpression expr(wildcardExpr, Poco::RegularExpression::RE_CASELESS); return expr.match(hostName); } From fe6bf63656645b49983beea9ce4bec47d0c89f86 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Wed, 9 Apr 2014 18:12:46 +0200 Subject: [PATCH 10/52] TCPServer: do not reduce the capacity of the default ThreadPool --- Net/src/TCPServer.cpp | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/Net/src/TCPServer.cpp b/Net/src/TCPServer.cpp index 294bea320..b77632c3c 100644 --- a/Net/src/TCPServer.cpp +++ b/Net/src/TCPServer.cpp @@ -54,10 +54,13 @@ TCPServer::TCPServer(TCPServerConnectionFactory::Ptr pFactory, Poco::UInt16 port _socket(ServerSocket(portNumber)), _thread(threadName(_socket)), _stopped(true) -{ - +{ Poco::ThreadPool& pool = Poco::ThreadPool::defaultPool(); - if(pParams) pool.addCapacity(pParams->getMaxThreads() - pool.capacity()); + if (pParams) + { + int toAdd = pParams->getMaxThreads() - pool.capacity(); + if (toAdd > 0) pool.addCapacity(toAdd); + } _pDispatcher = new TCPServerDispatcher(pFactory, pool, pParams); } @@ -69,7 +72,11 @@ TCPServer::TCPServer(TCPServerConnectionFactory::Ptr pFactory, const ServerSocke _stopped(true) { Poco::ThreadPool& pool = Poco::ThreadPool::defaultPool(); - if(pParams) pool.addCapacity(pParams->getMaxThreads() - pool.capacity()); + if (pParams) + { + int toAdd = pParams->getMaxThreads() - pool.capacity(); + if (toAdd > 0) pool.addCapacity(toAdd); + } _pDispatcher = new TCPServerDispatcher(pFactory, pool, pParams); } From e98ad3740190fe907f07b6b3b8b55f19cbf8da19 Mon Sep 17 00:00:00 2001 From: Pascal Bach Date: Fri, 11 Apr 2014 13:54:02 +0200 Subject: [PATCH 11/52] Add a POCO_LOG_DEBUG flag If the POCO_LOG_DEBUG is defined the poco_trace* and the poco_debug* produce logs even if the _DEBUG flag is not set. This makes the macros usable for applications that need to enable higher log levels later at run time. --- Foundation/include/Poco/Config.h | 4 ++++ Foundation/include/Poco/Logger.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Foundation/include/Poco/Config.h b/Foundation/include/Poco/Config.h index fceecc668..19efc6263 100644 --- a/Foundation/include/Poco/Config.h +++ b/Foundation/include/Poco/Config.h @@ -181,5 +181,9 @@ #define POCO_NO_LOCALE #endif +// Enable the poco_debug_* and poco_trace_* macros +// even if the _DEBUG variable is not set. +// This allows the use of these macros in a release version. +// #define POCO_LOG_DEBUG #endif // Foundation_Config_INCLUDED diff --git a/Foundation/include/Poco/Logger.h b/Foundation/include/Poco/Logger.h index 72f6d580b..cf57b026b 100644 --- a/Foundation/include/Poco/Logger.h +++ b/Foundation/include/Poco/Logger.h @@ -595,7 +595,7 @@ private: #define poco_information_f4(logger, fmt, arg1, arg2, arg3, arg4) \ if ((logger).information()) (logger).information(Poco::format((fmt), (arg1), (arg2), (arg3), (arg4)), __FILE__, __LINE__); else (void) 0 -#if defined(_DEBUG) +#if defined(_DEBUG) || defined(POCO_LOG_DEBUG) #define poco_debug(logger, msg) \ if ((logger).debug()) (logger).debug(msg, __FILE__, __LINE__); else (void) 0 From fbbfc507e21c1b7c938e5a4d279a8d2955b54976 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Mon, 14 Apr 2014 17:50:46 +0200 Subject: [PATCH 12/52] fixed thread priority issues on POSIX platforms with non-standard scheduling policy --- Foundation/src/Thread_POSIX.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Foundation/src/Thread_POSIX.cpp b/Foundation/src/Thread_POSIX.cpp index 5b91c2071..4f96b5d3a 100644 --- a/Foundation/src/Thread_POSIX.cpp +++ b/Foundation/src/Thread_POSIX.cpp @@ -121,6 +121,7 @@ void ThreadImpl::setPriorityImpl(int prio) if (prio != _pData->prio) { _pData->prio = prio; + _pData->policy = SCHED_OTHER; if (isRunningImpl()) { struct sched_param par; @@ -132,7 +133,7 @@ void ThreadImpl::setPriorityImpl(int prio) } -void ThreadImpl::setOSPriorityImpl(int prio, int policy ) +void ThreadImpl::setOSPriorityImpl(int prio, int policy) { if (prio != _pData->osPrio || policy != _pData->policy) { @@ -236,7 +237,7 @@ void ThreadImpl::startImpl(Runnable& target) else { struct sched_param par; - par.sched_priority = mapPrio(_pData->prio, _pData->policy); + par.sched_priority = _pData->osPrio; if (pthread_setschedparam(_pData->thread, _pData->policy, &par)) throw SystemException("cannot set thread priority"); } From 3c9bc10042321cdb47be08190d9e9253be008a83 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Fri, 18 Apr 2014 12:57:44 +0200 Subject: [PATCH 13/52] Zip: fixed a crash caused by an I/O error (e.g., full disk) while creating a Zip archive --- Zip/src/ZipStream.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Zip/src/ZipStream.cpp b/Zip/src/ZipStream.cpp index 29310e76c..5d2adb9c8 100644 --- a/Zip/src/ZipStream.cpp +++ b/Zip/src/ZipStream.cpp @@ -1,7 +1,7 @@ // // ZipStream.cpp // -// $Id: //poco/1.4/Zip/src/ZipStream.cpp#3 $ +// $Id: //poco/1.4/Zip/src/ZipStream.cpp#4 $ // // Library: Zip // Package: Zip @@ -163,6 +163,11 @@ ZipStreamBuf::ZipStreamBuf(std::ostream& ostr, ZipLocalFileHeader& fileEntry, bo ZipStreamBuf::~ZipStreamBuf() { + // make sure destruction of streams happens in correct order + _ptrOBuf = 0; + _ptrOHelper = 0; + _ptrBuf = 0; + _ptrHelper = 0; } From 7df5583f5715b1d2a1fd5a7fe6aac8b35a1f02f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Fri, 18 Apr 2014 20:50:03 +0200 Subject: [PATCH 14/52] fixed GH #376: Defect: checking null value when using the same statement multiple times. --- Data/include/Poco/Data/Extraction.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Data/include/Poco/Data/Extraction.h b/Data/include/Poco/Data/Extraction.h index 476e8d7d4..985d3bd47 100644 --- a/Data/include/Poco/Data/Extraction.h +++ b/Data/include/Poco/Data/Extraction.h @@ -220,6 +220,11 @@ public: return new Preparation(pPrep, pos, _default); } + void reset() + { + _nulls.clear(); + } + protected: const std::vector& result() const @@ -306,6 +311,11 @@ public: return new Preparation(pPrep, pos, _default); } + void reset() + { + _nulls.clear(); + } + protected: const std::vector& result() const @@ -390,6 +400,11 @@ public: return new Preparation(pPrep, pos, _default); } + void reset() + { + _nulls.clear(); + } + protected: const std::list& result() const @@ -474,6 +489,11 @@ public: return new Preparation(pPrep, pos, _default); } + void reset() + { + _nulls.clear(); + } + protected: const std::deque& result() const @@ -522,6 +542,7 @@ public: void reset() { + Extraction::reset(); _pColumn->reset(); } From 8d14b92b658e6ee19ca922f402dff9f7005b1195 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Fri, 18 Apr 2014 21:09:13 +0200 Subject: [PATCH 15/52] source code cosmetics --- Data/include/Poco/Data/Extraction.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Data/include/Poco/Data/Extraction.h b/Data/include/Poco/Data/Extraction.h index 985d3bd47..90b4ad32a 100644 --- a/Data/include/Poco/Data/Extraction.h +++ b/Data/include/Poco/Data/Extraction.h @@ -200,7 +200,8 @@ public: try { return _nulls.at(row); - }catch (std::out_of_range& ex) + } + catch (std::out_of_range& ex) { throw RangeException(ex.what()); } @@ -289,7 +290,8 @@ public: try { return _nulls.at(row); - }catch (std::out_of_range& ex) + } + catch (std::out_of_range& ex) { throw RangeException(ex.what()); } @@ -380,7 +382,8 @@ public: try { return _nulls.at(row); - }catch (std::out_of_range& ex) + } + catch (std::out_of_range& ex) { throw RangeException(ex.what()); } @@ -469,7 +472,8 @@ public: try { return _nulls.at(row); - }catch (std::out_of_range& ex) + } + catch (std::out_of_range& ex) { throw RangeException(ex.what()); } From 835845422c0665f0b6c1810e6e8bc467189d3f16 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Fri, 18 Apr 2014 21:27:46 +0200 Subject: [PATCH 16/52] minor performance improvement, better workaround for clang issue with handle property --- Data/SQLite/include/Poco/Data/SQLite/Utility.h | 5 +---- Data/SQLite/src/Extractor.cpp | 2 +- Data/SQLite/src/SessionImpl.cpp | 2 +- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/Data/SQLite/include/Poco/Data/SQLite/Utility.h b/Data/SQLite/include/Poco/Data/SQLite/Utility.h index a274c8c67..1ee7a7524 100644 --- a/Data/SQLite/include/Poco/Data/SQLite/Utility.h +++ b/Data/SQLite/include/Poco/Data/SQLite/Utility.h @@ -223,10 +223,7 @@ private: inline sqlite3* Utility::dbHandle(const Session& session) { -#ifdef POCO_COMPILER_CLANG - sqlite3* p = 0; Any a = p; // ??? clang fails to AnyCast without these ??? -#endif - return AnyCast(session.getProperty("handle")); + return reinterpret_cast(AnyCast(session.getProperty("handle"))); } diff --git a/Data/SQLite/src/Extractor.cpp b/Data/SQLite/src/Extractor.cpp index e1cd19bf7..2023a1d9d 100644 --- a/Data/SQLite/src/Extractor.cpp +++ b/Data/SQLite/src/Extractor.cpp @@ -118,7 +118,7 @@ bool Extractor::extract(std::size_t pos, std::string& val) if (!pBuf) val.clear(); else - val = std::string(pBuf); + val.assign(pBuf); return true; } diff --git a/Data/SQLite/src/SessionImpl.cpp b/Data/SQLite/src/SessionImpl.cpp index ccc40e46d..ef5ec456f 100644 --- a/Data/SQLite/src/SessionImpl.cpp +++ b/Data/SQLite/src/SessionImpl.cpp @@ -67,7 +67,7 @@ SessionImpl::SessionImpl(const std::string& fileName, std::size_t loginTimeout): { open(); setConnectionTimeout(CONNECTION_TIMEOUT_DEFAULT); - setProperty("handle", _pDB); + setProperty("handle", static_cast(_pDB)); addFeature("autoCommit", &SessionImpl::autoCommit, &SessionImpl::isAutoCommit); From 0a54661bb0b85fe5bc4c419ef4c3ca0c46bbd2dd Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Fri, 18 Apr 2014 21:32:30 -0500 Subject: [PATCH 17/52] - added optional SQLite Full Text Search support - Powershell build fixes: 1) Add platform for MSbuild 2) fixed omit array handling --- Data/SQLite/SQLite_vs120.vcxproj | 1 + Data/SQLite/include/Poco/Data/SQLite/Config.h | 69 +++++++++++++++++++ Data/SQLite/include/Poco/Data/SQLite/SQLite.h | 13 +--- Data/SQLite/src/sqlite3.c | 1 + Data/SQLite/testsuite/src/SQLiteTest.cpp | 48 +++++++++++++ Data/SQLite/testsuite/src/SQLiteTest.h | 2 + Foundation/include/Poco/Config.h | 4 ++ buildwin.ps1 | 20 +++--- configure | 7 ++ 9 files changed, 142 insertions(+), 23 deletions(-) create mode 100644 Data/SQLite/include/Poco/Data/SQLite/Config.h diff --git a/Data/SQLite/SQLite_vs120.vcxproj b/Data/SQLite/SQLite_vs120.vcxproj index 960a64177..04b61fc64 100644 --- a/Data/SQLite/SQLite_vs120.vcxproj +++ b/Data/SQLite/SQLite_vs120.vcxproj @@ -274,6 +274,7 @@ + diff --git a/Data/SQLite/include/Poco/Data/SQLite/Config.h b/Data/SQLite/include/Poco/Data/SQLite/Config.h new file mode 100644 index 000000000..26ca40636 --- /dev/null +++ b/Data/SQLite/include/Poco/Data/SQLite/Config.h @@ -0,0 +1,69 @@ +// +// Config.h +// +// $Id: //poco/Main/Data/SQLite/include/Poco/Data/SQLite/Config.h#3 $ +// +// Library: SQLite +// Package: SQLite +// Module: SQLite +// +// Basic configuration definitions for the underlying SQLite library. +// In order for configuration definitions to take effect, this file must +// be included from sqlite3.c file. +// +// Copyright (c) 2006, Applied Informatics Software Engineering GmbH. +// and Contributors. +// +// Permission is hereby granted, free of charge, to any person or organization +// obtaining a copy of the software and accompanying documentation covered by +// this license (the "Software") to use, reproduce, display, distribute, +// execute, and transmit the Software, and to prepare derivative works of the +// Software, and to permit third-parties to whom the Software is furnished to +// do so, all subject to the following: +// +// The copyright notices in the Software and this entire statement, including +// the above license grant, this restriction and the following disclaimer, +// must be included in all copies of the Software, in whole or in part, and +// all derivative works of the Software, unless such copies or derivative +// works are solely in the form of machine-executable object code generated by +// a source language processor. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +// DEALINGS IN THE SOFTWARE. +// + + +#ifndef SQLite_Config_INCLUDED +#define SQLite_Config_INCLUDED + + +#include "Poco/Config.h" + + +// +// Thread safety mode defaults to "serialized". +// See http://www.sqlite.org/threadsafe.html for details. +// Threading mode may significantly affect performance +// (see TestSuite::benchmarkThreadModesTiming) +// +#ifndef SQLITE_THREADSAFE + #define SQLITE_THREADSAFE 1 +#endif // SQLITE_THREADSAFE + + +#ifdef POCO_DATA_SQLITE_FTS + #ifndef SQLITE_ENABLE_FTS3 + #define SQLITE_ENABLE_FTS3 + #endif + #ifndef SQLITE_ENABLE_FTS3_PARENTHESIS + #define SQLITE_ENABLE_FTS3_PARENTHESIS + #endif +#endif // POCO_DATA_SQLITE_FTS + + +#endif // SQLite_SQLite_INCLUDED diff --git a/Data/SQLite/include/Poco/Data/SQLite/SQLite.h b/Data/SQLite/include/Poco/Data/SQLite/SQLite.h index 15ea80b9b..cc8ad624a 100644 --- a/Data/SQLite/include/Poco/Data/SQLite/SQLite.h +++ b/Data/SQLite/include/Poco/Data/SQLite/SQLite.h @@ -4,7 +4,7 @@ // $Id: //poco/Main/Data/SQLite/include/Poco/Data/SQLite/SQLite.h#3 $ // // Library: SQLite -// Package: SQLIte +// Package: SQLite // Module: SQLite // // Basic definitions for the Poco SQLite library. @@ -81,15 +81,4 @@ #endif -// -// Thread safety mode defaults to "serialized". -// See http://www.sqlite.org/threadsafe.html for details. -// Threading mode may significantly affect performance -// (see TestSuite::benchmarkThreadModesTiming) -// -#ifndef SQLITE_THREADSAFE - #define SQLITE_THREADSAFE 1 -#endif - - #endif // SQLite_SQLite_INCLUDED diff --git a/Data/SQLite/src/sqlite3.c b/Data/SQLite/src/sqlite3.c index 7c6d3e280..61a33e2b5 100644 --- a/Data/SQLite/src/sqlite3.c +++ b/Data/SQLite/src/sqlite3.c @@ -1,3 +1,4 @@ +#include "Poco/Data/SQLite/Config.h" /****************************************************************************** ** This file is an amalgamation of many separate C source files from SQLite ** version 3.8.4.1. By combining all the individual C code files into this diff --git a/Data/SQLite/testsuite/src/SQLiteTest.cpp b/Data/SQLite/testsuite/src/SQLiteTest.cpp index 498fca1d9..1d392906b 100644 --- a/Data/SQLite/testsuite/src/SQLiteTest.cpp +++ b/Data/SQLite/testsuite/src/SQLiteTest.cpp @@ -3287,6 +3287,53 @@ void SQLiteTest::testTransactor() } +#ifdef POCO_DATA_SQLITE_FTS + + +void SQLiteTest::testFTS3() +{ + Session session(Poco::Data::SQLite::Connector::KEY, "dummy.db"); + assert(session.isConnected()); + + session << "DROP TABLE IF EXISTS docs", now; + session << "CREATE VIRTUAL TABLE docs USING fts3()", now; + + session << "INSERT INTO docs(docid, content) VALUES(1, 'a database is a software system')", now; + session << "INSERT INTO docs(docid, content) VALUES(2, 'sqlite is a software system')", now; + session << "INSERT INTO docs(docid, content) VALUES(3, 'sqlite is a database')", now; + + int docid = 0; + session << "SELECT docid FROM docs WHERE docs MATCH 'sqlite AND database'", into(docid), now; + assert(docid == 3); + + docid = 0; + session << "SELECT docid FROM docs WHERE docs MATCH 'database sqlite'", into(docid), now; + assert(docid == 3); + + std::vector docids; + session << "SELECT docid FROM docs WHERE docs MATCH 'sqlite OR database' ORDER BY docid", + into(docids), now; + assert(docids.size() == 3); + assert(docids[0] == 1); + assert(docids[1] == 2); + assert(docids[2] == 3); + + std::string content; + docid = 0; + session << "SELECT docid, content FROM docs WHERE docs MATCH 'database NOT sqlite'", + into(docid), into(content), now; + assert(docid == 1); + assert(content == "a database is a software system"); + + docid = 0; + session << "SELECT count(*) FROM docs WHERE docs MATCH 'database and sqlite'", into(docid), now; + assert(docid == 0); +} + + +#endif // POCO_DATA_SQLITE_FTS + + void SQLiteTest::setUp() { } @@ -3385,6 +3432,7 @@ CppUnit::Test* SQLiteTest::suite() CppUnit_addTest(pSuite, SQLiteTest, testSessionTransaction); CppUnit_addTest(pSuite, SQLiteTest, testTransaction); CppUnit_addTest(pSuite, SQLiteTest, testTransactor); + CppUnit_addTest(pSuite, SQLiteTest, testFTS3); return pSuite; } diff --git a/Data/SQLite/testsuite/src/SQLiteTest.h b/Data/SQLite/testsuite/src/SQLiteTest.h index bac29ea2e..ecbd3f830 100644 --- a/Data/SQLite/testsuite/src/SQLiteTest.h +++ b/Data/SQLite/testsuite/src/SQLiteTest.h @@ -152,6 +152,8 @@ public: void testTransaction(); void testTransactor(); + void testFTS3(); + void setUp(); void tearDown(); diff --git a/Foundation/include/Poco/Config.h b/Foundation/include/Poco/Config.h index 19efc6263..adc6dd0a7 100644 --- a/Foundation/include/Poco/Config.h +++ b/Foundation/include/Poco/Config.h @@ -176,6 +176,10 @@ // #define POCO_NET_NO_IPv6 +// Enable SQLite Full Text Search +#define POCO_DATA_SQLITE_FTS + + // Windows CE has no locale support #if defined(_WIN32_WCE) #define POCO_NO_LOCALE diff --git a/buildwin.ps1 b/buildwin.ps1 index adfb87157..c1c4f5cc4 100644 --- a/buildwin.ps1 +++ b/buildwin.ps1 @@ -60,9 +60,6 @@ Param ) -$omitArray = @() - - function Set-Environment { if ($poco_base -eq '') { $script:poco_base = Get-Location } @@ -172,10 +169,6 @@ function Process-Input if ($omit -ne '') { Write-Host "Omit: $omit" - - $omit.Split(',;') | ForEach { - $omitArray += "$_" - } } if ($openssl_base -ne '') @@ -208,14 +201,14 @@ function Build-MSBuild([string] $vsProject) { $projectConfig = "$cfg" $projectConfig += "_$mode" - Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig" + Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig /p:Platform=$platform" } } else #config { $projectConfig = "$config" $projectConfig += "_$mode" - Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig" + Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig /p:Platform=$platform" } } } @@ -228,14 +221,14 @@ function Build-MSBuild([string] $vsProject) { $projectConfig = "$cfg" $projectConfig += "_$mode" - Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig" + Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig /p:Platform=$platform" } } else #config { $projectConfig = "$config" $projectConfig += "_$linkmode" - Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig" + Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig /p:Platform=$platform" } } } @@ -322,6 +315,11 @@ function Build $componentArr = $_.split('/') $componentName = $componentArr[$componentArr.Length - 1] $suffix = "_vs$vs_version" + + $omitArray = @() + $omit.Split(',;') | ForEach { + $omitArray += "$_" + } if ($omitArray -NotContains $component) { diff --git a/configure b/configure index 6b663470c..a3309d7ae 100755 --- a/configure +++ b/configure @@ -63,6 +63,10 @@ Options: Compile with -DPOCO_NET_NO_IPv6. For systems that don't support IPv6. + --sqlite-fts= + Compile with -DPOCO_DATA_SQLITE_FTS. + Compile SQLite with Full Text Search support. + --omit={,} Do not build the specified component(s). Example: --omit=Data/MySQL,Data/ODBC,Zip @@ -173,6 +177,9 @@ while [ $# -ge 1 ]; do --no-ipv6) flags="$flags -DPOCO_NET_NO_IPv6" ;; + --sqlite-fts) + flags="$flags -DPOCO_DATA_SQLITE_FTS" ;; + --poquito) flags="$flags -DPOCO_NO_FILECHANNEL -DPOCO_NO_SPLITTERCHANNEL -DPOCO_NO_SYSLOGCHANNEL -DPOCO_UTIL_NO_INIFILECONFIGURATION -DPOCO_UTIL_NO_JSONCONFIGURATION -DPOCO_UTIL_NO_XMLCONFIGURATION" ;; From dc1738ada7b22884afd38df57fccfd3331151563 Mon Sep 17 00:00:00 2001 From: Aleksandar Fabijanic Date: Sat, 19 Apr 2014 10:25:07 -0500 Subject: [PATCH 18/52] CMAKE - generate pocomsg.h in src Merge https://github.com/guruofquality/poco/commit/922ca412848bc8b5fd05cd6903779eac4e7463a7 fix pocomsg.h generation so the target stops rebuilding The output directory specified by -h should match the RES_SRCS directory. Changed the RES_SRCS to specify the srcs directory. --- Foundation/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/CMakeLists.txt b/Foundation/CMakeLists.txt index 672db75c4..d858c0c38 100644 --- a/Foundation/CMakeLists.txt +++ b/Foundation/CMakeLists.txt @@ -206,7 +206,7 @@ set(WIN_SRCS ) if (WIN32) - set(RES_SRCS ${CMAKE_SOURCE_DIR}/Foundation/include/Poco/pocomsg.h) + set(RES_SRCS ${CMAKE_SOURCE_DIR}/Foundation/src/pocomsg.h) set_source_files_properties(${RES_SRCS} PROPERTIES GENERATED true) add_custom_command( OUTPUT ${RES_SRCS} From 0df269312c3f11128ae98f0732c767e4db56c80c Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Sat, 19 Apr 2014 19:10:00 +0200 Subject: [PATCH 19/52] fixed buildwin.cmd script --- buildwin.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildwin.cmd b/buildwin.cmd index 0a556ff56..5b0bc5c05 100644 --- a/buildwin.cmd +++ b/buildwin.cmd @@ -177,7 +177,7 @@ if "%WEC2013_PLATFORM%"=="" ( echo WEC2013_PLATFORM not set. Exiting. exit /b 1 ) -set PLATFORMSW=/p:Platform=%WEC2013_PLATFORM%) +set PLATFORMSW=/p:Platform=%WEC2013_PLATFORM% set USEENV= if %VS_VERSION%==vs110 (set EXTRASW=/m /p:VisualStudioVersion=11.0) if %VS_VERSION%==vs120 (set EXTRASW=/m /p:VisualStudioVersion=12.0) From 7ca90c7de1b013f0a1d5f18230eb4a7e308fa99a Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Sat, 19 Apr 2014 12:59:50 -0500 Subject: [PATCH 20/52] - make SQLite FTS default on non-embedded windows - add support for SQLite thread safety configuration on POSIX platforms - add WEC2013 support to windows Powersjhell build script --- Data/SQLite/SQLite.progen | 2 +- Data/SQLite/SQLite_VS71.vcproj | 12 ++-- Data/SQLite/SQLite_VS80.vcproj | 12 ++-- Data/SQLite/SQLite_VS90.vcproj | 12 ++-- Data/SQLite/SQLite_vs100.vcxproj | 12 ++-- Data/SQLite/SQLite_vs110.vcxproj | 12 ++-- Data/SQLite/SQLite_vs120.vcxproj | 13 ++-- Data/SQLite/SQLite_x64_vs100.vcxproj | 12 ++-- Data/SQLite/SQLite_x64_vs110.vcxproj | 12 ++-- Data/SQLite/SQLite_x64_vs120.vcxproj | 12 ++-- Data/SQLite/SQLite_x64_vs90.vcproj | 12 ++-- Data/SQLite/include/Poco/Data/SQLite/Config.h | 69 ------------------- Data/SQLite/src/sqlite3.c | 1 - buildwin.ps1 | 6 +- configure | 13 +++- 15 files changed, 76 insertions(+), 136 deletions(-) delete mode 100644 Data/SQLite/include/Poco/Data/SQLite/Config.h diff --git a/Data/SQLite/SQLite.progen b/Data/SQLite/SQLite.progen index 3da95c099..e7bc2d6c6 100644 --- a/Data/SQLite/SQLite.progen +++ b/Data/SQLite/SQLite.progen @@ -8,7 +8,7 @@ vc.project.platforms = Win32, x64, WinCE vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md vc.project.prototype = ${vc.project.name}_vs90.vcproj vc.project.compiler.include = ..\\..\\Foundation\\include;..\\..\\Data\\include -vc.project.compiler.defines = SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED +vc.project.compiler.defines = SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED vc.project.compiler.defines.shared = ${vc.project.name}_EXPORTS vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} diff --git a/Data/SQLite/SQLite_VS71.vcproj b/Data/SQLite/SQLite_VS71.vcproj index 6aacfa484..a97aedcea 100644 --- a/Data/SQLite/SQLite_VS71.vcproj +++ b/Data/SQLite/SQLite_VS71.vcproj @@ -21,7 +21,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" StringPooling="TRUE" MinimalRebuild="TRUE" BasicRuntimeChecks="3" @@ -87,7 +87,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="TRUE" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" StringPooling="TRUE" BasicRuntimeChecks="3" RuntimeLibrary="2" @@ -149,7 +149,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="TRUE" MinimalRebuild="TRUE" BasicRuntimeChecks="3" @@ -206,7 +206,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="TRUE" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="TRUE" BasicRuntimeChecks="3" RuntimeLibrary="0" @@ -258,7 +258,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="TRUE" MinimalRebuild="TRUE" BasicRuntimeChecks="3" @@ -315,7 +315,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="TRUE" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="TRUE" BasicRuntimeChecks="3" RuntimeLibrary="2" diff --git a/Data/SQLite/SQLite_VS80.vcproj b/Data/SQLite/SQLite_VS80.vcproj index c883275f6..60a7a99aa 100644 --- a/Data/SQLite/SQLite_VS80.vcproj +++ b/Data/SQLite/SQLite_VS80.vcproj @@ -32,7 +32,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -104,7 +104,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" StringPooling="true" RuntimeLibrary="2" BufferSecurityCheck="false" @@ -172,7 +172,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -232,7 +232,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="true" RuntimeLibrary="0" BufferSecurityCheck="false" @@ -285,7 +285,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -345,7 +345,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="true" RuntimeLibrary="2" BufferSecurityCheck="false" diff --git a/Data/SQLite/SQLite_VS90.vcproj b/Data/SQLite/SQLite_VS90.vcproj index a16f3d849..2dba5a4e5 100644 --- a/Data/SQLite/SQLite_VS90.vcproj +++ b/Data/SQLite/SQLite_VS90.vcproj @@ -32,7 +32,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -104,7 +104,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" StringPooling="true" RuntimeLibrary="2" BufferSecurityCheck="false" @@ -171,7 +171,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -231,7 +231,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="true" RuntimeLibrary="0" BufferSecurityCheck="false" @@ -284,7 +284,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -344,7 +344,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="true" RuntimeLibrary="2" BufferSecurityCheck="false" diff --git a/Data/SQLite/SQLite_vs100.vcxproj b/Data/SQLite/SQLite_vs100.vcxproj index 3a0ccc242..69182f512 100644 --- a/Data/SQLite/SQLite_vs100.vcxproj +++ b/Data/SQLite/SQLite_vs100.vcxproj @@ -105,7 +105,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) true true EnableFastChecks @@ -140,7 +140,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -170,7 +170,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true true EnableFastChecks @@ -198,7 +198,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true MultiThreaded false @@ -219,7 +219,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true true EnableFastChecks @@ -247,7 +247,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true MultiThreadedDLL false diff --git a/Data/SQLite/SQLite_vs110.vcxproj b/Data/SQLite/SQLite_vs110.vcxproj index aa2014271..2ef763616 100644 --- a/Data/SQLite/SQLite_vs110.vcxproj +++ b/Data/SQLite/SQLite_vs110.vcxproj @@ -111,7 +111,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) true true EnableFastChecks @@ -146,7 +146,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -176,7 +176,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true true EnableFastChecks @@ -204,7 +204,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true MultiThreaded false @@ -225,7 +225,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true true EnableFastChecks @@ -253,7 +253,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true MultiThreadedDLL false diff --git a/Data/SQLite/SQLite_vs120.vcxproj b/Data/SQLite/SQLite_vs120.vcxproj index 04b61fc64..e5b247bff 100644 --- a/Data/SQLite/SQLite_vs120.vcxproj +++ b/Data/SQLite/SQLite_vs120.vcxproj @@ -111,7 +111,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) true true EnableFastChecks @@ -146,7 +146,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -176,7 +176,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true true EnableFastChecks @@ -204,7 +204,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true MultiThreaded false @@ -225,7 +225,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true true EnableFastChecks @@ -253,7 +253,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -274,7 +274,6 @@ - diff --git a/Data/SQLite/SQLite_x64_vs100.vcxproj b/Data/SQLite/SQLite_x64_vs100.vcxproj index 0dd044a0c..5fe27e152 100644 --- a/Data/SQLite/SQLite_x64_vs100.vcxproj +++ b/Data/SQLite/SQLite_x64_vs100.vcxproj @@ -105,7 +105,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) true true EnableFastChecks @@ -140,7 +140,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -170,7 +170,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true true EnableFastChecks @@ -198,7 +198,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true MultiThreaded false @@ -219,7 +219,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true true EnableFastChecks @@ -247,7 +247,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true MultiThreadedDLL false diff --git a/Data/SQLite/SQLite_x64_vs110.vcxproj b/Data/SQLite/SQLite_x64_vs110.vcxproj index c8fc4ff89..975a11c39 100644 --- a/Data/SQLite/SQLite_x64_vs110.vcxproj +++ b/Data/SQLite/SQLite_x64_vs110.vcxproj @@ -111,7 +111,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) true true EnableFastChecks @@ -146,7 +146,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -176,7 +176,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true true EnableFastChecks @@ -204,7 +204,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true MultiThreaded false @@ -225,7 +225,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true true EnableFastChecks @@ -253,7 +253,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true MultiThreadedDLL false diff --git a/Data/SQLite/SQLite_x64_vs120.vcxproj b/Data/SQLite/SQLite_x64_vs120.vcxproj index ccc0ff7be..b9664fcb9 100644 --- a/Data/SQLite/SQLite_x64_vs120.vcxproj +++ b/Data/SQLite/SQLite_x64_vs120.vcxproj @@ -111,7 +111,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) true true EnableFastChecks @@ -146,7 +146,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -176,7 +176,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true true EnableFastChecks @@ -204,7 +204,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true MultiThreaded false @@ -225,7 +225,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true true EnableFastChecks @@ -253,7 +253,7 @@ Speed true .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;%(PreprocessorDefinitions) true MultiThreadedDLL false diff --git a/Data/SQLite/SQLite_x64_vs90.vcproj b/Data/SQLite/SQLite_x64_vs90.vcproj index 371001ac9..c108fe2eb 100644 --- a/Data/SQLite/SQLite_x64_vs90.vcproj +++ b/Data/SQLite/SQLite_x64_vs90.vcproj @@ -32,7 +32,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -104,7 +104,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS" StringPooling="true" RuntimeLibrary="2" BufferSecurityCheck="false" @@ -172,7 +172,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -233,7 +233,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="true" RuntimeLibrary="0" BufferSecurityCheck="false" @@ -287,7 +287,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -348,7 +348,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories=".\include;..\..\Foundation\include;..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" + PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;POCO_STATIC;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED" StringPooling="true" RuntimeLibrary="2" BufferSecurityCheck="false" diff --git a/Data/SQLite/include/Poco/Data/SQLite/Config.h b/Data/SQLite/include/Poco/Data/SQLite/Config.h deleted file mode 100644 index 26ca40636..000000000 --- a/Data/SQLite/include/Poco/Data/SQLite/Config.h +++ /dev/null @@ -1,69 +0,0 @@ -// -// Config.h -// -// $Id: //poco/Main/Data/SQLite/include/Poco/Data/SQLite/Config.h#3 $ -// -// Library: SQLite -// Package: SQLite -// Module: SQLite -// -// Basic configuration definitions for the underlying SQLite library. -// In order for configuration definitions to take effect, this file must -// be included from sqlite3.c file. -// -// Copyright (c) 2006, Applied Informatics Software Engineering GmbH. -// and Contributors. -// -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. -// - - -#ifndef SQLite_Config_INCLUDED -#define SQLite_Config_INCLUDED - - -#include "Poco/Config.h" - - -// -// Thread safety mode defaults to "serialized". -// See http://www.sqlite.org/threadsafe.html for details. -// Threading mode may significantly affect performance -// (see TestSuite::benchmarkThreadModesTiming) -// -#ifndef SQLITE_THREADSAFE - #define SQLITE_THREADSAFE 1 -#endif // SQLITE_THREADSAFE - - -#ifdef POCO_DATA_SQLITE_FTS - #ifndef SQLITE_ENABLE_FTS3 - #define SQLITE_ENABLE_FTS3 - #endif - #ifndef SQLITE_ENABLE_FTS3_PARENTHESIS - #define SQLITE_ENABLE_FTS3_PARENTHESIS - #endif -#endif // POCO_DATA_SQLITE_FTS - - -#endif // SQLite_SQLite_INCLUDED diff --git a/Data/SQLite/src/sqlite3.c b/Data/SQLite/src/sqlite3.c index 61a33e2b5..7c6d3e280 100644 --- a/Data/SQLite/src/sqlite3.c +++ b/Data/SQLite/src/sqlite3.c @@ -1,4 +1,3 @@ -#include "Poco/Data/SQLite/Config.h" /****************************************************************************** ** This file is an amalgamation of many separate C source files from SQLite ** version 3.8.4.1. By combining all the individual C code files into this diff --git a/buildwin.ps1 b/buildwin.ps1 index c1c4f5cc4..ab6fd3dc8 100644 --- a/buildwin.ps1 +++ b/buildwin.ps1 @@ -8,7 +8,7 @@ # [-action build | rebuild | clean] # [-linkmode shared | static_mt | static_md | all] # [-config release | debug | both] -# [-platform Win32 | x64 | WinCE] +# [-platform Win32 | x64 | WinCE | WEC2013] # [-samples] # [-tests] # [-omit "Lib1X;LibY;LibZ;..."] @@ -39,7 +39,7 @@ Param [string] $config = 'release', [Parameter()] - [ValidateSet('Win32', 'x64', 'WinCE')] + [ValidateSet('Win32', 'x64', 'WinCE', 'WEC2013')] [string] $platform = 'x64', [switch] $tests = $false, @@ -140,7 +140,7 @@ function Process-Input Write-Host ' [-action build | rebuild | clean]' Write-Host ' [-linkmode shared | static_mt | static_md | all]' Write-Host ' [-config release | debug | both]' - Write-Host ' [-platform Win32 | x64 | WinCE]' + Write-Host ' [-platform Win32 | x64 | WinCE | WEC2013]' Write-Host ' [-samples]' Write-Host ' [-tests]' Write-Host ' [-omit "Lib1X;LibY;LibZ;..."]' diff --git a/configure b/configure index a3309d7ae..9815e9fa1 100755 --- a/configure +++ b/configure @@ -67,6 +67,14 @@ Options: Compile with -DPOCO_DATA_SQLITE_FTS. Compile SQLite with Full Text Search support. + --sqlite-thread-safe= + Compile with -DSQLITE_THREADSAFE=. + Valid values are: + - 0 single-thread, no thread safety + - 1 serial access, highest thread safety + - 2 multi-threaded, without session sharing support + + --omit={,} Do not build the specified component(s). Example: --omit=Data/MySQL,Data/ODBC,Zip @@ -177,8 +185,11 @@ while [ $# -ge 1 ]; do --no-ipv6) flags="$flags -DPOCO_NET_NO_IPv6" ;; + --sqlite-thread-safe=*) + flags="$flags -DSQLITE_THREADSAFE=`echo ${1} | awk '{print substr($0,22)}'`" ;; + --sqlite-fts) - flags="$flags -DPOCO_DATA_SQLITE_FTS" ;; + flags="$flags -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS" ;; --poquito) flags="$flags -DPOCO_NO_FILECHANNEL -DPOCO_NO_SPLITTERCHANNEL -DPOCO_NO_SYSLOGCHANNEL -DPOCO_UTIL_NO_INIFILECONFIGURATION -DPOCO_UTIL_NO_JSONCONFIGURATION -DPOCO_UTIL_NO_XMLCONFIGURATION" ;; From 5e67a04540542a693a993661c8463c909c1a0050 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Sat, 19 Apr 2014 13:26:09 -0500 Subject: [PATCH 21/52] - add SQLite FTS define to windows non-embedded testsuites - remove POCO_DATA_SQLITE_FTS define from Config.h - add console message when FTS tests are no-op --- Data/SQLite/testsuite/TestSuite_VS71.vcproj | 12 ++++++------ Data/SQLite/testsuite/TestSuite_VS80.vcproj | 12 ++++++------ Data/SQLite/testsuite/TestSuite_VS90.vcproj | 12 ++++++------ Data/SQLite/testsuite/TestSuite_vs100.vcxproj | 12 ++++++------ Data/SQLite/testsuite/TestSuite_vs110.vcxproj | 12 ++++++------ Data/SQLite/testsuite/TestSuite_vs120.vcxproj | 12 ++++++------ Data/SQLite/testsuite/TestSuite_x64_vs100.vcxproj | 12 ++++++------ Data/SQLite/testsuite/TestSuite_x64_vs110.vcxproj | 12 ++++++------ Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj | 12 ++++++------ Data/SQLite/testsuite/TestSuite_x64_vs90.vcproj | 12 ++++++------ Data/SQLite/testsuite/src/SQLiteTest.cpp | 10 ++++------ Foundation/include/Poco/Config.h | 4 ---- 12 files changed, 64 insertions(+), 70 deletions(-) diff --git a/Data/SQLite/testsuite/TestSuite_VS71.vcproj b/Data/SQLite/testsuite/TestSuite_VS71.vcproj index 1ec2678dc..a1641762b 100644 --- a/Data/SQLite/testsuite/TestSuite_VS71.vcproj +++ b/Data/SQLite/testsuite/TestSuite_VS71.vcproj @@ -22,7 +22,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;" StringPooling="TRUE" MinimalRebuild="TRUE" BasicRuntimeChecks="3" @@ -87,7 +87,7 @@ OmitFramePointers="TRUE" OptimizeForWindowsApplication="TRUE" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;" StringPooling="TRUE" RuntimeLibrary="2" BufferSecurityCheck="FALSE" @@ -147,7 +147,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="TRUE" MinimalRebuild="TRUE" BasicRuntimeChecks="3" @@ -213,7 +213,7 @@ OmitFramePointers="TRUE" OptimizeForWindowsApplication="TRUE" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="TRUE" RuntimeLibrary="0" BufferSecurityCheck="FALSE" @@ -274,7 +274,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="TRUE" MinimalRebuild="TRUE" BasicRuntimeChecks="3" @@ -339,7 +339,7 @@ OmitFramePointers="TRUE" OptimizeForWindowsApplication="TRUE" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="TRUE" RuntimeLibrary="2" BufferSecurityCheck="FALSE" diff --git a/Data/SQLite/testsuite/TestSuite_VS80.vcproj b/Data/SQLite/testsuite/TestSuite_VS80.vcproj index bb0e0a277..1e01fc903 100644 --- a/Data/SQLite/testsuite/TestSuite_VS80.vcproj +++ b/Data/SQLite/testsuite/TestSuite_VS80.vcproj @@ -33,7 +33,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -105,7 +105,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;" StringPooling="true" RuntimeLibrary="2" BufferSecurityCheck="false" @@ -171,7 +171,7 @@ Name="VCCLCompilerTool" Optimization="4" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -244,7 +244,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="true" RuntimeLibrary="0" BufferSecurityCheck="false" @@ -311,7 +311,7 @@ Name="VCCLCompilerTool" Optimization="4" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -383,7 +383,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="true" RuntimeLibrary="2" BufferSecurityCheck="false" diff --git a/Data/SQLite/testsuite/TestSuite_VS90.vcproj b/Data/SQLite/testsuite/TestSuite_VS90.vcproj index 7ae6a6054..e7db76a1b 100644 --- a/Data/SQLite/testsuite/TestSuite_VS90.vcproj +++ b/Data/SQLite/testsuite/TestSuite_VS90.vcproj @@ -33,7 +33,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -105,7 +105,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;" StringPooling="true" RuntimeLibrary="2" BufferSecurityCheck="false" @@ -171,7 +171,7 @@ Name="VCCLCompilerTool" Optimization="4" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -244,7 +244,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="true" RuntimeLibrary="0" BufferSecurityCheck="false" @@ -311,7 +311,7 @@ Name="VCCLCompilerTool" Optimization="4" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -383,7 +383,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="true" RuntimeLibrary="2" BufferSecurityCheck="false" diff --git a/Data/SQLite/testsuite/TestSuite_vs100.vcxproj b/Data/SQLite/testsuite/TestSuite_vs100.vcxproj index 446f363a3..337fa1e42 100644 --- a/Data/SQLite/testsuite/TestSuite_vs100.vcxproj +++ b/Data/SQLite/testsuite/TestSuite_vs100.vcxproj @@ -115,7 +115,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true true EnableFastChecks @@ -149,7 +149,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -177,7 +177,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -212,7 +212,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded false @@ -241,7 +241,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -275,7 +275,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL false diff --git a/Data/SQLite/testsuite/TestSuite_vs110.vcxproj b/Data/SQLite/testsuite/TestSuite_vs110.vcxproj index c6bd69faa..046e6d2dc 100644 --- a/Data/SQLite/testsuite/TestSuite_vs110.vcxproj +++ b/Data/SQLite/testsuite/TestSuite_vs110.vcxproj @@ -121,7 +121,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true true EnableFastChecks @@ -155,7 +155,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -183,7 +183,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -218,7 +218,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded false @@ -247,7 +247,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -281,7 +281,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL false diff --git a/Data/SQLite/testsuite/TestSuite_vs120.vcxproj b/Data/SQLite/testsuite/TestSuite_vs120.vcxproj index 4f857395e..9184c23dd 100644 --- a/Data/SQLite/testsuite/TestSuite_vs120.vcxproj +++ b/Data/SQLite/testsuite/TestSuite_vs120.vcxproj @@ -121,7 +121,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true true EnableFastChecks @@ -155,7 +155,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -183,7 +183,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -218,7 +218,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded false @@ -247,7 +247,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -281,7 +281,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL false diff --git a/Data/SQLite/testsuite/TestSuite_x64_vs100.vcxproj b/Data/SQLite/testsuite/TestSuite_x64_vs100.vcxproj index f85b7fad3..2683eed43 100644 --- a/Data/SQLite/testsuite/TestSuite_x64_vs100.vcxproj +++ b/Data/SQLite/testsuite/TestSuite_x64_vs100.vcxproj @@ -115,7 +115,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true true EnableFastChecks @@ -149,7 +149,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -177,7 +177,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -212,7 +212,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded false @@ -241,7 +241,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -275,7 +275,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL false diff --git a/Data/SQLite/testsuite/TestSuite_x64_vs110.vcxproj b/Data/SQLite/testsuite/TestSuite_x64_vs110.vcxproj index 9bdd9edf1..28845ab6e 100644 --- a/Data/SQLite/testsuite/TestSuite_x64_vs110.vcxproj +++ b/Data/SQLite/testsuite/TestSuite_x64_vs110.vcxproj @@ -121,7 +121,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true true EnableFastChecks @@ -155,7 +155,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -183,7 +183,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -218,7 +218,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded false @@ -247,7 +247,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -281,7 +281,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL false diff --git a/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj b/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj index b46941382..7d9cefea8 100644 --- a/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj @@ -121,7 +121,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true true EnableFastChecks @@ -155,7 +155,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -183,7 +183,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -218,7 +218,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded false @@ -247,7 +247,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -281,7 +281,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL false diff --git a/Data/SQLite/testsuite/TestSuite_x64_vs90.vcproj b/Data/SQLite/testsuite/TestSuite_x64_vs90.vcproj index bfc7c129c..decd1cf0f 100644 --- a/Data/SQLite/testsuite/TestSuite_x64_vs90.vcproj +++ b/Data/SQLite/testsuite/TestSuite_x64_vs90.vcproj @@ -33,7 +33,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -105,7 +105,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;" StringPooling="true" RuntimeLibrary="2" BufferSecurityCheck="false" @@ -171,7 +171,7 @@ Name="VCCLCompilerTool" Optimization="4" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -244,7 +244,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="true" RuntimeLibrary="0" BufferSecurityCheck="false" @@ -311,7 +311,7 @@ Name="VCCLCompilerTool" Optimization="4" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="true" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -383,7 +383,7 @@ FavorSizeOrSpeed="1" OmitFramePointers="true" AdditionalIncludeDirectories="..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include" - PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" + PreprocessorDefinitions="SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0501;POCO_STATIC;" StringPooling="true" RuntimeLibrary="2" BufferSecurityCheck="false" diff --git a/Data/SQLite/testsuite/src/SQLiteTest.cpp b/Data/SQLite/testsuite/src/SQLiteTest.cpp index 1d392906b..423d919af 100644 --- a/Data/SQLite/testsuite/src/SQLiteTest.cpp +++ b/Data/SQLite/testsuite/src/SQLiteTest.cpp @@ -3287,11 +3287,9 @@ void SQLiteTest::testTransactor() } -#ifdef POCO_DATA_SQLITE_FTS - - void SQLiteTest::testFTS3() { +#ifdef SQLITE_ENABLE_FTS3 Session session(Poco::Data::SQLite::Connector::KEY, "dummy.db"); assert(session.isConnected()); @@ -3328,12 +3326,12 @@ void SQLiteTest::testFTS3() docid = 0; session << "SELECT count(*) FROM docs WHERE docs MATCH 'database and sqlite'", into(docid), now; assert(docid == 0); +#else + std::cout << "SQLite FTS not enabled, test not executed." << std::endl; +#endif // SQLITE_ENABLE_FTS3 } -#endif // POCO_DATA_SQLITE_FTS - - void SQLiteTest::setUp() { } diff --git a/Foundation/include/Poco/Config.h b/Foundation/include/Poco/Config.h index adc6dd0a7..19efc6263 100644 --- a/Foundation/include/Poco/Config.h +++ b/Foundation/include/Poco/Config.h @@ -176,10 +176,6 @@ // #define POCO_NET_NO_IPv6 -// Enable SQLite Full Text Search -#define POCO_DATA_SQLITE_FTS - - // Windows CE has no locale support #if defined(_WIN32_WCE) #define POCO_NO_LOCALE From bb6b33ac30588a5a1bd9eb33eefce951e9cb7e42 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Sat, 19 Apr 2014 23:42:44 +0200 Subject: [PATCH 22/52] fixed misplaced parentheses --- buildwin.cmd | 161 +++++++++++++++++++++++++-------------------------- 1 file changed, 80 insertions(+), 81 deletions(-) diff --git a/buildwin.cmd b/buildwin.cmd index 5b0bc5c05..1fef12a44 100644 --- a/buildwin.cmd +++ b/buildwin.cmd @@ -170,7 +170,7 @@ if "%PLATFORM%"=="" (set PLATFORM_SUFFIX=) else ( if "%PLATFORM%"=="Win32" (set PLATFORM_SUFFIX=) else ( if "%PLATFORM%"=="x64" (set PLATFORM_SUFFIX=_x64) else ( if "%PLATFORM%"=="WinCE" (set PLATFORM_SUFFIX=_CE) else ( -if "%PLATFORM%"=="WEC2013" (set PLATFORM_SUFFIX=_WEC2013)))) +if "%PLATFORM%"=="WEC2013" (set PLATFORM_SUFFIX=_WEC2013))))) if "%PLATFORM%"=="WEC2013" ( if "%WEC2013_PLATFORM%"=="" ( @@ -325,7 +325,6 @@ for /f %%G in ('findstr /R "." components') do ( ) cd "%POCO_BASE%" ) -) goto samples @@ -334,86 +333,86 @@ rem / build subroutine / rem //////////////////// :build - echo. - echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - echo ++++ Building [!PROJECT_FILE!] - echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - echo. +echo. +echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +echo ++++ Building [!PROJECT_FILE!] +echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +echo. - if %DEBUG_SHARED%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_shared %PLATFORMSW% !PROJECT_FILE! - if ERRORLEVEL 1 exit /b 1 - echo. && echo. && echo. - if %TESTS%==tests ( - if exist !TEST_PROJECT_FILE! ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_shared %PLATFORMSW% !TEST_PROJECT_FILE! - if ERRORLEVEL 1 exit /b 1 - echo. && echo. && echo. - ) - ) - ) - if %RELEASE_SHARED%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_shared %PLATFORMSW% !PROJECT_FILE! - if ERRORLEVEL 1 exit /b 1 - echo. && echo. && echo. - if %TESTS%==tests ( - if exist !TEST_PROJECT_FILE! ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_shared %PLATFORMSW% !TEST_PROJECT_FILE! - if ERRORLEVEL 1 exit /b 1 - echo. && echo. && echo. - ) - ) - ) - if %DEBUG_STATIC_MT%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_mt %PLATFORMSW% !PROJECT_FILE! - if ERRORLEVEL 1 exit /b 1 - echo. && echo. && echo. - if %TESTS%==tests ( - if exist !TEST_PROJECT_FILE! ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_mt %PLATFORMSW% !TEST_PROJECT_FILE! - if ERRORLEVEL 1 exit /b 1 - echo. && echo. && echo. - ) - ) - ) - if %RELEASE_STATIC_MT%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_mt %PLATFORMSW% !PROJECT_FILE! - if ERRORLEVEL 1 exit /b 1 - echo. && echo. && echo. - if %TESTS%==tests ( - if exist !TEST_PROJECT_FILE! ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_mt %PLATFORMSW% !TEST_PROJECT_FILE! - if ERRORLEVEL 1 exit /b 1 - echo. && echo. && echo. - ) - ) - ) - if %DEBUG_STATIC_MD%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_md %PLATFORMSW% !PROJECT_FILE! - if ERRORLEVEL 1 exit /b 1 - echo. && echo. && echo. - if %TESTS%==tests ( - if exist !TEST_PROJECT_FILE! ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_md %PLATFORMSW% !TEST_PROJECT_FILE! - if ERRORLEVEL 1 exit /b 1 - echo. && echo. && echo. - ) - ) - ) - if %RELEASE_STATIC_MD%==1 ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_md %PLATFORMSW% !PROJECT_FILE! - if ERRORLEVEL 1 exit /b 1 - echo. && echo. && echo. - if %TESTS%==tests ( - if exist !TEST_PROJECT_FILE! ( - !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_md %PLATFORMSW% !TEST_PROJECT_FILE! - if ERRORLEVEL 1 exit /b 1 - echo. && echo. && echo. - ) - ) - ) +if %DEBUG_SHARED%==1 ( + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_shared %PLATFORMSW% !PROJECT_FILE! + if ERRORLEVEL 1 exit /b 1 + echo. && echo. && echo. + if %TESTS%==tests ( + if exist !TEST_PROJECT_FILE! ( + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_shared %PLATFORMSW% !TEST_PROJECT_FILE! + if ERRORLEVEL 1 exit /b 1 + echo. && echo. && echo. + ) + ) +) +if %RELEASE_SHARED%==1 ( + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_shared %PLATFORMSW% !PROJECT_FILE! + if ERRORLEVEL 1 exit /b 1 + echo. && echo. && echo. + if %TESTS%==tests ( + if exist !TEST_PROJECT_FILE! ( + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_shared %PLATFORMSW% !TEST_PROJECT_FILE! + if ERRORLEVEL 1 exit /b 1 + echo. && echo. && echo. + ) + ) +) +if %DEBUG_STATIC_MT%==1 ( + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_mt %PLATFORMSW% !PROJECT_FILE! + if ERRORLEVEL 1 exit /b 1 + echo. && echo. && echo. + if %TESTS%==tests ( + if exist !TEST_PROJECT_FILE! ( + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_mt %PLATFORMSW% !TEST_PROJECT_FILE! + if ERRORLEVEL 1 exit /b 1 + echo. && echo. && echo. + ) + ) +) +if %RELEASE_STATIC_MT%==1 ( + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_mt %PLATFORMSW% !PROJECT_FILE! + if ERRORLEVEL 1 exit /b 1 + echo. && echo. && echo. + if %TESTS%==tests ( + if exist !TEST_PROJECT_FILE! ( + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_mt %PLATFORMSW% !TEST_PROJECT_FILE! + if ERRORLEVEL 1 exit /b 1 + echo. && echo. && echo. + ) + ) +) +if %DEBUG_STATIC_MD%==1 ( + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_md %PLATFORMSW% !PROJECT_FILE! + if ERRORLEVEL 1 exit /b 1 + echo. && echo. && echo. + if %TESTS%==tests ( + if exist !TEST_PROJECT_FILE! ( + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%debug_static_md %PLATFORMSW% !TEST_PROJECT_FILE! + if ERRORLEVEL 1 exit /b 1 + echo. && echo. && echo. + ) + ) +) +if %RELEASE_STATIC_MD%==1 ( + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_md %PLATFORMSW% !PROJECT_FILE! + if ERRORLEVEL 1 exit /b 1 + echo. && echo. && echo. + if %TESTS%==tests ( + if exist !TEST_PROJECT_FILE! ( + !BUILD_TOOL! %USEENV% %EXTRASW% %ACTIONSW%%ACTION% %CONFIGSW%release_static_md %PLATFORMSW% !TEST_PROJECT_FILE! + if ERRORLEVEL 1 exit /b 1 + echo. && echo. && echo. + ) + ) +) echo. echo ------------------------------------------------------------------------ From 00cd9dccecc7c385244238a8b2d81be5427c7bb3 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Sun, 20 Apr 2014 11:23:18 +0200 Subject: [PATCH 23/52] fixed IP address for ping tests (10.0.0.1 is reachable from build server) --- Net/testsuite/src/ICMPClientTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Net/testsuite/src/ICMPClientTest.cpp b/Net/testsuite/src/ICMPClientTest.cpp index 3e490b4ab..18ae39bea 100644 --- a/Net/testsuite/src/ICMPClientTest.cpp +++ b/Net/testsuite/src/ICMPClientTest.cpp @@ -76,7 +76,7 @@ void ICMPClientTest::testPing() // warning: may fail depending on the existence of the addresses at test site // if so, adjust accordingly (i.e. specify non-existent or unreachable IP addresses) assert(0 == _icmpClient.ping("192.168.243.1")); - assert(0 == _icmpClient.ping("10.0.0.1")); + assert(0 == _icmpClient.ping("10.11.12.13")); } From 15833414b8de6e75f84ea1adc0f272dbb2d27bd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Mon, 21 Apr 2014 08:31:49 +0200 Subject: [PATCH 24/52] ProGen fixes for VS2010-2013 --- ProGen/progen.properties | 2 +- ProGen/src/ProGen.cpp | 14 ++++---------- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/ProGen/progen.properties b/ProGen/progen.properties index 1971e7bf3..f325fcd7f 100644 --- a/ProGen/progen.properties +++ b/ProGen/progen.properties @@ -25,7 +25,7 @@ progen.postprocess.upgrade2008toWEC2013.deleteOriginalFile = true progen.postprocess.upgrade2008toWEC2013.deleteFiles = Backup;_UpgradeReport_Files;UpgradeLog.XML;UpgradeLog.htm progen.postprocess.upgrade2008toWEC2013.fixWEC2013ProjectFile = true -progen.postprocess.upgrade2008to2013.tool = ${system.env.VS120COMNTOOLS}\\..\\IDE\\DevEnv.exe +progen.postprocess.upgrade2008to2013.tool = ${system.env.VS110COMNTOOLS}\\..\\IDE\\DevEnv.exe progen.postprocess.upgrade2008to2013.args = %;/Upgrade progen.postprocess.upgrade2008to2013.deleteOriginalFile = true progen.postprocess.upgrade2008to2013.deleteFiles = Backup;_UpgradeReport_Files;UpgradeLog.XML;UpgradeLog.htm diff --git a/ProGen/src/ProGen.cpp b/ProGen/src/ProGen.cpp index 80c778e96..aa5d0148d 100644 --- a/ProGen/src/ProGen.cpp +++ b/ProGen/src/ProGen.cpp @@ -556,11 +556,8 @@ protected: for (unsigned long i = 0; i < pConfigurationTypeList->length(); i++) { Poco::XML::Element* pConfigurationTypeElem = static_cast(pConfigurationTypeList->item(i)); - Poco::XML::Node* pPropertyGroupElem = pConfigurationTypeElem->parentNode(); - Poco::AutoPtr pPlatformToolsetElem = pProjectDoc->createElement("PlatformToolset"); - Poco::AutoPtr pText = pProjectDoc->createTextNode("v110"); - pPlatformToolsetElem->appendChild(pText); - pPropertyGroupElem->appendChild(pPlatformToolsetElem); + removeElement(pConfigurationTypeElem->parentNode(), "PlatformToolset"); + appendElement(pConfigurationTypeElem->parentNode(), "PlatformToolset", "v110"); } } @@ -611,11 +608,8 @@ protected: for (unsigned long i = 0; i < pConfigurationTypeList->length(); i++) { Poco::XML::Element* pConfigurationTypeElem = static_cast(pConfigurationTypeList->item(i)); - Poco::XML::Node* pPropertyGroupElem = pConfigurationTypeElem->parentNode(); - Poco::AutoPtr pPlatformToolsetElem = pProjectDoc->createElement("PlatformToolset"); - Poco::AutoPtr pText = pProjectDoc->createTextNode("v120"); - pPlatformToolsetElem->appendChild(pText); - pPropertyGroupElem->appendChild(pPlatformToolsetElem); + removeElement(pConfigurationTypeElem->parentNode(), "PlatformToolset"); + appendElement(pConfigurationTypeElem->parentNode(), "PlatformToolset", "v120"); } } From 12c7bb562d346381f9a9d646dd2399c79231c968 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Mon, 21 Apr 2014 10:50:51 +0200 Subject: [PATCH 25/52] re-generated vs100-vs120 project files --- ApacheConnector/ApacheConnector_vs100.vcxproj | 32 +- .../ApacheConnector_vs100.vcxproj.filters | 4 +- ApacheConnector/ApacheConnector_vs110.vcxproj | 40 +- .../ApacheConnector_vs110.vcxproj.filters | 4 +- ApacheConnector/ApacheConnector_vs120.sln | 4 +- ApacheConnector/ApacheConnector_vs120.vcxproj | 76 +-- .../ApacheConnector_vs120.vcxproj.filters | 4 +- .../ApacheConnector_x64_vs100.vcxproj | 58 +- .../ApacheConnector_x64_vs100.vcxproj.filters | 4 +- .../ApacheConnector_x64_vs110.vcxproj | 40 +- .../ApacheConnector_x64_vs110.vcxproj.filters | 4 +- ApacheConnector/ApacheConnector_x64_vs120.sln | 4 +- .../ApacheConnector_x64_vs120.vcxproj | 76 +-- .../ApacheConnector_x64_vs120.vcxproj.filters | 4 +- .../FormServer/FormServer_vs100.vcxproj | 32 +- .../FormServer_vs100.vcxproj.filters | 2 +- .../FormServer/FormServer_vs110.vcxproj | 40 +- .../FormServer_vs110.vcxproj.filters | 2 +- .../FormServer/FormServer_vs120.vcxproj | 50 +- .../FormServer_vs120.vcxproj.filters | 2 +- .../FormServer/FormServer_x64_vs100.vcxproj | 32 +- .../FormServer_x64_vs100.vcxproj.filters | 2 +- .../FormServer/FormServer_x64_vs110.vcxproj | 40 +- .../FormServer_x64_vs110.vcxproj.filters | 2 +- .../FormServer/FormServer_x64_vs120.vcxproj | 50 +- .../FormServer_x64_vs120.vcxproj.filters | 2 +- .../TimeServer/TimeServer_vs100.vcxproj | 32 +- .../TimeServer_vs100.vcxproj.filters | 2 +- .../TimeServer/TimeServer_vs110.vcxproj | 40 +- .../TimeServer_vs110.vcxproj.filters | 2 +- .../TimeServer/TimeServer_vs120.vcxproj | 50 +- .../TimeServer_vs120.vcxproj.filters | 2 +- .../TimeServer/TimeServer_x64_vs100.vcxproj | 32 +- .../TimeServer_x64_vs100.vcxproj.filters | 2 +- .../TimeServer/TimeServer_x64_vs110.vcxproj | 40 +- .../TimeServer_x64_vs110.vcxproj.filters | 2 +- .../TimeServer/TimeServer_x64_vs120.vcxproj | 50 +- .../TimeServer_x64_vs120.vcxproj.filters | 2 +- ApacheConnector/samples/samples_vs120.sln | 6 +- ApacheConnector/samples/samples_x64_vs120.sln | 6 +- CppParser/CppParser.progen | 2 +- CppParser/CppParser_vs100.vcxproj | 88 ++-- CppParser/CppParser_vs100.vcxproj.filters | 18 +- CppParser/CppParser_vs110.vcxproj | 111 ++-- CppParser/CppParser_vs110.vcxproj.filters | 18 +- CppParser/CppParser_vs120.sln | 44 +- CppParser/CppParser_vs120.vcxproj | 169 +++--- CppParser/CppParser_vs120.vcxproj.filters | 18 +- CppParser/CppParser_x64_vs100.vcxproj | 88 ++-- CppParser/CppParser_x64_vs100.vcxproj.filters | 18 +- CppParser/CppParser_x64_vs110.vcxproj | 110 ++-- CppParser/CppParser_x64_vs110.vcxproj.filters | 18 +- CppParser/CppParser_x64_vs120.sln | 44 +- CppParser/CppParser_x64_vs120.vcxproj | 168 +++--- CppParser/CppParser_x64_vs120.vcxproj.filters | 18 +- CppParser/testsuite/TestSuite_vs100.vcxproj | 96 ++-- .../testsuite/TestSuite_vs100.vcxproj.filters | 22 +- CppParser/testsuite/TestSuite_vs110.vcxproj | 116 ++-- .../testsuite/TestSuite_vs110.vcxproj.filters | 22 +- CppParser/testsuite/TestSuite_vs120.vcxproj | 158 +++--- .../testsuite/TestSuite_vs120.vcxproj.filters | 28 +- .../testsuite/TestSuite_x64_vs100.vcxproj | 96 ++-- .../TestSuite_x64_vs100.vcxproj.filters | 22 +- .../testsuite/TestSuite_x64_vs110.vcxproj | 116 ++-- .../TestSuite_x64_vs110.vcxproj.filters | 22 +- .../testsuite/TestSuite_x64_vs120.vcxproj | 158 +++--- .../TestSuite_x64_vs120.vcxproj.filters | 28 +- Crypto/Crypto_vs100.vcxproj | 116 ++-- Crypto/Crypto_vs100.vcxproj.filters | 30 +- Crypto/Crypto_vs110.vcxproj | 182 +++---- Crypto/Crypto_vs110.vcxproj.filters | 30 +- Crypto/Crypto_vs120.sln | 44 +- Crypto/Crypto_vs120.vcxproj | 188 +++---- Crypto/Crypto_vs120.vcxproj.filters | 30 +- Crypto/Crypto_x64_vs100.vcxproj | 96 ++-- Crypto/Crypto_x64_vs100.vcxproj.filters | 30 +- Crypto/Crypto_x64_vs110.vcxproj | 116 ++-- Crypto/Crypto_x64_vs110.vcxproj.filters | 30 +- Crypto/Crypto_x64_vs120.sln | 44 +- Crypto/Crypto_x64_vs120.vcxproj | 174 +++--- Crypto/Crypto_x64_vs120.vcxproj.filters | 30 +- .../samples/genrsakey/genrsakey_vs100.vcxproj | 96 ++-- .../genrsakey/genrsakey_vs100.vcxproj.filters | 4 +- .../samples/genrsakey/genrsakey_vs110.vcxproj | 116 ++-- .../genrsakey/genrsakey_vs110.vcxproj.filters | 4 +- .../samples/genrsakey/genrsakey_vs120.vcxproj | 126 ++--- .../genrsakey/genrsakey_vs120.vcxproj.filters | 4 +- .../genrsakey/genrsakey_x64_vs100.vcxproj | 96 ++-- .../genrsakey_x64_vs100.vcxproj.filters | 4 +- .../genrsakey/genrsakey_x64_vs110.vcxproj | 116 ++-- .../genrsakey_x64_vs110.vcxproj.filters | 4 +- .../genrsakey/genrsakey_x64_vs120.vcxproj | 126 ++--- .../genrsakey_x64_vs120.vcxproj.filters | 4 +- Crypto/samples/samples_vs120.sln | 26 +- Crypto/samples/samples_x64_vs120.sln | 26 +- Crypto/testsuite/TestSuite_vs100.vcxproj | 100 ++-- .../testsuite/TestSuite_vs100.vcxproj.filters | 16 +- Crypto/testsuite/TestSuite_vs110.vcxproj | 146 +++--- .../testsuite/TestSuite_vs110.vcxproj.filters | 16 +- Crypto/testsuite/TestSuite_vs120.vcxproj | 180 +++---- .../testsuite/TestSuite_vs120.vcxproj.filters | 18 +- Crypto/testsuite/TestSuite_x64_vs100.vcxproj | 82 ++- .../TestSuite_x64_vs100.vcxproj.filters | 16 +- Crypto/testsuite/TestSuite_x64_vs110.vcxproj | 120 +++-- .../TestSuite_x64_vs110.vcxproj.filters | 16 +- Crypto/testsuite/TestSuite_x64_vs120.vcxproj | 180 +++---- .../TestSuite_x64_vs120.vcxproj.filters | 16 +- Data/Data_WEC2013_vs110.vcxproj.filters | 18 +- Data/Data_vs100.vcxproj | 88 ++-- Data/Data_vs100.vcxproj.filters | 18 +- Data/Data_vs110.vcxproj | 111 ++-- Data/Data_vs110.vcxproj.filters | 18 +- Data/Data_vs120.sln | 44 +- Data/Data_vs120.vcxproj | 267 +++++----- Data/Data_vs120.vcxproj.filters | 18 +- Data/Data_x64_vs100.vcxproj | 88 ++-- Data/Data_x64_vs100.vcxproj.filters | 18 +- Data/Data_x64_vs110.vcxproj | 272 +++++----- Data/Data_x64_vs110.vcxproj.filters | 18 +- Data/Data_x64_vs120.sln | 44 +- Data/Data_x64_vs120.vcxproj | 274 +++++----- Data/Data_x64_vs120.vcxproj.filters | 18 +- Data/MySQL/MySQL_vs100.vcxproj | 88 ++-- Data/MySQL/MySQL_vs110.vcxproj | 108 ++-- Data/MySQL/MySQL_vs120.sln | 63 ++- Data/MySQL/MySQL_vs120.vcxproj | 138 ++--- Data/MySQL/MySQL_x64_vs100.vcxproj | 88 ++-- Data/MySQL/MySQL_x64_vs110.vcxproj | 108 ++-- Data/MySQL/MySQL_x64_vs120.sln | 47 +- Data/MySQL/MySQL_x64_vs120.vcxproj | 138 ++--- Data/MySQL/testsuite/TestSuite_vs100.vcxproj | 96 ++-- .../testsuite/TestSuite_vs100.vcxproj.filters | 16 +- Data/MySQL/testsuite/TestSuite_vs110.vcxproj | 116 ++-- .../testsuite/TestSuite_vs110.vcxproj.filters | 16 +- Data/MySQL/testsuite/TestSuite_vs120.vcxproj | 154 +++--- .../testsuite/TestSuite_vs120.vcxproj.filters | 18 +- .../testsuite/TestSuite_x64_vs100.vcxproj | 96 ++-- .../TestSuite_x64_vs100.vcxproj.filters | 16 +- .../testsuite/TestSuite_x64_vs110.vcxproj | 116 ++-- .../TestSuite_x64_vs110.vcxproj.filters | 16 +- .../testsuite/TestSuite_x64_vs120.vcxproj | 154 +++--- .../TestSuite_x64_vs120.vcxproj.filters | 18 +- Data/ODBC/ODBC_vs100.vcxproj | 112 ++-- Data/ODBC/ODBC_vs100.vcxproj.filters | 6 +- Data/ODBC/ODBC_vs110.vcxproj | 132 ++--- Data/ODBC/ODBC_vs110.vcxproj.filters | 6 +- Data/ODBC/ODBC_vs120.sln | 47 +- Data/ODBC/ODBC_vs120.vcxproj | 164 +++--- Data/ODBC/ODBC_vs120.vcxproj.filters | 6 +- Data/ODBC/ODBC_x64_vs100.vcxproj | 112 ++-- Data/ODBC/ODBC_x64_vs100.vcxproj.filters | 6 +- Data/ODBC/ODBC_x64_vs110.vcxproj | 132 ++--- Data/ODBC/ODBC_x64_vs110.vcxproj.filters | 6 +- Data/ODBC/ODBC_x64_vs120.sln | 47 +- Data/ODBC/ODBC_x64_vs120.vcxproj | 164 +++--- Data/ODBC/ODBC_x64_vs120.vcxproj.filters | 6 +- Data/ODBC/testsuite/TestSuite_vs100.vcxproj | 96 ++-- .../testsuite/TestSuite_vs100.vcxproj.filters | 16 +- Data/ODBC/testsuite/TestSuite_vs110.vcxproj | 116 ++-- .../testsuite/TestSuite_vs110.vcxproj.filters | 16 +- Data/ODBC/testsuite/TestSuite_vs120.vcxproj | 182 +++---- .../testsuite/TestSuite_vs120.vcxproj.filters | 18 +- .../testsuite/TestSuite_x64_vs100.vcxproj | 96 ++-- .../TestSuite_x64_vs100.vcxproj.filters | 16 +- .../testsuite/TestSuite_x64_vs110.vcxproj | 116 ++-- .../TestSuite_x64_vs110.vcxproj.filters | 16 +- .../testsuite/TestSuite_x64_vs120.vcxproj | 182 +++---- .../TestSuite_x64_vs120.vcxproj.filters | 18 +- Data/SQLite/SQLite_WEC2013_vs110.vcxproj | 12 +- .../SQLite_WEC2013_vs110.vcxproj.filters | 12 +- Data/SQLite/SQLite_vs100.vcxproj | 88 ++-- Data/SQLite/SQLite_vs100.vcxproj.filters | 12 +- Data/SQLite/SQLite_vs110.vcxproj | 105 ++-- Data/SQLite/SQLite_vs110.vcxproj.filters | 12 +- Data/SQLite/SQLite_vs120.sln | 47 +- Data/SQLite/SQLite_vs120.vcxproj | 131 ++--- Data/SQLite/SQLite_vs120.vcxproj.filters | 12 +- Data/SQLite/SQLite_x64_vs100.vcxproj | 88 ++-- Data/SQLite/SQLite_x64_vs100.vcxproj.filters | 12 +- Data/SQLite/SQLite_x64_vs110.vcxproj | 104 ++-- Data/SQLite/SQLite_x64_vs110.vcxproj.filters | 12 +- Data/SQLite/SQLite_x64_vs120.sln | 47 +- Data/SQLite/SQLite_x64_vs120.vcxproj | 130 ++--- Data/SQLite/SQLite_x64_vs120.vcxproj.filters | 12 +- .../TestSuite_WEC2013_vs110.vcxproj.filters | 16 +- Data/SQLite/testsuite/TestSuite_vs100.vcxproj | 108 ++-- .../testsuite/TestSuite_vs100.vcxproj.filters | 16 +- Data/SQLite/testsuite/TestSuite_vs110.vcxproj | 128 ++--- .../testsuite/TestSuite_vs110.vcxproj.filters | 16 +- Data/SQLite/testsuite/TestSuite_vs120.vcxproj | 162 +++--- .../testsuite/TestSuite_vs120.vcxproj.filters | 18 +- .../testsuite/TestSuite_x64_vs100.vcxproj | 108 ++-- .../TestSuite_x64_vs100.vcxproj.filters | 16 +- .../testsuite/TestSuite_x64_vs110.vcxproj | 128 ++--- .../TestSuite_x64_vs110.vcxproj.filters | 16 +- .../testsuite/TestSuite_x64_vs120.vcxproj | 162 +++--- .../TestSuite_x64_vs120.vcxproj.filters | 18 +- .../Binding_WEC2013_vs110.vcxproj.filters | 4 +- Data/samples/Binding/Binding_vs100.vcxproj | 108 ++-- .../Binding/Binding_vs100.vcxproj.filters | 4 +- Data/samples/Binding/Binding_vs110.vcxproj | 128 ++--- .../Binding/Binding_vs110.vcxproj.filters | 4 +- Data/samples/Binding/Binding_vs120.vcxproj | 118 +++-- .../Binding/Binding_vs120.vcxproj.filters | 4 +- .../samples/Binding/Binding_x64_vs100.vcxproj | 108 ++-- .../Binding/Binding_x64_vs100.vcxproj.filters | 4 +- .../samples/Binding/Binding_x64_vs110.vcxproj | 128 ++--- .../Binding/Binding_x64_vs110.vcxproj.filters | 4 +- .../samples/Binding/Binding_x64_vs120.vcxproj | 118 +++-- .../Binding/Binding_x64_vs120.vcxproj.filters | 4 +- .../RecordSet_WEC2013_vs110.vcxproj.filters | 4 +- .../samples/RecordSet/RecordSet_vs100.vcxproj | 62 +-- .../RecordSet/RecordSet_vs100.vcxproj.filters | 4 +- .../samples/RecordSet/RecordSet_vs110.vcxproj | 128 ++--- .../RecordSet/RecordSet_vs110.vcxproj.filters | 4 +- .../samples/RecordSet/RecordSet_vs120.vcxproj | 118 +++-- .../RecordSet/RecordSet_vs120.vcxproj.filters | 4 +- .../RecordSet/RecordSet_x64_vs100.vcxproj | 108 ++-- .../RecordSet_x64_vs100.vcxproj.filters | 4 +- .../RecordSet/RecordSet_x64_vs110.vcxproj | 128 ++--- .../RecordSet_x64_vs110.vcxproj.filters | 4 +- .../RecordSet/RecordSet_x64_vs120.vcxproj | 118 +++-- .../RecordSet_x64_vs120.vcxproj.filters | 4 +- ...RowFormatter_WEC2013_vs110.vcxproj.filters | 4 +- .../RowFormatter/RowFormatter_vs100.vcxproj | 108 ++-- .../RowFormatter_vs100.vcxproj.filters | 4 +- .../RowFormatter/RowFormatter_vs110.vcxproj | 128 ++--- .../RowFormatter_vs110.vcxproj.filters | 4 +- .../RowFormatter/RowFormatter_vs120.vcxproj | 118 +++-- .../RowFormatter_vs120.vcxproj.filters | 4 +- .../RowFormatter_x64_vs100.vcxproj | 108 ++-- .../RowFormatter_x64_vs100.vcxproj.filters | 4 +- .../RowFormatter_x64_vs110.vcxproj | 128 ++--- .../RowFormatter_x64_vs110.vcxproj.filters | 4 +- .../RowFormatter_x64_vs120.vcxproj | 118 +++-- .../RowFormatter_x64_vs120.vcxproj.filters | 4 +- .../Tuple/Tuple_WEC2013_vs110.vcxproj.filters | 4 +- Data/samples/Tuple/Tuple_vs100.vcxproj | 108 ++-- .../samples/Tuple/Tuple_vs100.vcxproj.filters | 4 +- Data/samples/Tuple/Tuple_vs110.vcxproj | 128 ++--- .../samples/Tuple/Tuple_vs110.vcxproj.filters | 4 +- Data/samples/Tuple/Tuple_vs120.vcxproj | 118 +++-- .../samples/Tuple/Tuple_vs120.vcxproj.filters | 4 +- Data/samples/Tuple/Tuple_x64_vs100.vcxproj | 108 ++-- .../Tuple/Tuple_x64_vs100.vcxproj.filters | 4 +- Data/samples/Tuple/Tuple_x64_vs110.vcxproj | 128 ++--- .../Tuple/Tuple_x64_vs110.vcxproj.filters | 4 +- Data/samples/Tuple/Tuple_x64_vs120.vcxproj | 118 +++-- .../Tuple/Tuple_x64_vs120.vcxproj.filters | 4 +- .../TypeHandler_WEC2013_vs110.vcxproj.filters | 4 +- .../TypeHandler/TypeHandler_vs100.vcxproj | 96 ++-- .../TypeHandler_vs100.vcxproj.filters | 4 +- .../TypeHandler/TypeHandler_vs110.vcxproj | 116 ++-- .../TypeHandler_vs110.vcxproj.filters | 4 +- .../TypeHandler/TypeHandler_vs120.vcxproj | 106 ++-- .../TypeHandler_vs120.vcxproj.filters | 4 +- .../TypeHandler/TypeHandler_x64_vs100.vcxproj | 96 ++-- .../TypeHandler_x64_vs100.vcxproj.filters | 4 +- .../TypeHandler/TypeHandler_x64_vs110.vcxproj | 116 ++-- .../TypeHandler_x64_vs110.vcxproj.filters | 4 +- .../TypeHandler/TypeHandler_x64_vs120.vcxproj | 106 ++-- .../TypeHandler_x64_vs120.vcxproj.filters | 4 +- .../WebNotifier_WEC2013_vs110.vcxproj.filters | 4 +- .../WebNotifier/WebNotifier_vs100.vcxproj | 110 ++-- .../WebNotifier_vs100.vcxproj.filters | 4 +- .../WebNotifier/WebNotifier_vs110.vcxproj | 118 +++-- .../WebNotifier_vs110.vcxproj.filters | 4 +- .../WebNotifier/WebNotifier_vs120.vcxproj | 120 +++-- .../WebNotifier_vs120.vcxproj.filters | 4 +- .../WebNotifier/WebNotifier_x64_vs100.vcxproj | 110 ++-- .../WebNotifier_x64_vs100.vcxproj.filters | 4 +- .../WebNotifier/WebNotifier_x64_vs110.vcxproj | 118 +++-- .../WebNotifier_x64_vs110.vcxproj.filters | 4 +- .../WebNotifier/WebNotifier_x64_vs120.vcxproj | 120 +++-- .../WebNotifier_x64_vs120.vcxproj.filters | 4 +- Data/samples/samples_vs110.sln | 110 ++-- Data/samples/samples_vs120.sln | 112 ++-- Data/samples/samples_x64_vs110.sln | 110 ++-- Data/samples/samples_x64_vs120.sln | 112 ++-- .../TestSuite_WEC2013_vs110.vcxproj.filters | 28 +- Data/testsuite/TestSuite_vs100.vcxproj | 96 ++-- .../testsuite/TestSuite_vs100.vcxproj.filters | 28 +- Data/testsuite/TestSuite_vs110.vcxproj | 116 ++-- .../testsuite/TestSuite_vs110.vcxproj.filters | 28 +- Data/testsuite/TestSuite_vs120.vcxproj | 178 ++++--- .../testsuite/TestSuite_vs120.vcxproj.filters | 34 +- Data/testsuite/TestSuite_x64_vs100.vcxproj | 96 ++-- .../TestSuite_x64_vs100.vcxproj.filters | 28 +- Data/testsuite/TestSuite_x64_vs110.vcxproj | 116 ++-- .../TestSuite_x64_vs110.vcxproj.filters | 28 +- Data/testsuite/TestSuite_x64_vs120.vcxproj | 178 ++++--- .../TestSuite_x64_vs120.vcxproj.filters | 34 +- ...ActiveMethod_WEC2013_vs110.vcxproj.filters | 4 +- .../ActiveMethod/ActiveMethod_vs100.vcxproj | 98 ++-- .../ActiveMethod_vs100.vcxproj.filters | 4 +- .../ActiveMethod/ActiveMethod_vs110.vcxproj | 116 ++-- .../ActiveMethod_vs110.vcxproj.filters | 4 +- .../ActiveMethod/ActiveMethod_vs120.vcxproj | 106 ++-- .../ActiveMethod_vs120.vcxproj.filters | 4 +- .../ActiveMethod_x64_vs100.vcxproj | 98 ++-- .../ActiveMethod_x64_vs100.vcxproj.filters | 4 +- .../ActiveMethod_x64_vs110.vcxproj | 116 ++-- .../ActiveMethod_x64_vs110.vcxproj.filters | 4 +- .../ActiveMethod_x64_vs120.vcxproj | 106 ++-- .../ActiveMethod_x64_vs120.vcxproj.filters | 4 +- .../Activity_WEC2013_vs110.vcxproj.filters | 4 +- .../samples/Activity/Activity_vs100.vcxproj | 98 ++-- .../Activity/Activity_vs100.vcxproj.filters | 4 +- .../samples/Activity/Activity_vs110.vcxproj | 116 ++-- .../Activity/Activity_vs110.vcxproj.filters | 4 +- .../samples/Activity/Activity_vs120.vcxproj | 106 ++-- .../Activity/Activity_vs120.vcxproj.filters | 4 +- .../Activity/Activity_x64_vs100.vcxproj | 98 ++-- .../Activity_x64_vs100.vcxproj.filters | 4 +- .../Activity/Activity_x64_vs110.vcxproj | 116 ++-- .../Activity_x64_vs110.vcxproj.filters | 4 +- .../Activity/Activity_x64_vs120.vcxproj | 106 ++-- .../Activity_x64_vs120.vcxproj.filters | 4 +- ...ReaderWriter_WEC2013_vs110.vcxproj.filters | 4 +- .../BinaryReaderWriter_vs100.vcxproj | 98 ++-- .../BinaryReaderWriter_vs100.vcxproj.filters | 4 +- .../BinaryReaderWriter_vs110.vcxproj | 116 ++-- .../BinaryReaderWriter_vs110.vcxproj.filters | 4 +- .../BinaryReaderWriter_vs120.vcxproj | 106 ++-- .../BinaryReaderWriter_vs120.vcxproj.filters | 4 +- .../BinaryReaderWriter_x64_vs100.vcxproj | 98 ++-- ...naryReaderWriter_x64_vs100.vcxproj.filters | 4 +- .../BinaryReaderWriter_x64_vs110.vcxproj | 116 ++-- ...naryReaderWriter_x64_vs110.vcxproj.filters | 4 +- .../BinaryReaderWriter_x64_vs120.vcxproj | 106 ++-- ...naryReaderWriter_x64_vs120.vcxproj.filters | 4 +- .../DateTime_WEC2013_vs110.vcxproj.filters | 4 +- .../samples/DateTime/DateTime_vs100.vcxproj | 98 ++-- .../DateTime/DateTime_vs100.vcxproj.filters | 4 +- .../samples/DateTime/DateTime_vs110.vcxproj | 116 ++-- .../DateTime/DateTime_vs110.vcxproj.filters | 4 +- .../samples/DateTime/DateTime_vs120.vcxproj | 106 ++-- .../DateTime/DateTime_vs120.vcxproj.filters | 4 +- .../DateTime/DateTime_x64_vs100.vcxproj | 98 ++-- .../DateTime_x64_vs100.vcxproj.filters | 4 +- .../DateTime/DateTime_x64_vs110.vcxproj | 116 ++-- .../DateTime_x64_vs110.vcxproj.filters | 4 +- .../DateTime/DateTime_x64_vs120.vcxproj | 106 ++-- .../DateTime_x64_vs120.vcxproj.filters | 4 +- .../LineEndingConverter_vs100.vcxproj | 52 +- .../LineEndingConverter_vs100.vcxproj.filters | 4 +- .../LineEndingConverter_vs110.vcxproj | 118 +++-- .../LineEndingConverter_vs110.vcxproj.filters | 4 +- .../LineEndingConverter_vs120.vcxproj | 130 ++--- .../LineEndingConverter_vs120.vcxproj.filters | 4 +- .../LineEndingConverter_x64_vs100.vcxproj | 100 ++-- ...eEndingConverter_x64_vs100.vcxproj.filters | 4 +- .../LineEndingConverter_x64_vs110.vcxproj | 118 +++-- ...eEndingConverter_x64_vs110.vcxproj.filters | 4 +- .../LineEndingConverter_x64_vs120.vcxproj | 130 ++--- ...eEndingConverter_x64_vs120.vcxproj.filters | 4 +- .../LogRotation_WEC2013_vs110.vcxproj.filters | 4 +- .../LogRotation/LogRotation_vs100.vcxproj | 98 ++-- .../LogRotation_vs100.vcxproj.filters | 4 +- .../LogRotation/LogRotation_vs110.vcxproj | 116 ++-- .../LogRotation_vs110.vcxproj.filters | 4 +- .../LogRotation/LogRotation_vs120.vcxproj | 106 ++-- .../LogRotation_vs120.vcxproj.filters | 4 +- .../LogRotation/LogRotation_x64_vs100.vcxproj | 98 ++-- .../LogRotation_x64_vs100.vcxproj.filters | 4 +- .../LogRotation/LogRotation_x64_vs110.vcxproj | 116 ++-- .../LogRotation_x64_vs110.vcxproj.filters | 4 +- .../LogRotation/LogRotation_x64_vs120.vcxproj | 106 ++-- .../LogRotation_x64_vs120.vcxproj.filters | 4 +- .../Logger_WEC2013_vs110.vcxproj.filters | 4 +- .../samples/Logger/Logger_vs100.vcxproj | 98 ++-- .../Logger/Logger_vs100.vcxproj.filters | 4 +- .../samples/Logger/Logger_vs110.vcxproj | 116 ++-- .../Logger/Logger_vs110.vcxproj.filters | 4 +- .../samples/Logger/Logger_vs120.vcxproj | 106 ++-- .../Logger/Logger_vs120.vcxproj.filters | 4 +- .../samples/Logger/Logger_x64_vs100.vcxproj | 98 ++-- .../Logger/Logger_x64_vs100.vcxproj.filters | 4 +- .../samples/Logger/Logger_x64_vs110.vcxproj | 116 ++-- .../Logger/Logger_x64_vs110.vcxproj.filters | 4 +- .../samples/Logger/Logger_x64_vs120.vcxproj | 106 ++-- .../Logger/Logger_x64_vs120.vcxproj.filters | 4 +- ...icationQueue_WEC2013_vs110.vcxproj.filters | 4 +- .../NotificationQueue_vs100.vcxproj | 98 ++-- .../NotificationQueue_vs100.vcxproj.filters | 4 +- .../NotificationQueue_vs110.vcxproj | 116 ++-- .../NotificationQueue_vs110.vcxproj.filters | 4 +- .../NotificationQueue_vs120.vcxproj | 106 ++-- .../NotificationQueue_vs120.vcxproj.filters | 4 +- .../NotificationQueue_x64_vs100.vcxproj | 98 ++-- ...otificationQueue_x64_vs100.vcxproj.filters | 4 +- .../NotificationQueue_x64_vs110.vcxproj | 116 ++-- ...otificationQueue_x64_vs110.vcxproj.filters | 4 +- .../NotificationQueue_x64_vs120.vcxproj | 106 ++-- ...otificationQueue_x64_vs120.vcxproj.filters | 4 +- ...ingTokenizer_WEC2013_vs110.vcxproj.filters | 4 +- .../StringTokenizer_vs100.vcxproj | 98 ++-- .../StringTokenizer_vs100.vcxproj.filters | 4 +- .../StringTokenizer_vs110.vcxproj | 116 ++-- .../StringTokenizer_vs110.vcxproj.filters | 4 +- .../StringTokenizer_vs120.vcxproj | 106 ++-- .../StringTokenizer_vs120.vcxproj.filters | 4 +- .../StringTokenizer_x64_vs100.vcxproj | 98 ++-- .../StringTokenizer_x64_vs100.vcxproj.filters | 4 +- .../StringTokenizer_x64_vs110.vcxproj | 116 ++-- .../StringTokenizer_x64_vs110.vcxproj.filters | 4 +- .../StringTokenizer_x64_vs120.vcxproj | 106 ++-- .../StringTokenizer_x64_vs120.vcxproj.filters | 4 +- .../Timer/Timer_WEC2013_vs110.vcxproj.filters | 4 +- Foundation/samples/Timer/Timer_vs100.vcxproj | 98 ++-- .../samples/Timer/Timer_vs100.vcxproj.filters | 4 +- Foundation/samples/Timer/Timer_vs110.vcxproj | 116 ++-- .../samples/Timer/Timer_vs110.vcxproj.filters | 4 +- Foundation/samples/Timer/Timer_vs120.vcxproj | 106 ++-- .../samples/Timer/Timer_vs120.vcxproj.filters | 4 +- .../samples/Timer/Timer_x64_vs100.vcxproj | 98 ++-- .../Timer/Timer_x64_vs100.vcxproj.filters | 4 +- .../samples/Timer/Timer_x64_vs110.vcxproj | 116 ++-- .../Timer/Timer_x64_vs110.vcxproj.filters | 4 +- .../samples/Timer/Timer_x64_vs120.vcxproj | 106 ++-- .../Timer/Timer_x64_vs120.vcxproj.filters | 4 +- .../URI/URI_WEC2013_vs110.vcxproj.filters | 4 +- Foundation/samples/URI/URI_vs100.vcxproj | 98 ++-- .../samples/URI/URI_vs100.vcxproj.filters | 4 +- Foundation/samples/URI/URI_vs110.vcxproj | 116 ++-- .../samples/URI/URI_vs110.vcxproj.filters | 4 +- Foundation/samples/URI/URI_vs120.vcxproj | 106 ++-- .../samples/URI/URI_vs120.vcxproj.filters | 4 +- Foundation/samples/URI/URI_x64_vs100.vcxproj | 98 ++-- .../samples/URI/URI_x64_vs100.vcxproj.filters | 4 +- Foundation/samples/URI/URI_x64_vs110.vcxproj | 116 ++-- .../samples/URI/URI_x64_vs110.vcxproj.filters | 4 +- Foundation/samples/URI/URI_x64_vs120.vcxproj | 106 ++-- .../samples/URI/URI_x64_vs120.vcxproj.filters | 4 +- ...base64decode_WEC2013_vs110.vcxproj.filters | 4 +- .../base64decode/base64decode_vs100.vcxproj | 98 ++-- .../base64decode_vs100.vcxproj.filters | 4 +- .../base64decode/base64decode_vs110.vcxproj | 116 ++-- .../base64decode_vs110.vcxproj.filters | 4 +- .../base64decode/base64decode_vs120.vcxproj | 106 ++-- .../base64decode_vs120.vcxproj.filters | 4 +- .../base64decode_x64_vs100.vcxproj | 98 ++-- .../base64decode_x64_vs100.vcxproj.filters | 4 +- .../base64decode_x64_vs110.vcxproj | 116 ++-- .../base64decode_x64_vs110.vcxproj.filters | 4 +- .../base64decode_x64_vs120.vcxproj | 106 ++-- .../base64decode_x64_vs120.vcxproj.filters | 4 +- ...base64encode_WEC2013_vs110.vcxproj.filters | 4 +- .../base64encode/base64encode_vs100.vcxproj | 98 ++-- .../base64encode_vs100.vcxproj.filters | 4 +- .../base64encode/base64encode_vs110.vcxproj | 116 ++-- .../base64encode_vs110.vcxproj.filters | 4 +- .../base64encode/base64encode_vs120.vcxproj | 106 ++-- .../base64encode_vs120.vcxproj.filters | 4 +- .../base64encode_x64_vs100.vcxproj | 98 ++-- .../base64encode_x64_vs100.vcxproj.filters | 4 +- .../base64encode_x64_vs110.vcxproj | 116 ++-- .../base64encode_x64_vs110.vcxproj.filters | 4 +- .../base64encode_x64_vs120.vcxproj | 106 ++-- .../base64encode_x64_vs120.vcxproj.filters | 4 +- .../deflate_WEC2013_vs110.vcxproj.filters | 4 +- .../samples/deflate/deflate_vs100.vcxproj | 98 ++-- .../deflate/deflate_vs100.vcxproj.filters | 4 +- .../samples/deflate/deflate_vs110.vcxproj | 116 ++-- .../deflate/deflate_vs110.vcxproj.filters | 4 +- .../samples/deflate/deflate_vs120.vcxproj | 106 ++-- .../deflate/deflate_vs120.vcxproj.filters | 4 +- .../samples/deflate/deflate_x64_vs100.vcxproj | 98 ++-- .../deflate/deflate_x64_vs100.vcxproj.filters | 4 +- .../samples/deflate/deflate_x64_vs110.vcxproj | 116 ++-- .../deflate/deflate_x64_vs110.vcxproj.filters | 4 +- .../samples/deflate/deflate_x64_vs120.vcxproj | 106 ++-- .../deflate/deflate_x64_vs120.vcxproj.filters | 4 +- .../dir/dir_WEC2013_vs110.vcxproj.filters | 4 +- Foundation/samples/dir/dir_vs100.vcxproj | 98 ++-- .../samples/dir/dir_vs100.vcxproj.filters | 4 +- Foundation/samples/dir/dir_vs110.vcxproj | 116 ++-- .../samples/dir/dir_vs110.vcxproj.filters | 4 +- Foundation/samples/dir/dir_vs120.vcxproj | 106 ++-- .../samples/dir/dir_vs120.vcxproj.filters | 4 +- Foundation/samples/dir/dir_x64_vs100.vcxproj | 98 ++-- .../samples/dir/dir_x64_vs100.vcxproj.filters | 4 +- Foundation/samples/dir/dir_x64_vs110.vcxproj | 116 ++-- .../samples/dir/dir_x64_vs110.vcxproj.filters | 4 +- Foundation/samples/dir/dir_x64_vs120.vcxproj | 106 ++-- .../samples/dir/dir_x64_vs120.vcxproj.filters | 4 +- .../grep/grep_WEC2013_vs110.vcxproj.filters | 4 +- Foundation/samples/grep/grep_vs100.vcxproj | 98 ++-- .../samples/grep/grep_vs100.vcxproj.filters | 4 +- Foundation/samples/grep/grep_vs110.vcxproj | 116 ++-- .../samples/grep/grep_vs110.vcxproj.filters | 4 +- Foundation/samples/grep/grep_vs120.vcxproj | 106 ++-- .../samples/grep/grep_vs120.vcxproj.filters | 4 +- .../samples/grep/grep_x64_vs100.vcxproj | 98 ++-- .../grep/grep_x64_vs100.vcxproj.filters | 4 +- .../samples/grep/grep_x64_vs110.vcxproj | 116 ++-- .../grep/grep_x64_vs110.vcxproj.filters | 4 +- .../samples/grep/grep_x64_vs120.vcxproj | 106 ++-- .../grep/grep_x64_vs120.vcxproj.filters | 4 +- .../hmacmd5_WEC2013_vs110.vcxproj.filters | 4 +- .../samples/hmacmd5/hmacmd5_vs100.vcxproj | 98 ++-- .../hmacmd5/hmacmd5_vs100.vcxproj.filters | 4 +- .../samples/hmacmd5/hmacmd5_vs110.vcxproj | 116 ++-- .../hmacmd5/hmacmd5_vs110.vcxproj.filters | 4 +- .../samples/hmacmd5/hmacmd5_vs120.vcxproj | 106 ++-- .../hmacmd5/hmacmd5_vs120.vcxproj.filters | 4 +- .../samples/hmacmd5/hmacmd5_x64_vs100.vcxproj | 98 ++-- .../hmacmd5/hmacmd5_x64_vs100.vcxproj.filters | 4 +- .../samples/hmacmd5/hmacmd5_x64_vs110.vcxproj | 116 ++-- .../hmacmd5/hmacmd5_x64_vs110.vcxproj.filters | 4 +- .../samples/hmacmd5/hmacmd5_x64_vs120.vcxproj | 106 ++-- .../hmacmd5/hmacmd5_x64_vs120.vcxproj.filters | 4 +- .../inflate_WEC2013_vs110.vcxproj.filters | 4 +- .../samples/inflate/inflate_vs100.vcxproj | 98 ++-- .../inflate/inflate_vs100.vcxproj.filters | 4 +- .../samples/inflate/inflate_vs110.vcxproj | 116 ++-- .../inflate/inflate_vs110.vcxproj.filters | 4 +- .../samples/inflate/inflate_vs120.vcxproj | 106 ++-- .../inflate/inflate_vs120.vcxproj.filters | 4 +- .../samples/inflate/inflate_x64_vs100.vcxproj | 98 ++-- .../inflate/inflate_x64_vs100.vcxproj.filters | 4 +- .../samples/inflate/inflate_x64_vs110.vcxproj | 116 ++-- .../inflate/inflate_x64_vs110.vcxproj.filters | 4 +- .../samples/inflate/inflate_x64_vs120.vcxproj | 106 ++-- .../inflate/inflate_x64_vs120.vcxproj.filters | 4 +- .../md5/md5_WEC2013_vs110.vcxproj.filters | 4 +- Foundation/samples/md5/md5_vs100.vcxproj | 98 ++-- .../samples/md5/md5_vs100.vcxproj.filters | 4 +- Foundation/samples/md5/md5_vs110.vcxproj | 116 ++-- .../samples/md5/md5_vs110.vcxproj.filters | 4 +- Foundation/samples/md5/md5_vs120.vcxproj | 106 ++-- .../samples/md5/md5_vs120.vcxproj.filters | 4 +- Foundation/samples/md5/md5_x64_vs100.vcxproj | 98 ++-- .../samples/md5/md5_x64_vs100.vcxproj.filters | 4 +- Foundation/samples/md5/md5_x64_vs110.vcxproj | 116 ++-- .../samples/md5/md5_x64_vs110.vcxproj.filters | 4 +- Foundation/samples/md5/md5_x64_vs120.vcxproj | 106 ++-- .../samples/md5/md5_x64_vs120.vcxproj.filters | 4 +- Foundation/samples/samples_vs100.sln | 362 ++++++------- Foundation/samples/samples_vs120.sln | 2 +- Foundation/samples/samples_x64_vs120.sln | 2 +- .../uuidgen_WEC2013_vs110.vcxproj.filters | 4 +- .../samples/uuidgen/uuidgen_vs100.vcxproj | 98 ++-- .../uuidgen/uuidgen_vs100.vcxproj.filters | 4 +- .../samples/uuidgen/uuidgen_vs110.vcxproj | 116 ++-- .../uuidgen/uuidgen_vs110.vcxproj.filters | 4 +- .../samples/uuidgen/uuidgen_vs120.vcxproj | 106 ++-- .../uuidgen/uuidgen_vs120.vcxproj.filters | 4 +- .../samples/uuidgen/uuidgen_x64_vs100.vcxproj | 98 ++-- .../uuidgen/uuidgen_x64_vs100.vcxproj.filters | 4 +- .../samples/uuidgen/uuidgen_x64_vs110.vcxproj | 116 ++-- .../uuidgen/uuidgen_x64_vs110.vcxproj.filters | 4 +- .../samples/uuidgen/uuidgen_x64_vs120.vcxproj | 106 ++-- .../uuidgen/uuidgen_x64_vs120.vcxproj.filters | 4 +- JSON/JSON_WEC2013_vs110.vcxproj.filters | 4 +- JSON/JSON_vs100.vcxproj | 88 ++-- JSON/JSON_vs100.vcxproj.filters | 4 +- JSON/JSON_vs110.vcxproj | 111 ++-- JSON/JSON_vs110.vcxproj.filters | 4 +- JSON/JSON_vs120.sln | 44 +- JSON/JSON_vs120.vcxproj | 145 ++--- JSON/JSON_vs120.vcxproj.filters | 16 +- JSON/JSON_x64_vs100.vcxproj | 88 ++-- JSON/JSON_x64_vs100.vcxproj.filters | 4 +- JSON/JSON_x64_vs110.vcxproj | 110 ++-- JSON/JSON_x64_vs110.vcxproj.filters | 4 +- JSON/JSON_x64_vs120.sln | 44 +- JSON/JSON_x64_vs120.vcxproj | 144 ++--- JSON/JSON_x64_vs120.vcxproj.filters | 4 +- .../Benchmark_WEC2013_vs110.vcxproj.filters | 4 +- .../samples/Benchmark/Benchmark_vs100.vcxproj | 108 ++-- .../Benchmark/Benchmark_vs100.vcxproj.filters | 4 +- .../samples/Benchmark/Benchmark_vs110.vcxproj | 128 ++--- .../Benchmark/Benchmark_vs110.vcxproj.filters | 4 +- .../samples/Benchmark/Benchmark_vs120.vcxproj | 128 ++--- .../Benchmark/Benchmark_vs120.vcxproj.filters | 4 +- .../Benchmark/Benchmark_x64_vs100.vcxproj | 108 ++-- .../Benchmark_x64_vs100.vcxproj.filters | 4 +- .../Benchmark/Benchmark_x64_vs110.vcxproj | 128 ++--- .../Benchmark_x64_vs110.vcxproj.filters | 4 +- .../Benchmark/Benchmark_x64_vs120.vcxproj | 128 ++--- .../Benchmark_x64_vs120.vcxproj.filters | 4 +- JSON/samples/samples_vs120.sln | 4 +- JSON/samples/samples_x64_vs120.sln | 4 +- .../TestSuite_WEC2013_vs110.vcxproj.filters | 4 +- JSON/testsuite/TestSuite_vs100.vcxproj | 96 ++-- .../testsuite/TestSuite_vs100.vcxproj.filters | 4 +- JSON/testsuite/TestSuite_vs110.vcxproj | 116 ++-- .../testsuite/TestSuite_vs110.vcxproj.filters | 4 +- JSON/testsuite/TestSuite_vs120.vcxproj | 150 +++--- .../testsuite/TestSuite_vs120.vcxproj.filters | 6 +- JSON/testsuite/TestSuite_x64_vs100.vcxproj | 96 ++-- .../TestSuite_x64_vs100.vcxproj.filters | 4 +- JSON/testsuite/TestSuite_x64_vs110.vcxproj | 116 ++-- .../TestSuite_x64_vs110.vcxproj.filters | 4 +- JSON/testsuite/TestSuite_x64_vs120.vcxproj | 150 +++--- .../TestSuite_x64_vs120.vcxproj.filters | 6 +- MongoDB/MongoDB.progen | 2 +- MongoDB/MongoDB_vs100.vcxproj | 88 ++-- MongoDB/MongoDB_vs100.vcxproj.filters | 4 +- MongoDB/MongoDB_vs110.vcxproj | 111 ++-- MongoDB/MongoDB_vs110.vcxproj.filters | 4 +- MongoDB/MongoDB_vs120.sln | 44 +- MongoDB/MongoDB_vs120.vcxproj | 191 +++---- MongoDB/MongoDB_vs120.vcxproj.filters | 4 +- MongoDB/MongoDB_x64_vs100.vcxproj | 88 ++-- MongoDB/MongoDB_x64_vs100.vcxproj.filters | 4 +- MongoDB/MongoDB_x64_vs110.vcxproj | 110 ++-- MongoDB/MongoDB_x64_vs110.vcxproj.filters | 4 +- MongoDB/MongoDB_x64_vs120.sln | 44 +- MongoDB/MongoDB_x64_vs120.vcxproj | 190 +++---- MongoDB/MongoDB_x64_vs120.vcxproj.filters | 4 +- MongoDB/samples/SQLToMongo/SQLToMongo.progen | 2 +- .../SQLToMongo/SQLToMongo_vs100.vcxproj | 108 ++-- .../SQLToMongo_vs100.vcxproj.filters | 4 +- .../SQLToMongo/SQLToMongo_vs110.vcxproj | 128 ++--- .../SQLToMongo_vs110.vcxproj.filters | 4 +- .../SQLToMongo/SQLToMongo_vs120.vcxproj | 120 +++-- .../SQLToMongo_vs120.vcxproj.filters | 4 +- .../SQLToMongo/SQLToMongo_x64_vs100.vcxproj | 108 ++-- .../SQLToMongo_x64_vs100.vcxproj.filters | 4 +- .../SQLToMongo/SQLToMongo_x64_vs110.vcxproj | 128 ++--- .../SQLToMongo_x64_vs110.vcxproj.filters | 4 +- .../SQLToMongo/SQLToMongo_x64_vs120.vcxproj | 120 +++-- .../SQLToMongo_x64_vs120.vcxproj.filters | 4 +- MongoDB/samples/samples.progen | 2 +- MongoDB/samples/samples_vs100.sln | 44 +- MongoDB/samples/samples_vs110.sln | 38 +- MongoDB/samples/samples_vs120.sln | 40 +- MongoDB/samples/samples_x64_vs100.sln | 38 +- MongoDB/samples/samples_x64_vs110.sln | 38 +- MongoDB/samples/samples_x64_vs120.sln | 40 +- MongoDB/testsuite/TestSuite.progen | 2 +- MongoDB/testsuite/TestSuite_vs100.vcxproj | 96 ++-- .../testsuite/TestSuite_vs100.vcxproj.filters | 4 +- MongoDB/testsuite/TestSuite_vs110.vcxproj | 116 ++-- .../testsuite/TestSuite_vs110.vcxproj.filters | 4 +- MongoDB/testsuite/TestSuite_vs120.vcxproj | 150 +++--- .../testsuite/TestSuite_vs120.vcxproj.filters | 6 +- MongoDB/testsuite/TestSuite_x64_vs100.vcxproj | 96 ++-- .../TestSuite_x64_vs100.vcxproj.filters | 4 +- MongoDB/testsuite/TestSuite_x64_vs110.vcxproj | 116 ++-- .../TestSuite_x64_vs110.vcxproj.filters | 4 +- MongoDB/testsuite/TestSuite_x64_vs120.vcxproj | 150 +++--- .../TestSuite_x64_vs120.vcxproj.filters | 6 +- Net/Net_WEC2013_vs110.vcxproj.filters | 90 ++-- Net/Net_vs100.vcxproj | 446 ++++++++-------- Net/Net_vs100.vcxproj.filters | 192 +++---- Net/Net_vs110.vcxproj | 132 ++--- Net/Net_vs110.vcxproj.filters | 152 +++--- Net/Net_vs120.sln | 44 +- Net/Net_vs120.vcxproj | 496 +++++++++--------- Net/Net_vs120.vcxproj.filters | 152 +++--- Net/Net_x64_vs100.vcxproj | 440 ++++++++-------- Net/Net_x64_vs100.vcxproj.filters | 123 +++-- Net/Net_x64_vs110.vcxproj | 132 ++--- Net/Net_x64_vs110.vcxproj.filters | 154 +++--- Net/Net_x64_vs120.sln | 44 +- Net/Net_x64_vs120.vcxproj | 496 +++++++++--------- Net/Net_x64_vs120.vcxproj.filters | 154 +++--- .../EchoServer_WEC2013_vs110.vcxproj.filters | 4 +- .../EchoServer/EchoServer_vs100.vcxproj | 98 ++-- .../EchoServer_vs100.vcxproj.filters | 4 +- .../EchoServer/EchoServer_vs110.vcxproj | 116 ++-- .../EchoServer_vs110.vcxproj.filters | 4 +- .../EchoServer/EchoServer_vs120.vcxproj | 108 ++-- .../EchoServer_vs120.vcxproj.filters | 4 +- .../EchoServer/EchoServer_x64_vs100.vcxproj | 98 ++-- .../EchoServer_x64_vs100.vcxproj.filters | 4 +- .../EchoServer/EchoServer_x64_vs110.vcxproj | 116 ++-- .../EchoServer_x64_vs110.vcxproj.filters | 4 +- .../EchoServer/EchoServer_x64_vs120.vcxproj | 108 ++-- .../EchoServer_x64_vs120.vcxproj.filters | 4 +- ...TPFormServer_WEC2013_vs110.vcxproj.filters | 4 +- .../HTTPFormServer_vs100.vcxproj | 98 ++-- .../HTTPFormServer_vs100.vcxproj.filters | 4 +- .../HTTPFormServer_vs110.vcxproj | 116 ++-- .../HTTPFormServer_vs110.vcxproj.filters | 4 +- .../HTTPFormServer_vs120.vcxproj | 108 ++-- .../HTTPFormServer_vs120.vcxproj.filters | 4 +- .../HTTPFormServer_x64_vs100.vcxproj | 98 ++-- .../HTTPFormServer_x64_vs100.vcxproj.filters | 4 +- .../HTTPFormServer_x64_vs110.vcxproj | 116 ++-- .../HTTPFormServer_x64_vs110.vcxproj.filters | 4 +- .../HTTPFormServer_x64_vs120.vcxproj | 108 ++-- .../HTTPFormServer_x64_vs120.vcxproj.filters | 4 +- ...HTTPLoadTest_WEC2013_vs110.vcxproj.filters | 2 +- .../HTTPLoadTest/HTTPLoadTest_vs100.vcxproj | 98 ++-- .../HTTPLoadTest_vs100.vcxproj.filters | 2 +- .../HTTPLoadTest/HTTPLoadTest_vs110.vcxproj | 116 ++-- .../HTTPLoadTest_vs110.vcxproj.filters | 2 +- .../HTTPLoadTest/HTTPLoadTest_vs120.vcxproj | 106 ++-- .../HTTPLoadTest_vs120.vcxproj.filters | 2 +- .../HTTPLoadTest_x64_vs100.vcxproj | 98 ++-- .../HTTPLoadTest_x64_vs100.vcxproj.filters | 2 +- .../HTTPLoadTest_x64_vs110.vcxproj | 116 ++-- .../HTTPLoadTest_x64_vs110.vcxproj.filters | 2 +- .../HTTPLoadTest_x64_vs120.vcxproj | 106 ++-- .../HTTPLoadTest_x64_vs120.vcxproj.filters | 2 +- ...TPTimeServer_WEC2013_vs110.vcxproj.filters | 4 +- .../HTTPTimeServer_vs100.vcxproj | 98 ++-- .../HTTPTimeServer_vs100.vcxproj.filters | 4 +- .../HTTPTimeServer_vs110.vcxproj | 105 ++-- .../HTTPTimeServer_vs110.vcxproj.filters | 4 +- .../HTTPTimeServer_vs120.vcxproj | 107 ++-- .../HTTPTimeServer_vs120.vcxproj.filters | 4 +- .../HTTPTimeServer_x64_vs100.vcxproj | 98 ++-- .../HTTPTimeServer_x64_vs100.vcxproj.filters | 4 +- .../HTTPTimeServer_x64_vs110.vcxproj | 116 ++-- .../HTTPTimeServer_x64_vs110.vcxproj.filters | 4 +- .../HTTPTimeServer_x64_vs120.vcxproj | 108 ++-- .../HTTPTimeServer_x64_vs120.vcxproj.filters | 4 +- .../Mail/Mail_WEC2013_vs110.vcxproj.filters | 2 +- Net/samples/Mail/Mail_vs100.vcxproj | 98 ++-- Net/samples/Mail/Mail_vs100.vcxproj.filters | 2 +- Net/samples/Mail/Mail_vs110.vcxproj | 116 ++-- Net/samples/Mail/Mail_vs110.vcxproj.filters | 2 +- Net/samples/Mail/Mail_vs120.vcxproj | 108 ++-- Net/samples/Mail/Mail_vs120.vcxproj.filters | 2 +- Net/samples/Mail/Mail_x64_vs100.vcxproj | 98 ++-- .../Mail/Mail_x64_vs100.vcxproj.filters | 2 +- Net/samples/Mail/Mail_x64_vs110.vcxproj | 116 ++-- .../Mail/Mail_x64_vs110.vcxproj.filters | 2 +- Net/samples/Mail/Mail_x64_vs120.vcxproj | 108 ++-- .../Mail/Mail_x64_vs120.vcxproj.filters | 2 +- .../Ping/Ping_WEC2013_vs110.vcxproj.filters | 4 +- Net/samples/Ping/Ping_vs100.vcxproj | 98 ++-- Net/samples/Ping/Ping_vs100.vcxproj.filters | 4 +- Net/samples/Ping/Ping_vs110.vcxproj | 116 ++-- Net/samples/Ping/Ping_vs110.vcxproj.filters | 4 +- Net/samples/Ping/Ping_vs120.vcxproj | 108 ++-- Net/samples/Ping/Ping_vs120.vcxproj.filters | 4 +- Net/samples/Ping/Ping_x64_vs100.vcxproj | 98 ++-- .../Ping/Ping_x64_vs100.vcxproj.filters | 4 +- Net/samples/Ping/Ping_x64_vs110.vcxproj | 116 ++-- .../Ping/Ping_x64_vs110.vcxproj.filters | 4 +- Net/samples/Ping/Ping_x64_vs120.vcxproj | 108 ++-- .../Ping/Ping_x64_vs120.vcxproj.filters | 4 +- .../SMTPLogger_WEC2013_vs110.vcxproj.filters | 2 +- .../SMTPLogger/SMTPLogger_vs100.vcxproj | 96 ++-- .../SMTPLogger_vs100.vcxproj.filters | 2 +- .../SMTPLogger/SMTPLogger_vs110.vcxproj | 116 ++-- .../SMTPLogger_vs110.vcxproj.filters | 2 +- .../SMTPLogger/SMTPLogger_vs120.vcxproj | 106 ++-- .../SMTPLogger_vs120.vcxproj.filters | 2 +- .../SMTPLogger/SMTPLogger_x64_vs100.vcxproj | 96 ++-- .../SMTPLogger_x64_vs100.vcxproj.filters | 2 +- .../SMTPLogger/SMTPLogger_x64_vs110.vcxproj | 116 ++-- .../SMTPLogger_x64_vs110.vcxproj.filters | 2 +- .../SMTPLogger/SMTPLogger_x64_vs120.vcxproj | 106 ++-- .../SMTPLogger_x64_vs120.vcxproj.filters | 2 +- .../TimeServer_WEC2013_vs110.vcxproj.filters | 4 +- .../TimeServer/TimeServer_vs100.vcxproj | 98 ++-- .../TimeServer_vs100.vcxproj.filters | 4 +- .../TimeServer/TimeServer_vs110.vcxproj | 116 ++-- .../TimeServer_vs110.vcxproj.filters | 4 +- .../TimeServer/TimeServer_vs120.vcxproj | 108 ++-- .../TimeServer_vs120.vcxproj.filters | 4 +- .../TimeServer/TimeServer_x64_vs100.vcxproj | 98 ++-- .../TimeServer_x64_vs100.vcxproj.filters | 4 +- .../TimeServer/TimeServer_x64_vs110.vcxproj | 116 ++-- .../TimeServer_x64_vs110.vcxproj.filters | 4 +- .../TimeServer/TimeServer_x64_vs120.vcxproj | 108 ++-- .../TimeServer_x64_vs120.vcxproj.filters | 4 +- ...witterClient_WEC2013_vs110.vcxproj.filters | 4 +- .../TwitterClient/TwitterClient_vs100.vcxproj | 108 ++-- .../TwitterClient_vs100.vcxproj.filters | 4 +- .../TwitterClient/TwitterClient_vs110.vcxproj | 128 ++--- .../TwitterClient_vs110.vcxproj.filters | 4 +- .../TwitterClient/TwitterClient_vs120.vcxproj | 122 +++-- .../TwitterClient_vs120.vcxproj.filters | 4 +- .../TwitterClient_x64_vs100.vcxproj | 108 ++-- .../TwitterClient_x64_vs100.vcxproj.filters | 4 +- .../TwitterClient_x64_vs110.vcxproj | 128 ++--- .../TwitterClient_x64_vs110.vcxproj.filters | 4 +- .../TwitterClient_x64_vs120.vcxproj | 122 +++-- .../TwitterClient_x64_vs120.vcxproj.filters | 4 +- ...SocketServer_WEC2013_vs110.vcxproj.filters | 2 +- .../WebSocketServer_vs100.vcxproj | 96 ++-- .../WebSocketServer_vs100.vcxproj.filters | 2 +- .../WebSocketServer_vs110.vcxproj | 116 ++-- .../WebSocketServer_vs110.vcxproj.filters | 2 +- .../WebSocketServer_vs120.vcxproj | 106 ++-- .../WebSocketServer_vs120.vcxproj.filters | 2 +- .../WebSocketServer_x64_vs100.vcxproj | 96 ++-- .../WebSocketServer_x64_vs100.vcxproj.filters | 2 +- .../WebSocketServer_x64_vs110.vcxproj | 116 ++-- .../WebSocketServer_x64_vs110.vcxproj.filters | 2 +- .../WebSocketServer_x64_vs120.vcxproj | 106 ++-- .../WebSocketServer_x64_vs120.vcxproj.filters | 2 +- .../dict/dict_WEC2013_vs110.vcxproj.filters | 2 +- Net/samples/dict/dict_vs100.vcxproj | 98 ++-- Net/samples/dict/dict_vs100.vcxproj.filters | 2 +- Net/samples/dict/dict_vs110.vcxproj | 116 ++-- Net/samples/dict/dict_vs110.vcxproj.filters | 2 +- Net/samples/dict/dict_vs120.vcxproj | 106 ++-- Net/samples/dict/dict_vs120.vcxproj.filters | 2 +- Net/samples/dict/dict_x64_vs100.vcxproj | 98 ++-- .../dict/dict_x64_vs100.vcxproj.filters | 2 +- Net/samples/dict/dict_x64_vs110.vcxproj | 116 ++-- .../dict/dict_x64_vs110.vcxproj.filters | 2 +- Net/samples/dict/dict_x64_vs120.vcxproj | 106 ++-- .../dict/dict_x64_vs120.vcxproj.filters | 2 +- .../download_WEC2013_vs110.vcxproj.filters | 2 +- Net/samples/download/download_vs100.vcxproj | 98 ++-- .../download/download_vs100.vcxproj.filters | 2 +- Net/samples/download/download_vs110.vcxproj | 116 ++-- .../download/download_vs110.vcxproj.filters | 2 +- Net/samples/download/download_vs120.vcxproj | 106 ++-- .../download/download_vs120.vcxproj.filters | 2 +- .../download/download_x64_vs100.vcxproj | 98 ++-- .../download_x64_vs100.vcxproj.filters | 2 +- .../download/download_x64_vs110.vcxproj | 116 ++-- .../download_x64_vs110.vcxproj.filters | 2 +- .../download/download_x64_vs120.vcxproj | 106 ++-- .../download_x64_vs120.vcxproj.filters | 2 +- .../httpget_WEC2013_vs110.vcxproj.filters | 2 +- Net/samples/httpget/httpget_vs100.vcxproj | 98 ++-- .../httpget/httpget_vs100.vcxproj.filters | 2 +- Net/samples/httpget/httpget_vs110.vcxproj | 116 ++-- .../httpget/httpget_vs110.vcxproj.filters | 2 +- Net/samples/httpget/httpget_vs120.vcxproj | 106 ++-- .../httpget/httpget_vs120.vcxproj.filters | 2 +- Net/samples/httpget/httpget_x64_vs100.vcxproj | 98 ++-- .../httpget/httpget_x64_vs100.vcxproj.filters | 2 +- Net/samples/httpget/httpget_x64_vs110.vcxproj | 116 ++-- .../httpget/httpget_x64_vs110.vcxproj.filters | 2 +- Net/samples/httpget/httpget_x64_vs120.vcxproj | 106 ++-- .../httpget/httpget_x64_vs120.vcxproj.filters | 2 +- .../ifconfig_WEC2013_vs110.vcxproj.filters | 2 +- Net/samples/ifconfig/ifconfig_vs100.vcxproj | 70 +-- .../ifconfig/ifconfig_vs100.vcxproj.filters | 2 +- Net/samples/ifconfig/ifconfig_vs110.vcxproj | 130 ++--- .../ifconfig/ifconfig_vs110.vcxproj.filters | 2 +- Net/samples/ifconfig/ifconfig_vs120.vcxproj | 142 ++--- .../ifconfig/ifconfig_vs120.vcxproj.filters | 2 +- .../ifconfig/ifconfig_x64_vs100.vcxproj | 112 ++-- .../ifconfig_x64_vs100.vcxproj.filters | 2 +- .../ifconfig/ifconfig_x64_vs110.vcxproj | 130 ++--- .../ifconfig_x64_vs110.vcxproj.filters | 2 +- .../ifconfig/ifconfig_x64_vs120.vcxproj | 142 ++--- .../ifconfig_x64_vs120.vcxproj.filters | 2 +- Net/samples/samples_vs100.sln | 254 +++++---- Net/samples/samples_vs120.sln | 2 +- Net/samples/samples_x64_vs120.sln | 2 +- .../TestSuite_WEC2013_vs110.vcxproj.filters | 100 ++-- Net/testsuite/TestSuite_vs100.vcxproj | 276 +++++----- Net/testsuite/TestSuite_vs100.vcxproj.filters | 136 ++--- Net/testsuite/TestSuite_vs110.vcxproj | 124 ++--- Net/testsuite/TestSuite_vs110.vcxproj.filters | 148 +++--- Net/testsuite/TestSuite_vs120.vcxproj | 370 ++++++------- Net/testsuite/TestSuite_vs120.vcxproj.filters | 154 +++--- Net/testsuite/TestSuite_x64_vs100.vcxproj | 104 ++-- .../TestSuite_x64_vs100.vcxproj.filters | 115 ++-- Net/testsuite/TestSuite_x64_vs110.vcxproj | 332 ++++++------ .../TestSuite_x64_vs110.vcxproj.filters | 152 +++--- Net/testsuite/TestSuite_x64_vs120.vcxproj | 370 ++++++------- .../TestSuite_x64_vs120.vcxproj.filters | 158 +++--- NetSSL_OpenSSL/NetSSL_OpenSSL_vs100.vcxproj | 178 +++---- .../NetSSL_OpenSSL_vs100.vcxproj.filters | 24 +- NetSSL_OpenSSL/NetSSL_OpenSSL_vs110.vcxproj | 116 ++-- .../NetSSL_OpenSSL_vs110.vcxproj.filters | 24 +- NetSSL_OpenSSL/NetSSL_OpenSSL_vs120.sln | 44 +- NetSSL_OpenSSL/NetSSL_OpenSSL_vs120.vcxproj | 226 ++++---- .../NetSSL_OpenSSL_vs120.vcxproj.filters | 24 +- .../NetSSL_OpenSSL_x64_vs100.vcxproj | 96 ++-- .../NetSSL_OpenSSL_x64_vs100.vcxproj.filters | 24 +- .../NetSSL_OpenSSL_x64_vs110.vcxproj | 116 ++-- .../NetSSL_OpenSSL_x64_vs110.vcxproj.filters | 24 +- NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs120.sln | 44 +- .../NetSSL_OpenSSL_x64_vs120.vcxproj | 226 ++++---- .../NetSSL_OpenSSL_x64_vs120.vcxproj.filters | 24 +- .../HTTPSTimeServer_vs100.vcxproj | 96 ++-- .../HTTPSTimeServer_vs100.vcxproj.filters | 4 +- .../HTTPSTimeServer_vs110.vcxproj | 116 ++-- .../HTTPSTimeServer_vs110.vcxproj.filters | 4 +- .../HTTPSTimeServer_vs120.vcxproj | 128 ++--- .../HTTPSTimeServer_vs120.vcxproj.filters | 4 +- .../HTTPSTimeServer_x64_vs100.vcxproj | 96 ++-- .../HTTPSTimeServer_x64_vs100.vcxproj.filters | 4 +- .../HTTPSTimeServer_x64_vs110.vcxproj | 116 ++-- .../HTTPSTimeServer_x64_vs110.vcxproj.filters | 4 +- .../HTTPSTimeServer_x64_vs120.vcxproj | 128 ++--- .../HTTPSTimeServer_x64_vs120.vcxproj.filters | 4 +- .../samples/Mail/Mail_vs100.vcxproj | 96 ++-- .../samples/Mail/Mail_vs100.vcxproj.filters | 2 +- .../samples/Mail/Mail_vs110.vcxproj | 116 ++-- .../samples/Mail/Mail_vs110.vcxproj.filters | 2 +- .../samples/Mail/Mail_vs120.vcxproj | 126 ++--- .../samples/Mail/Mail_vs120.vcxproj.filters | 2 +- .../samples/Mail/Mail_x64_vs100.vcxproj | 96 ++-- .../Mail/Mail_x64_vs100.vcxproj.filters | 2 +- .../samples/Mail/Mail_x64_vs110.vcxproj | 116 ++-- .../Mail/Mail_x64_vs110.vcxproj.filters | 2 +- .../samples/Mail/Mail_x64_vs120.vcxproj | 128 ++--- .../Mail/Mail_x64_vs120.vcxproj.filters | 2 +- .../samples/download/download_vs100.vcxproj | 96 ++-- .../download/download_vs100.vcxproj.filters | 2 +- .../samples/download/download_vs110.vcxproj | 116 ++-- .../download/download_vs110.vcxproj.filters | 2 +- .../samples/download/download_vs120.vcxproj | 126 ++--- .../download/download_vs120.vcxproj.filters | 2 +- .../download/download_x64_vs100.vcxproj | 96 ++-- .../download_x64_vs100.vcxproj.filters | 2 +- .../download/download_x64_vs110.vcxproj | 116 ++-- .../download_x64_vs110.vcxproj.filters | 2 +- .../download/download_x64_vs120.vcxproj | 126 ++--- .../download_x64_vs120.vcxproj.filters | 2 +- NetSSL_OpenSSL/samples/samples_vs120.sln | 2 +- NetSSL_OpenSSL/samples/samples_x64_vs120.sln | 2 +- .../testsuite/TestSuite_vs100.vcxproj | 96 ++-- .../testsuite/TestSuite_vs100.vcxproj.filters | 34 +- .../testsuite/TestSuite_vs110.vcxproj | 116 ++-- .../testsuite/TestSuite_vs110.vcxproj.filters | 34 +- .../testsuite/TestSuite_vs120.vcxproj | 194 ++++--- .../testsuite/TestSuite_vs120.vcxproj.filters | 40 +- .../testsuite/TestSuite_x64_vs100.vcxproj | 96 ++-- .../TestSuite_x64_vs100.vcxproj.filters | 34 +- .../testsuite/TestSuite_x64_vs110.vcxproj | 116 ++-- .../TestSuite_x64_vs110.vcxproj.filters | 34 +- .../testsuite/TestSuite_x64_vs120.vcxproj | 194 ++++--- .../TestSuite_x64_vs120.vcxproj.filters | 40 +- PDF/PDF_vs100.vcxproj | 88 ++-- PDF/PDF_vs100.vcxproj.filters | 24 +- PDF/PDF_vs110.vcxproj | 111 ++-- PDF/PDF_vs110.vcxproj.filters | 24 +- PDF/PDF_vs120.sln | 44 +- PDF/PDF_vs120.vcxproj | 377 ++++++------- PDF/PDF_vs120.vcxproj.filters | 24 +- PDF/PDF_x64_vs100.vcxproj | 88 ++-- PDF/PDF_x64_vs100.vcxproj.filters | 24 +- PDF/PDF_x64_vs110.vcxproj | 110 ++-- PDF/PDF_x64_vs110.vcxproj.filters | 24 +- PDF/PDF_x64_vs120.sln | 44 +- PDF/PDF_x64_vs120.vcxproj | 376 ++++++------- PDF/PDF_x64_vs120.vcxproj.filters | 24 +- PDF/samples/Image/Image_vs100.vcxproj | 108 ++-- PDF/samples/Image/Image_vs100.vcxproj.filters | 4 +- PDF/samples/Image/Image_vs110.vcxproj | 130 ++--- PDF/samples/Image/Image_vs110.vcxproj.filters | 4 +- PDF/samples/Image/Image_vs120.vcxproj | 120 +++-- PDF/samples/Image/Image_vs120.vcxproj.filters | 4 +- PDF/samples/Image/Image_x64_vs100.vcxproj | 108 ++-- .../Image/Image_x64_vs100.vcxproj.filters | 4 +- PDF/samples/Image/Image_x64_vs110.vcxproj | 130 ++--- .../Image/Image_x64_vs110.vcxproj.filters | 4 +- PDF/samples/Image/Image_x64_vs120.vcxproj | 120 +++-- .../Image/Image_x64_vs120.vcxproj.filters | 4 +- PDF/samples/Text/Text_vs100.vcxproj | 108 ++-- PDF/samples/Text/Text_vs100.vcxproj.filters | 4 +- PDF/samples/Text/Text_vs110.vcxproj | 130 ++--- PDF/samples/Text/Text_vs110.vcxproj.filters | 4 +- PDF/samples/Text/Text_vs120.vcxproj | 120 +++-- PDF/samples/Text/Text_vs120.vcxproj.filters | 4 +- PDF/samples/Text/Text_x64_vs100.vcxproj | 108 ++-- .../Text/Text_x64_vs100.vcxproj.filters | 4 +- PDF/samples/Text/Text_x64_vs110.vcxproj | 130 ++--- .../Text/Text_x64_vs110.vcxproj.filters | 4 +- PDF/samples/Text/Text_x64_vs120.vcxproj | 120 +++-- .../Text/Text_x64_vs120.vcxproj.filters | 4 +- PDF/samples/samples_vs120.sln | 2 +- PDF/samples/samples_x64_vs120.sln | 2 +- PDF/testsuite/TestSuite_vs100.vcxproj | 96 ++-- PDF/testsuite/TestSuite_vs100.vcxproj.filters | 16 +- PDF/testsuite/TestSuite_vs110.vcxproj | 116 ++-- PDF/testsuite/TestSuite_vs110.vcxproj.filters | 16 +- PDF/testsuite/TestSuite_vs120.vcxproj | 150 +++--- PDF/testsuite/TestSuite_vs120.vcxproj.filters | 18 +- PDF/testsuite/TestSuite_x64_vs100.vcxproj | 96 ++-- .../TestSuite_x64_vs100.vcxproj.filters | 16 +- PDF/testsuite/TestSuite_x64_vs110.vcxproj | 116 ++-- .../TestSuite_x64_vs110.vcxproj.filters | 16 +- PDF/testsuite/TestSuite_x64_vs120.vcxproj | 150 +++--- .../TestSuite_x64_vs120.vcxproj.filters | 18 +- .../File2Page/File2Page_vs100.vcxproj | 98 ++-- .../File2Page/File2Page_vs100.vcxproj.filters | 4 +- .../File2Page/File2Page_vs110.vcxproj | 116 ++-- .../File2Page/File2Page_vs110.vcxproj.filters | 4 +- PageCompiler/File2Page/File2Page_vs120.sln | 2 +- .../File2Page/File2Page_vs120.vcxproj | 106 ++-- .../File2Page/File2Page_vs120.vcxproj.filters | 4 +- .../File2Page/File2Page_x64_vs100.vcxproj | 98 ++-- .../File2Page_x64_vs100.vcxproj.filters | 4 +- .../File2Page/File2Page_x64_vs110.vcxproj | 116 ++-- .../File2Page_x64_vs110.vcxproj.filters | 4 +- .../File2Page/File2Page_x64_vs120.sln | 2 +- .../File2Page/File2Page_x64_vs120.vcxproj | 106 ++-- .../File2Page_x64_vs120.vcxproj.filters | 4 +- PageCompiler/PageCompiler_vs100.vcxproj | 98 ++-- .../PageCompiler_vs100.vcxproj.filters | 6 +- PageCompiler/PageCompiler_vs110.vcxproj | 116 ++-- .../PageCompiler_vs110.vcxproj.filters | 6 +- PageCompiler/PageCompiler_vs120.sln | 26 +- PageCompiler/PageCompiler_vs120.vcxproj | 128 ++--- .../PageCompiler_vs120.vcxproj.filters | 6 +- PageCompiler/PageCompiler_x64_vs100.vcxproj | 98 ++-- .../PageCompiler_x64_vs100.vcxproj.filters | 6 +- PageCompiler/PageCompiler_x64_vs110.vcxproj | 116 ++-- .../PageCompiler_x64_vs110.vcxproj.filters | 6 +- PageCompiler/PageCompiler_x64_vs120.sln | 26 +- PageCompiler/PageCompiler_x64_vs120.vcxproj | 128 ++--- .../PageCompiler_x64_vs120.vcxproj.filters | 6 +- .../HTTPTimeServer/HTTPTimeServer.progen | 2 +- .../HTTPTimeServer_vs100.vcxproj | 98 ++-- .../HTTPTimeServer_vs100.vcxproj.filters | 6 +- .../HTTPTimeServer_vs110.vcxproj | 116 ++-- .../HTTPTimeServer_vs110.vcxproj.filters | 6 +- .../HTTPTimeServer_vs120.vcxproj | 112 ++-- .../HTTPTimeServer_vs120.vcxproj.filters | 6 +- .../HTTPTimeServer_x64_vs100.vcxproj | 98 ++-- .../HTTPTimeServer_x64_vs100.vcxproj.filters | 6 +- .../HTTPTimeServer_x64_vs110.vcxproj | 116 ++-- .../HTTPTimeServer_x64_vs110.vcxproj.filters | 6 +- .../HTTPTimeServer_x64_vs120.vcxproj | 112 ++-- .../HTTPTimeServer_x64_vs120.vcxproj.filters | 6 +- PageCompiler/samples/samples.progen | 2 +- PageCompiler/samples/samples_vs120.sln | 2 +- PageCompiler/samples/samples_x64_vs120.sln | 2 +- PocoDoc/PocoDoc_vs100.vcxproj | 96 ++-- PocoDoc/PocoDoc_vs100.vcxproj.filters | 12 +- PocoDoc/PocoDoc_vs110.vcxproj | 116 ++-- PocoDoc/PocoDoc_vs110.vcxproj.filters | 12 +- PocoDoc/PocoDoc_vs120.sln | 26 +- PocoDoc/PocoDoc_vs120.vcxproj | 110 ++-- PocoDoc/PocoDoc_vs120.vcxproj.filters | 12 +- PocoDoc/PocoDoc_x64_vs100.vcxproj | 96 ++-- PocoDoc/PocoDoc_x64_vs100.vcxproj.filters | 12 +- PocoDoc/PocoDoc_x64_vs110.vcxproj | 116 ++-- PocoDoc/PocoDoc_x64_vs110.vcxproj.filters | 12 +- PocoDoc/PocoDoc_x64_vs120.sln | 26 +- PocoDoc/PocoDoc_x64_vs120.vcxproj | 110 ++-- PocoDoc/PocoDoc_x64_vs120.vcxproj.filters | 12 +- ProGen/ProGen_vs100.vcxproj | 96 ++-- ProGen/ProGen_vs100.vcxproj.filters | 6 +- ProGen/ProGen_vs110.vcxproj | 116 ++-- ProGen/ProGen_vs110.vcxproj.filters | 6 +- ProGen/ProGen_vs120.sln | 26 +- ProGen/ProGen_vs120.vcxproj | 112 ++-- ProGen/ProGen_vs120.vcxproj.filters | 6 +- ProGen/ProGen_x64_vs100.vcxproj | 96 ++-- ProGen/ProGen_x64_vs100.vcxproj.filters | 6 +- ProGen/ProGen_x64_vs110.vcxproj | 116 ++-- ProGen/ProGen_x64_vs110.vcxproj.filters | 6 +- ProGen/ProGen_x64_vs120.sln | 26 +- ProGen/ProGen_x64_vs120.vcxproj | 112 ++-- ProGen/ProGen_x64_vs120.vcxproj.filters | 6 +- SevenZip/SevenZip_WEC2013_vs110.vcxproj | 294 ++++++++++- .../SevenZip_WEC2013_vs110.vcxproj.filters | 18 +- SevenZip/SevenZip_vs100.vcxproj.filters | 18 +- SevenZip/SevenZip_vs110.vcxproj | 6 - SevenZip/SevenZip_vs110.vcxproj.filters | 18 +- SevenZip/SevenZip_vs120.vcxproj | 10 +- SevenZip/SevenZip_vs120.vcxproj.filters | 18 +- SevenZip/SevenZip_x64_vs100.vcxproj.filters | 18 +- SevenZip/SevenZip_x64_vs110.vcxproj | 6 - SevenZip/SevenZip_x64_vs110.vcxproj.filters | 18 +- SevenZip/SevenZip_x64_vs120.vcxproj | 10 +- SevenZip/SevenZip_x64_vs120.vcxproj.filters | 18 +- .../un7zip/un7zip_WEC2013_vs110.vcxproj | 268 +++++++++- .../un7zip_WEC2013_vs110.vcxproj.filters | 4 +- .../un7zip/un7zip_vs100.vcxproj.filters | 4 +- SevenZip/samples/un7zip/un7zip_vs110.vcxproj | 6 - .../un7zip/un7zip_vs110.vcxproj.filters | 4 +- SevenZip/samples/un7zip/un7zip_vs120.vcxproj | 10 +- .../un7zip/un7zip_vs120.vcxproj.filters | 4 +- .../un7zip/un7zip_x64_vs100.vcxproj.filters | 4 +- .../samples/un7zip/un7zip_x64_vs110.vcxproj | 6 - .../un7zip/un7zip_x64_vs110.vcxproj.filters | 4 +- .../samples/un7zip/un7zip_x64_vs120.vcxproj | 10 +- .../un7zip/un7zip_x64_vs120.vcxproj.filters | 4 +- Util/Util_WEC2013_vs110.vcxproj.filters | 36 +- Util/Util_vs100.vcxproj | 100 ++-- Util/Util_vs100.vcxproj.filters | 36 +- Util/Util_vs110.vcxproj | 123 ++--- Util/Util_vs110.vcxproj.filters | 36 +- Util/Util_vs120.sln | 44 +- Util/Util_vs120.vcxproj | 223 ++++---- Util/Util_vs120.vcxproj.filters | 36 +- Util/Util_x64_vs100.vcxproj | 100 ++-- Util/Util_x64_vs100.vcxproj.filters | 36 +- Util/Util_x64_vs110.vcxproj | 122 ++--- Util/Util_x64_vs110.vcxproj.filters | 36 +- Util/Util_x64_vs120.sln | 44 +- Util/Util_x64_vs120.vcxproj | 222 ++++---- Util/Util_x64_vs120.vcxproj.filters | 36 +- .../SampleApp_WEC2013_vs110.vcxproj.filters | 4 +- .../samples/SampleApp/SampleApp_vs100.vcxproj | 98 ++-- .../SampleApp/SampleApp_vs100.vcxproj.filters | 4 +- .../samples/SampleApp/SampleApp_vs110.vcxproj | 116 ++-- .../SampleApp/SampleApp_vs110.vcxproj.filters | 4 +- .../samples/SampleApp/SampleApp_vs120.vcxproj | 108 ++-- .../SampleApp/SampleApp_vs120.vcxproj.filters | 4 +- .../SampleApp/SampleApp_x64_vs100.vcxproj | 98 ++-- .../SampleApp_x64_vs100.vcxproj.filters | 4 +- .../SampleApp/SampleApp_x64_vs110.vcxproj | 116 ++-- .../SampleApp_x64_vs110.vcxproj.filters | 4 +- .../SampleApp/SampleApp_x64_vs120.vcxproj | 108 ++-- .../SampleApp_x64_vs120.vcxproj.filters | 4 +- ...SampleServer_WEC2013_vs110.vcxproj.filters | 4 +- .../SampleServer/SampleServer_vs100.vcxproj | 98 ++-- .../SampleServer_vs100.vcxproj.filters | 4 +- .../SampleServer/SampleServer_vs110.vcxproj | 116 ++-- .../SampleServer_vs110.vcxproj.filters | 4 +- .../SampleServer/SampleServer_vs120.vcxproj | 106 ++-- .../SampleServer_vs120.vcxproj.filters | 4 +- .../SampleServer_x64_vs100.vcxproj | 98 ++-- .../SampleServer_x64_vs100.vcxproj.filters | 4 +- .../SampleServer_x64_vs110.vcxproj | 116 ++-- .../SampleServer_x64_vs110.vcxproj.filters | 4 +- .../SampleServer_x64_vs120.vcxproj | 106 ++-- .../SampleServer_x64_vs120.vcxproj.filters | 4 +- .../Units/Units_WEC2013_vs110.vcxproj.filters | 4 +- Util/samples/Units/Units_vs100.vcxproj | 96 ++-- .../samples/Units/Units_vs100.vcxproj.filters | 4 +- Util/samples/Units/Units_vs110.vcxproj | 118 +++-- .../samples/Units/Units_vs110.vcxproj.filters | 4 +- Util/samples/Units/Units_vs120.vcxproj | 108 ++-- .../samples/Units/Units_vs120.vcxproj.filters | 4 +- Util/samples/Units/Units_x64_vs100.vcxproj | 96 ++-- .../Units/Units_x64_vs100.vcxproj.filters | 4 +- Util/samples/Units/Units_x64_vs110.vcxproj | 118 +++-- .../Units/Units_x64_vs110.vcxproj.filters | 4 +- Util/samples/Units/Units_x64_vs120.vcxproj | 108 ++-- .../Units/Units_x64_vs120.vcxproj.filters | 4 +- .../pkill/pkill_WEC2013_vs110.vcxproj.filters | 2 +- Util/samples/pkill/pkill_vs100.vcxproj | 98 ++-- .../samples/pkill/pkill_vs100.vcxproj.filters | 2 +- Util/samples/pkill/pkill_vs110.vcxproj | 116 ++-- .../samples/pkill/pkill_vs110.vcxproj.filters | 2 +- Util/samples/pkill/pkill_vs120.vcxproj | 106 ++-- .../samples/pkill/pkill_vs120.vcxproj.filters | 2 +- Util/samples/pkill/pkill_x64_vs100.vcxproj | 98 ++-- .../pkill/pkill_x64_vs100.vcxproj.filters | 2 +- Util/samples/pkill/pkill_x64_vs110.vcxproj | 116 ++-- .../pkill/pkill_x64_vs110.vcxproj.filters | 2 +- Util/samples/pkill/pkill_x64_vs120.vcxproj | 106 ++-- .../pkill/pkill_x64_vs120.vcxproj.filters | 2 +- Util/samples/samples_vs120.sln | 2 +- Util/samples/samples_x64_vs120.sln | 2 +- .../TestSuite_WEC2013_vs110.vcxproj.filters | 40 +- Util/testsuite/TestSuite_vs100.vcxproj | 96 ++-- .../testsuite/TestSuite_vs100.vcxproj.filters | 40 +- Util/testsuite/TestSuite_vs110.vcxproj | 116 ++-- .../testsuite/TestSuite_vs110.vcxproj.filters | 40 +- Util/testsuite/TestSuite_vs120.vcxproj | 242 ++++----- .../testsuite/TestSuite_vs120.vcxproj.filters | 46 +- Util/testsuite/TestSuite_x64_vs100.vcxproj | 96 ++-- .../TestSuite_x64_vs100.vcxproj.filters | 40 +- Util/testsuite/TestSuite_x64_vs110.vcxproj | 116 ++-- .../TestSuite_x64_vs110.vcxproj.filters | 40 +- Util/testsuite/TestSuite_x64_vs120.vcxproj | 242 ++++----- .../TestSuite_x64_vs120.vcxproj.filters | 46 +- XML/XML_WEC2013_vs110.vcxproj.filters | 24 +- XML/XML_vs100.vcxproj | 120 ++--- XML/XML_vs100.vcxproj.filters | 24 +- XML/XML_vs110.vcxproj | 142 ++--- XML/XML_vs110.vcxproj.filters | 24 +- XML/XML_vs120.sln | 44 +- XML/XML_vs120.vcxproj | 412 ++++++++------- XML/XML_vs120.vcxproj.filters | 24 +- XML/XML_x64_vs100.vcxproj | 120 ++--- XML/XML_x64_vs100.vcxproj.filters | 24 +- XML/XML_x64_vs110.vcxproj | 141 ++--- XML/XML_x64_vs110.vcxproj.filters | 24 +- XML/XML_x64_vs120.sln | 44 +- XML/XML_x64_vs120.vcxproj | 411 ++++++++------- XML/XML_x64_vs120.vcxproj.filters | 24 +- .../DOMParser_WEC2013_vs110.vcxproj.filters | 4 +- XML/samples/DOMParser/DOMParser_vs100.vcxproj | 98 ++-- .../DOMParser/DOMParser_vs100.vcxproj.filters | 4 +- XML/samples/DOMParser/DOMParser_vs110.vcxproj | 116 ++-- .../DOMParser/DOMParser_vs110.vcxproj.filters | 4 +- XML/samples/DOMParser/DOMParser_vs120.vcxproj | 106 ++-- .../DOMParser/DOMParser_vs120.vcxproj.filters | 4 +- .../DOMParser/DOMParser_x64_vs100.vcxproj | 98 ++-- .../DOMParser_x64_vs100.vcxproj.filters | 4 +- .../DOMParser/DOMParser_x64_vs110.vcxproj | 116 ++-- .../DOMParser_x64_vs110.vcxproj.filters | 4 +- .../DOMParser/DOMParser_x64_vs120.vcxproj | 106 ++-- .../DOMParser_x64_vs120.vcxproj.filters | 4 +- .../DOMWriter_WEC2013_vs110.vcxproj.filters | 4 +- XML/samples/DOMWriter/DOMWriter_vs100.vcxproj | 98 ++-- .../DOMWriter/DOMWriter_vs100.vcxproj.filters | 4 +- XML/samples/DOMWriter/DOMWriter_vs110.vcxproj | 116 ++-- .../DOMWriter/DOMWriter_vs110.vcxproj.filters | 4 +- XML/samples/DOMWriter/DOMWriter_vs120.vcxproj | 106 ++-- .../DOMWriter/DOMWriter_vs120.vcxproj.filters | 4 +- .../DOMWriter/DOMWriter_x64_vs100.vcxproj | 98 ++-- .../DOMWriter_x64_vs100.vcxproj.filters | 4 +- .../DOMWriter/DOMWriter_x64_vs110.vcxproj | 116 ++-- .../DOMWriter_x64_vs110.vcxproj.filters | 4 +- .../DOMWriter/DOMWriter_x64_vs120.vcxproj | 106 ++-- .../DOMWriter_x64_vs120.vcxproj.filters | 4 +- .../PrettyPrint_WEC2013_vs110.vcxproj.filters | 4 +- .../PrettyPrint/PrettyPrint_vs100.vcxproj | 98 ++-- .../PrettyPrint_vs100.vcxproj.filters | 4 +- .../PrettyPrint/PrettyPrint_vs110.vcxproj | 116 ++-- .../PrettyPrint_vs110.vcxproj.filters | 4 +- .../PrettyPrint/PrettyPrint_vs120.vcxproj | 106 ++-- .../PrettyPrint_vs120.vcxproj.filters | 4 +- .../PrettyPrint/PrettyPrint_x64_vs100.vcxproj | 98 ++-- .../PrettyPrint_x64_vs100.vcxproj.filters | 4 +- .../PrettyPrint/PrettyPrint_x64_vs110.vcxproj | 116 ++-- .../PrettyPrint_x64_vs110.vcxproj.filters | 4 +- .../PrettyPrint/PrettyPrint_x64_vs120.vcxproj | 106 ++-- .../PrettyPrint_x64_vs120.vcxproj.filters | 4 +- .../SAXParser_WEC2013_vs110.vcxproj.filters | 4 +- XML/samples/SAXParser/SAXParser_vs100.vcxproj | 98 ++-- .../SAXParser/SAXParser_vs100.vcxproj.filters | 4 +- XML/samples/SAXParser/SAXParser_vs110.vcxproj | 116 ++-- .../SAXParser/SAXParser_vs110.vcxproj.filters | 4 +- XML/samples/SAXParser/SAXParser_vs120.vcxproj | 106 ++-- .../SAXParser/SAXParser_vs120.vcxproj.filters | 4 +- .../SAXParser/SAXParser_x64_vs100.vcxproj | 98 ++-- .../SAXParser_x64_vs100.vcxproj.filters | 4 +- .../SAXParser/SAXParser_x64_vs110.vcxproj | 116 ++-- .../SAXParser_x64_vs110.vcxproj.filters | 4 +- .../SAXParser/SAXParser_x64_vs120.vcxproj | 106 ++-- .../SAXParser_x64_vs120.vcxproj.filters | 4 +- XML/samples/samples_vs120.sln | 2 +- XML/samples/samples_x64_vs120.sln | 2 +- .../TestSuite_WEC2013_vs110.vcxproj.filters | 28 +- XML/testsuite/TestSuite_vs100.vcxproj | 96 ++-- XML/testsuite/TestSuite_vs100.vcxproj.filters | 28 +- XML/testsuite/TestSuite_vs110.vcxproj | 116 ++-- XML/testsuite/TestSuite_vs110.vcxproj.filters | 28 +- XML/testsuite/TestSuite_vs120.vcxproj | 222 ++++---- XML/testsuite/TestSuite_vs120.vcxproj.filters | 30 +- XML/testsuite/TestSuite_x64_vs100.vcxproj | 96 ++-- .../TestSuite_x64_vs100.vcxproj.filters | 28 +- XML/testsuite/TestSuite_x64_vs110.vcxproj | 116 ++-- .../TestSuite_x64_vs110.vcxproj.filters | 28 +- XML/testsuite/TestSuite_x64_vs120.vcxproj | 222 ++++---- .../TestSuite_x64_vs120.vcxproj.filters | 30 +- Zip/Zip_WEC2013_vs110.vcxproj.filters | 12 +- Zip/Zip_vs100.vcxproj | 96 ++-- Zip/Zip_vs100.vcxproj.filters | 12 +- Zip/Zip_vs110.vcxproj | 109 ++-- Zip/Zip_vs110.vcxproj.filters | 12 +- Zip/Zip_vs120.sln | 44 +- Zip/Zip_vs120.vcxproj | 187 ++++--- Zip/Zip_vs120.vcxproj.filters | 12 +- Zip/Zip_x64_vs100.vcxproj | 96 ++-- Zip/Zip_x64_vs100.vcxproj.filters | 12 +- Zip/Zip_x64_vs110.vcxproj | 109 ++-- Zip/Zip_x64_vs110.vcxproj.filters | 12 +- Zip/Zip_x64_vs120.sln | 44 +- Zip/Zip_x64_vs120.vcxproj | 187 ++++--- Zip/Zip_x64_vs120.vcxproj.filters | 12 +- Zip/samples/samples_vs120.sln | 2 +- Zip/samples/samples_x64_vs120.sln | 2 +- .../unzip/unzip_WEC2013_vs110.vcxproj.filters | 4 +- Zip/samples/unzip/unzip_vs100.vcxproj | 98 ++-- Zip/samples/unzip/unzip_vs100.vcxproj.filters | 4 +- Zip/samples/unzip/unzip_vs110.vcxproj | 116 ++-- Zip/samples/unzip/unzip_vs110.vcxproj.filters | 4 +- Zip/samples/unzip/unzip_vs120.vcxproj | 106 ++-- Zip/samples/unzip/unzip_vs120.vcxproj.filters | 4 +- Zip/samples/unzip/unzip_x64_vs100.vcxproj | 98 ++-- .../unzip/unzip_x64_vs100.vcxproj.filters | 4 +- Zip/samples/unzip/unzip_x64_vs110.vcxproj | 116 ++-- .../unzip/unzip_x64_vs110.vcxproj.filters | 4 +- Zip/samples/unzip/unzip_x64_vs120.vcxproj | 106 ++-- .../unzip/unzip_x64_vs120.vcxproj.filters | 4 +- .../zip/zip_WEC2013_vs110.vcxproj.filters | 2 +- Zip/samples/zip/zip_vs100.vcxproj | 98 ++-- Zip/samples/zip/zip_vs100.vcxproj.filters | 2 +- Zip/samples/zip/zip_vs110.vcxproj | 116 ++-- Zip/samples/zip/zip_vs110.vcxproj.filters | 2 +- Zip/samples/zip/zip_vs120.vcxproj | 106 ++-- Zip/samples/zip/zip_vs120.vcxproj.filters | 2 +- Zip/samples/zip/zip_x64_vs100.vcxproj | 98 ++-- Zip/samples/zip/zip_x64_vs100.vcxproj.filters | 2 +- Zip/samples/zip/zip_x64_vs110.vcxproj | 116 ++-- Zip/samples/zip/zip_x64_vs110.vcxproj.filters | 2 +- Zip/samples/zip/zip_x64_vs120.vcxproj | 106 ++-- Zip/samples/zip/zip_x64_vs120.vcxproj.filters | 2 +- .../TestSuite_WEC2013_vs110.vcxproj.filters | 16 +- Zip/testsuite/TestSuite_vs100.vcxproj | 96 ++-- Zip/testsuite/TestSuite_vs100.vcxproj.filters | 16 +- Zip/testsuite/TestSuite_vs110.vcxproj | 116 ++-- Zip/testsuite/TestSuite_vs110.vcxproj.filters | 16 +- Zip/testsuite/TestSuite_vs120.vcxproj | 158 +++--- Zip/testsuite/TestSuite_vs120.vcxproj.filters | 18 +- Zip/testsuite/TestSuite_x64_vs100.vcxproj | 96 ++-- .../TestSuite_x64_vs100.vcxproj.filters | 16 +- Zip/testsuite/TestSuite_x64_vs110.vcxproj | 116 ++-- .../TestSuite_x64_vs110.vcxproj.filters | 16 +- Zip/testsuite/TestSuite_x64_vs120.vcxproj | 158 +++--- .../TestSuite_x64_vs120.vcxproj.filters | 18 +- 1290 files changed, 40157 insertions(+), 37695 deletions(-) diff --git a/ApacheConnector/ApacheConnector_vs100.vcxproj b/ApacheConnector/ApacheConnector_vs100.vcxproj index 509c1737c..4c87f6010 100644 --- a/ApacheConnector/ApacheConnector_vs100.vcxproj +++ b/ApacheConnector/ApacheConnector_vs100.vcxproj @@ -17,35 +17,35 @@ Win32Proj - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - mod_pocod - mod_poco + ..\bin\ + obj\$(Configuration)\ + true + ..\bin\ + obj\$(Configuration)\ + false + mod_pocod + mod_poco - + Disabled .\include;..\Foundation\include;..\Net\include;..\Util\include;%(AdditionalIncludeDirectories) @@ -76,7 +76,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/ApacheConnector/ApacheConnector_vs100.vcxproj.filters b/ApacheConnector/ApacheConnector_vs100.vcxproj.filters index a0651b74b..660580810 100644 --- a/ApacheConnector/ApacheConnector_vs100.vcxproj.filters +++ b/ApacheConnector/ApacheConnector_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {1b41dc76-2d5c-4abc-9fcf-40bf92616da2} + {b35eef93-0aad-40f5-9896-81336fb3f060} - {f4221366-b450-4113-b43d-1303b840e629} + {5f7f785a-7d85-48e8-b553-a4f744155516} diff --git a/ApacheConnector/ApacheConnector_vs110.vcxproj b/ApacheConnector/ApacheConnector_vs110.vcxproj index daf278cd4..7760bf915 100644 --- a/ApacheConnector/ApacheConnector_vs110.vcxproj +++ b/ApacheConnector/ApacheConnector_vs110.vcxproj @@ -17,37 +17,41 @@ Win32Proj - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - mod_pocod - mod_poco + <_ProjectFileVersion>11.0.61030.0 + mod_pocod + mod_poco - + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + Disabled .\include;..\Foundation\include;..\Net\include;..\Util\include;%(AdditionalIncludeDirectories) @@ -64,7 +68,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -78,7 +81,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -97,7 +100,6 @@ Level3 Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) diff --git a/ApacheConnector/ApacheConnector_vs110.vcxproj.filters b/ApacheConnector/ApacheConnector_vs110.vcxproj.filters index 28f1e219d..30e1e3c64 100644 --- a/ApacheConnector/ApacheConnector_vs110.vcxproj.filters +++ b/ApacheConnector/ApacheConnector_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {bcfcc66b-9862-4e2e-a0b5-8fd70d179069} + {24141156-1824-417c-99d8-f66a365931ca} - {8a381554-1ddd-46c8-b39c-998aff696f9e} + {85c68977-69ae-4eb0-a829-2e7038866515} diff --git a/ApacheConnector/ApacheConnector_vs120.sln b/ApacheConnector/ApacheConnector_vs120.sln index 178af66d8..21e16d63e 100644 --- a/ApacheConnector/ApacheConnector_vs120.sln +++ b/ApacheConnector/ApacheConnector_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ApacheConnector", "ApacheConnector_vs120.vcxproj", "{9866EE28-0612-4746-BD35-3B15B0AF7267}" EndProject Global @@ -12,8 +10,10 @@ Global GlobalSection(ProjectConfigurationPlatforms) = postSolution {9866EE28-0612-4746-BD35-3B15B0AF7267}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {9866EE28-0612-4746-BD35-3B15B0AF7267}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {9866EE28-0612-4746-BD35-3B15B0AF7267}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {9866EE28-0612-4746-BD35-3B15B0AF7267}.release_shared|Win32.ActiveCfg = release_shared|Win32 {9866EE28-0612-4746-BD35-3B15B0AF7267}.release_shared|Win32.Build.0 = release_shared|Win32 + {9866EE28-0612-4746-BD35-3B15B0AF7267}.release_shared|Win32.Deploy.0 = release_shared|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/ApacheConnector/ApacheConnector_vs120.vcxproj b/ApacheConnector/ApacheConnector_vs120.vcxproj index ee5a0cb8d..bafa64ae2 100644 --- a/ApacheConnector/ApacheConnector_vs120.vcxproj +++ b/ApacheConnector/ApacheConnector_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -16,7 +16,7 @@ ApacheConnector Win32Proj - + DynamicLibrary MultiByte @@ -27,26 +27,30 @@ MultiByte v120 - - + + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 mod_pocod mod_poco + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + Disabled @@ -60,11 +64,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -93,11 +96,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -113,23 +115,23 @@ - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - \ No newline at end of file + + + diff --git a/ApacheConnector/ApacheConnector_vs120.vcxproj.filters b/ApacheConnector/ApacheConnector_vs120.vcxproj.filters index 28f1e219d..d00925d42 100644 --- a/ApacheConnector/ApacheConnector_vs120.vcxproj.filters +++ b/ApacheConnector/ApacheConnector_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {bcfcc66b-9862-4e2e-a0b5-8fd70d179069} + {272e22ef-6c97-4767-93c3-20e1ddfcb73e} - {8a381554-1ddd-46c8-b39c-998aff696f9e} + {01268de1-d0b2-4c05-a9c1-a73c6846b48d} diff --git a/ApacheConnector/ApacheConnector_x64_vs100.vcxproj b/ApacheConnector/ApacheConnector_x64_vs100.vcxproj index 2583983fb..1abc67309 100644 --- a/ApacheConnector/ApacheConnector_x64_vs100.vcxproj +++ b/ApacheConnector/ApacheConnector_x64_vs100.vcxproj @@ -1,4 +1,4 @@ - + @@ -16,7 +16,7 @@ ApacheConnector Win32Proj - + DynamicLibrary MultiByte @@ -25,15 +25,15 @@ DynamicLibrary MultiByte - - + + - + - + - + <_ProjectFileVersion>10.0.40219.1 ..\bin64\ @@ -49,7 +49,7 @@ Disabled .\include;..\Foundation\include;..\Net\include;..\Util\include;%(AdditionalIncludeDirectories) - WIN32;_WIN64;_DEBUG;_WINDOWS;_USRDLL;ApacheHandlers_EXPORTS;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;_USRDLL;ApacheHandlers_EXPORTS;%(PreprocessorDefinitions) true true EnableFastChecks @@ -58,7 +58,7 @@ true true true - + Level3 ProgramDatabase Default @@ -84,16 +84,16 @@ Speed true .\include;..\Foundation\include;..\Net\include;..\Util\include;%(AdditionalIncludeDirectories) - WIN32;_WIN64;NDEBUG;_WINDOWS;_USRDLL;ApacheHandlers_EXPORTS;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;_USRDLL;ApacheHandlers_EXPORTS;%(PreprocessorDefinitions) true MultiThreadedDLL false true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -111,23 +111,23 @@ - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - \ No newline at end of file + + + diff --git a/ApacheConnector/ApacheConnector_x64_vs100.vcxproj.filters b/ApacheConnector/ApacheConnector_x64_vs100.vcxproj.filters index a391401a2..a2694cb07 100644 --- a/ApacheConnector/ApacheConnector_x64_vs100.vcxproj.filters +++ b/ApacheConnector/ApacheConnector_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {8ea424b5-ec7e-439b-a7be-1597c51e51ed} + {943f369b-ddd8-46a6-b093-c20987f49f5c} - {bcfc1d48-58d4-4a01-9e80-15f35f162748} + {b0e12e37-8346-4862-b245-73460cac9e9f} diff --git a/ApacheConnector/ApacheConnector_x64_vs110.vcxproj b/ApacheConnector/ApacheConnector_x64_vs110.vcxproj index 6601aa7e3..3058c7e22 100644 --- a/ApacheConnector/ApacheConnector_x64_vs110.vcxproj +++ b/ApacheConnector/ApacheConnector_x64_vs110.vcxproj @@ -17,37 +17,41 @@ Win32Proj - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - mod_poco64d - mod_poco64 + <_ProjectFileVersion>11.0.61030.0 + mod_poco64d + mod_poco64 - + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\Foundation\include;..\Net\include;..\Util\include;%(AdditionalIncludeDirectories) @@ -64,7 +68,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -78,7 +81,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -97,7 +100,6 @@ Level3 Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) diff --git a/ApacheConnector/ApacheConnector_x64_vs110.vcxproj.filters b/ApacheConnector/ApacheConnector_x64_vs110.vcxproj.filters index 1297e7b77..7eb40d2b2 100644 --- a/ApacheConnector/ApacheConnector_x64_vs110.vcxproj.filters +++ b/ApacheConnector/ApacheConnector_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {57457cff-8b1a-4dbc-9f41-a4e0cbb23577} + {c2481db8-8fd6-452b-9f71-0722bcd42816} - {4c3f92e0-ae8b-4e62-a48a-e1555236766c} + {2f89aade-1adf-4a27-a0d5-1c9447b5f439} diff --git a/ApacheConnector/ApacheConnector_x64_vs120.sln b/ApacheConnector/ApacheConnector_x64_vs120.sln index ff81b9ba5..56cadf22f 100644 --- a/ApacheConnector/ApacheConnector_x64_vs120.sln +++ b/ApacheConnector/ApacheConnector_x64_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ApacheConnector", "ApacheConnector_x64_vs120.vcxproj", "{9866EE28-0612-4746-BD35-3B15B0AF7267}" EndProject Global @@ -12,8 +10,10 @@ Global GlobalSection(ProjectConfigurationPlatforms) = postSolution {9866EE28-0612-4746-BD35-3B15B0AF7267}.debug_shared|x64.ActiveCfg = debug_shared|x64 {9866EE28-0612-4746-BD35-3B15B0AF7267}.debug_shared|x64.Build.0 = debug_shared|x64 + {9866EE28-0612-4746-BD35-3B15B0AF7267}.debug_shared|x64.Deploy.0 = debug_shared|x64 {9866EE28-0612-4746-BD35-3B15B0AF7267}.release_shared|x64.ActiveCfg = release_shared|x64 {9866EE28-0612-4746-BD35-3B15B0AF7267}.release_shared|x64.Build.0 = release_shared|x64 + {9866EE28-0612-4746-BD35-3B15B0AF7267}.release_shared|x64.Deploy.0 = release_shared|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/ApacheConnector/ApacheConnector_x64_vs120.vcxproj b/ApacheConnector/ApacheConnector_x64_vs120.vcxproj index 46e280d2f..422f524c6 100644 --- a/ApacheConnector/ApacheConnector_x64_vs120.vcxproj +++ b/ApacheConnector/ApacheConnector_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -16,7 +16,7 @@ ApacheConnector Win32Proj - + DynamicLibrary MultiByte @@ -27,26 +27,30 @@ MultiByte v120 - - + + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 mod_poco64d mod_poco64 + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + Disabled @@ -60,11 +64,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -93,11 +96,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -113,23 +115,23 @@ - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - \ No newline at end of file + + + diff --git a/ApacheConnector/ApacheConnector_x64_vs120.vcxproj.filters b/ApacheConnector/ApacheConnector_x64_vs120.vcxproj.filters index 1297e7b77..adf5dc17b 100644 --- a/ApacheConnector/ApacheConnector_x64_vs120.vcxproj.filters +++ b/ApacheConnector/ApacheConnector_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {57457cff-8b1a-4dbc-9f41-a4e0cbb23577} + {0048e337-4ac1-4bc0-a27a-363f532ae734} - {4c3f92e0-ae8b-4e62-a48a-e1555236766c} + {70473c59-1b66-4809-b369-d827f40f3074} diff --git a/ApacheConnector/samples/FormServer/FormServer_vs100.vcxproj b/ApacheConnector/samples/FormServer/FormServer_vs100.vcxproj index f9e23751e..f933327df 100644 --- a/ApacheConnector/samples/FormServer/FormServer_vs100.vcxproj +++ b/ApacheConnector/samples/FormServer/FormServer_vs100.vcxproj @@ -17,35 +17,35 @@ Win32Proj - + Application MultiByte - + Application MultiByte - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - FormServerd - FormServer + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + FormServerd + FormServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -75,7 +75,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/ApacheConnector/samples/FormServer/FormServer_vs100.vcxproj.filters b/ApacheConnector/samples/FormServer/FormServer_vs100.vcxproj.filters index 5743ec362..3540f058d 100644 --- a/ApacheConnector/samples/FormServer/FormServer_vs100.vcxproj.filters +++ b/ApacheConnector/samples/FormServer/FormServer_vs100.vcxproj.filters @@ -6,7 +6,7 @@ cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - {f15b6455-ee37-47e9-adb8-a9f91180df9b} + {209bc63a-ce20-4978-ae58-4a6e787a1ddd} diff --git a/ApacheConnector/samples/FormServer/FormServer_vs110.vcxproj b/ApacheConnector/samples/FormServer/FormServer_vs110.vcxproj index a1dd22da6..12865ca35 100644 --- a/ApacheConnector/samples/FormServer/FormServer_vs110.vcxproj +++ b/ApacheConnector/samples/FormServer/FormServer_vs110.vcxproj @@ -17,37 +17,41 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - FormServerd - FormServer + <_ProjectFileVersion>11.0.61030.0 + FormServerd + FormServer - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -64,7 +68,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -77,7 +80,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -96,7 +99,6 @@ Level3 Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) diff --git a/ApacheConnector/samples/FormServer/FormServer_vs110.vcxproj.filters b/ApacheConnector/samples/FormServer/FormServer_vs110.vcxproj.filters index 3831b4543..756e31d62 100644 --- a/ApacheConnector/samples/FormServer/FormServer_vs110.vcxproj.filters +++ b/ApacheConnector/samples/FormServer/FormServer_vs110.vcxproj.filters @@ -6,7 +6,7 @@ cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - {f04495ba-92b9-4f76-9a8b-320a860f09f6} + {227f9697-5f24-43c5-9a15-66c13d3f0656} diff --git a/ApacheConnector/samples/FormServer/FormServer_vs120.vcxproj b/ApacheConnector/samples/FormServer/FormServer_vs120.vcxproj index 580bb4896..df372fea6 100644 --- a/ApacheConnector/samples/FormServer/FormServer_vs120.vcxproj +++ b/ApacheConnector/samples/FormServer/FormServer_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -16,7 +16,7 @@ FormServer Win32Proj - + Application MultiByte @@ -27,26 +27,30 @@ MultiByte v120 - - + + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 FormServerd FormServer + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + Disabled @@ -60,11 +64,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -92,11 +95,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -110,8 +112,8 @@ - + - - - \ No newline at end of file + + + diff --git a/ApacheConnector/samples/FormServer/FormServer_vs120.vcxproj.filters b/ApacheConnector/samples/FormServer/FormServer_vs120.vcxproj.filters index 3831b4543..c935265d8 100644 --- a/ApacheConnector/samples/FormServer/FormServer_vs120.vcxproj.filters +++ b/ApacheConnector/samples/FormServer/FormServer_vs120.vcxproj.filters @@ -6,7 +6,7 @@ cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - {f04495ba-92b9-4f76-9a8b-320a860f09f6} + {1823d1bd-b7f9-4a71-94c6-59367ddaa603} diff --git a/ApacheConnector/samples/FormServer/FormServer_x64_vs100.vcxproj b/ApacheConnector/samples/FormServer/FormServer_x64_vs100.vcxproj index 8d32c35fe..968ced398 100644 --- a/ApacheConnector/samples/FormServer/FormServer_x64_vs100.vcxproj +++ b/ApacheConnector/samples/FormServer/FormServer_x64_vs100.vcxproj @@ -17,35 +17,35 @@ Win32Proj - + Application MultiByte - + Application MultiByte - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - FormServerd - FormServer + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + FormServerd + FormServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -75,7 +75,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/ApacheConnector/samples/FormServer/FormServer_x64_vs100.vcxproj.filters b/ApacheConnector/samples/FormServer/FormServer_x64_vs100.vcxproj.filters index 980bfa4ca..0888be4b4 100644 --- a/ApacheConnector/samples/FormServer/FormServer_x64_vs100.vcxproj.filters +++ b/ApacheConnector/samples/FormServer/FormServer_x64_vs100.vcxproj.filters @@ -6,7 +6,7 @@ cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - {274d01a8-2c80-4883-9261-c41efe4e0328} + {a1049034-f788-4075-b768-4ccd7f218431} diff --git a/ApacheConnector/samples/FormServer/FormServer_x64_vs110.vcxproj b/ApacheConnector/samples/FormServer/FormServer_x64_vs110.vcxproj index aa3ad0c98..3a3fb6d9e 100644 --- a/ApacheConnector/samples/FormServer/FormServer_x64_vs110.vcxproj +++ b/ApacheConnector/samples/FormServer/FormServer_x64_vs110.vcxproj @@ -17,37 +17,41 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - FormServerd - FormServer + <_ProjectFileVersion>11.0.61030.0 + FormServerd + FormServer - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -64,7 +68,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -77,7 +80,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -96,7 +99,6 @@ Level3 Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) diff --git a/ApacheConnector/samples/FormServer/FormServer_x64_vs110.vcxproj.filters b/ApacheConnector/samples/FormServer/FormServer_x64_vs110.vcxproj.filters index 26866cd09..889a183d0 100644 --- a/ApacheConnector/samples/FormServer/FormServer_x64_vs110.vcxproj.filters +++ b/ApacheConnector/samples/FormServer/FormServer_x64_vs110.vcxproj.filters @@ -6,7 +6,7 @@ cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - {cf61aa07-a25d-472f-8e40-4dfb7177eee9} + {5c84b518-546a-40cd-9ce5-6edd742b9647} diff --git a/ApacheConnector/samples/FormServer/FormServer_x64_vs120.vcxproj b/ApacheConnector/samples/FormServer/FormServer_x64_vs120.vcxproj index 5b0cc1a68..5eda3ec13 100644 --- a/ApacheConnector/samples/FormServer/FormServer_x64_vs120.vcxproj +++ b/ApacheConnector/samples/FormServer/FormServer_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -16,7 +16,7 @@ FormServer Win32Proj - + Application MultiByte @@ -27,26 +27,30 @@ MultiByte v120 - - + + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 FormServerd FormServer + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + Disabled @@ -60,11 +64,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -92,11 +95,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -110,8 +112,8 @@ - + - - - \ No newline at end of file + + + diff --git a/ApacheConnector/samples/FormServer/FormServer_x64_vs120.vcxproj.filters b/ApacheConnector/samples/FormServer/FormServer_x64_vs120.vcxproj.filters index 26866cd09..780116635 100644 --- a/ApacheConnector/samples/FormServer/FormServer_x64_vs120.vcxproj.filters +++ b/ApacheConnector/samples/FormServer/FormServer_x64_vs120.vcxproj.filters @@ -6,7 +6,7 @@ cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - {cf61aa07-a25d-472f-8e40-4dfb7177eee9} + {79d5357d-fe71-4677-8376-c3e132346c4d} diff --git a/ApacheConnector/samples/TimeServer/TimeServer_vs100.vcxproj b/ApacheConnector/samples/TimeServer/TimeServer_vs100.vcxproj index 6ac623cfd..516b3c63f 100644 --- a/ApacheConnector/samples/TimeServer/TimeServer_vs100.vcxproj +++ b/ApacheConnector/samples/TimeServer/TimeServer_vs100.vcxproj @@ -17,35 +17,35 @@ Win32Proj - + Application MultiByte - + Application MultiByte - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - TimeServerd - TimeServer + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + TimeServerd + TimeServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -75,7 +75,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/ApacheConnector/samples/TimeServer/TimeServer_vs100.vcxproj.filters b/ApacheConnector/samples/TimeServer/TimeServer_vs100.vcxproj.filters index 927adb421..a866d86d7 100644 --- a/ApacheConnector/samples/TimeServer/TimeServer_vs100.vcxproj.filters +++ b/ApacheConnector/samples/TimeServer/TimeServer_vs100.vcxproj.filters @@ -6,7 +6,7 @@ cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - {29521eeb-44f6-411c-86be-29354be3718e} + {612eae0d-ce89-4a1c-bd0e-f2aa6f213300} diff --git a/ApacheConnector/samples/TimeServer/TimeServer_vs110.vcxproj b/ApacheConnector/samples/TimeServer/TimeServer_vs110.vcxproj index 159fa5f81..f90f600bf 100644 --- a/ApacheConnector/samples/TimeServer/TimeServer_vs110.vcxproj +++ b/ApacheConnector/samples/TimeServer/TimeServer_vs110.vcxproj @@ -17,37 +17,41 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - TimeServerd - TimeServer + <_ProjectFileVersion>11.0.61030.0 + TimeServerd + TimeServer - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -64,7 +68,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -77,7 +80,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -96,7 +99,6 @@ Level3 Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) diff --git a/ApacheConnector/samples/TimeServer/TimeServer_vs110.vcxproj.filters b/ApacheConnector/samples/TimeServer/TimeServer_vs110.vcxproj.filters index bc1ba1391..808f2a938 100644 --- a/ApacheConnector/samples/TimeServer/TimeServer_vs110.vcxproj.filters +++ b/ApacheConnector/samples/TimeServer/TimeServer_vs110.vcxproj.filters @@ -6,7 +6,7 @@ cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - {6b63f475-55cd-49a0-bcea-bcf2786135f0} + {24980eb0-5ad3-4acc-9e07-8de774a05ba7} diff --git a/ApacheConnector/samples/TimeServer/TimeServer_vs120.vcxproj b/ApacheConnector/samples/TimeServer/TimeServer_vs120.vcxproj index bb4f096ca..2a02294a2 100644 --- a/ApacheConnector/samples/TimeServer/TimeServer_vs120.vcxproj +++ b/ApacheConnector/samples/TimeServer/TimeServer_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -16,7 +16,7 @@ TimeServer Win32Proj - + Application MultiByte @@ -27,26 +27,30 @@ MultiByte v120 - - + + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TimeServerd TimeServer + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + Disabled @@ -60,11 +64,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -92,11 +95,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -110,8 +112,8 @@ - + - - - \ No newline at end of file + + + diff --git a/ApacheConnector/samples/TimeServer/TimeServer_vs120.vcxproj.filters b/ApacheConnector/samples/TimeServer/TimeServer_vs120.vcxproj.filters index bc1ba1391..f8dd42bd2 100644 --- a/ApacheConnector/samples/TimeServer/TimeServer_vs120.vcxproj.filters +++ b/ApacheConnector/samples/TimeServer/TimeServer_vs120.vcxproj.filters @@ -6,7 +6,7 @@ cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - {6b63f475-55cd-49a0-bcea-bcf2786135f0} + {ba03e747-bf6c-41cb-ad7c-1b31c6ac3ca7} diff --git a/ApacheConnector/samples/TimeServer/TimeServer_x64_vs100.vcxproj b/ApacheConnector/samples/TimeServer/TimeServer_x64_vs100.vcxproj index 3f29c7543..147be1a93 100644 --- a/ApacheConnector/samples/TimeServer/TimeServer_x64_vs100.vcxproj +++ b/ApacheConnector/samples/TimeServer/TimeServer_x64_vs100.vcxproj @@ -17,35 +17,35 @@ Win32Proj - + Application MultiByte - + Application MultiByte - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - TimeServerd - TimeServer + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + TimeServerd + TimeServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -75,7 +75,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/ApacheConnector/samples/TimeServer/TimeServer_x64_vs100.vcxproj.filters b/ApacheConnector/samples/TimeServer/TimeServer_x64_vs100.vcxproj.filters index 69aaa26f8..9659b5c14 100644 --- a/ApacheConnector/samples/TimeServer/TimeServer_x64_vs100.vcxproj.filters +++ b/ApacheConnector/samples/TimeServer/TimeServer_x64_vs100.vcxproj.filters @@ -6,7 +6,7 @@ cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - {2b9f99c8-e72f-4c5b-8970-bc695d6b055d} + {2539dff5-e15b-400f-b11d-a6667448b51e} diff --git a/ApacheConnector/samples/TimeServer/TimeServer_x64_vs110.vcxproj b/ApacheConnector/samples/TimeServer/TimeServer_x64_vs110.vcxproj index d0cf80303..ce53af5b8 100644 --- a/ApacheConnector/samples/TimeServer/TimeServer_x64_vs110.vcxproj +++ b/ApacheConnector/samples/TimeServer/TimeServer_x64_vs110.vcxproj @@ -17,37 +17,41 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - TimeServerd - TimeServer + <_ProjectFileVersion>11.0.61030.0 + TimeServerd + TimeServer - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -64,7 +68,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -77,7 +80,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -96,7 +99,6 @@ Level3 Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) diff --git a/ApacheConnector/samples/TimeServer/TimeServer_x64_vs110.vcxproj.filters b/ApacheConnector/samples/TimeServer/TimeServer_x64_vs110.vcxproj.filters index 55f11c915..c6b4b08db 100644 --- a/ApacheConnector/samples/TimeServer/TimeServer_x64_vs110.vcxproj.filters +++ b/ApacheConnector/samples/TimeServer/TimeServer_x64_vs110.vcxproj.filters @@ -6,7 +6,7 @@ cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - {48644633-75a0-496d-a852-1916511051e0} + {bfaed7f5-e01b-43c0-a405-ce55a78a8376} diff --git a/ApacheConnector/samples/TimeServer/TimeServer_x64_vs120.vcxproj b/ApacheConnector/samples/TimeServer/TimeServer_x64_vs120.vcxproj index 07a503812..9936156f2 100644 --- a/ApacheConnector/samples/TimeServer/TimeServer_x64_vs120.vcxproj +++ b/ApacheConnector/samples/TimeServer/TimeServer_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -16,7 +16,7 @@ TimeServer Win32Proj - + Application MultiByte @@ -27,26 +27,30 @@ MultiByte v120 - - + + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TimeServerd TimeServer + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + Disabled @@ -60,11 +64,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -92,11 +95,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) libapr-1.lib;libaprutil-1.lib;libhttpd.lib;%(AdditionalDependencies) @@ -110,8 +112,8 @@ - + - - - \ No newline at end of file + + + diff --git a/ApacheConnector/samples/TimeServer/TimeServer_x64_vs120.vcxproj.filters b/ApacheConnector/samples/TimeServer/TimeServer_x64_vs120.vcxproj.filters index 55f11c915..581042a04 100644 --- a/ApacheConnector/samples/TimeServer/TimeServer_x64_vs120.vcxproj.filters +++ b/ApacheConnector/samples/TimeServer/TimeServer_x64_vs120.vcxproj.filters @@ -6,7 +6,7 @@ cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - {48644633-75a0-496d-a852-1916511051e0} + {e55b8e97-aa26-48ed-b076-c24a7fb3ac89} diff --git a/ApacheConnector/samples/samples_vs120.sln b/ApacheConnector/samples/samples_vs120.sln index f96452c56..1fd8c6a4f 100644 --- a/ApacheConnector/samples/samples_vs120.sln +++ b/ApacheConnector/samples/samples_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FormServer", "FormServer\FormServer_vs120.vcxproj", "{CD77A9BA-6E9B-39EF-801A-1C7E66B19106}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TimeServer", "TimeServer\TimeServer_vs120.vcxproj", "{59EDFD20-9968-30F7-9532-44C08DA58C6E}" @@ -14,12 +12,16 @@ Global GlobalSection(ProjectConfigurationPlatforms) = postSolution {CD77A9BA-6E9B-39EF-801A-1C7E66B19106}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {CD77A9BA-6E9B-39EF-801A-1C7E66B19106}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {CD77A9BA-6E9B-39EF-801A-1C7E66B19106}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {CD77A9BA-6E9B-39EF-801A-1C7E66B19106}.release_shared|Win32.ActiveCfg = release_shared|Win32 {CD77A9BA-6E9B-39EF-801A-1C7E66B19106}.release_shared|Win32.Build.0 = release_shared|Win32 + {CD77A9BA-6E9B-39EF-801A-1C7E66B19106}.release_shared|Win32.Deploy.0 = release_shared|Win32 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_shared|Win32.ActiveCfg = release_shared|Win32 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_shared|Win32.Build.0 = release_shared|Win32 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_shared|Win32.Deploy.0 = release_shared|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/ApacheConnector/samples/samples_x64_vs120.sln b/ApacheConnector/samples/samples_x64_vs120.sln index d674d67e4..1b5f002a3 100644 --- a/ApacheConnector/samples/samples_x64_vs120.sln +++ b/ApacheConnector/samples/samples_x64_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FormServer", "FormServer\FormServer_x64_vs120.vcxproj", "{CD77A9BA-6E9B-39EF-801A-1C7E66B19106}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TimeServer", "TimeServer\TimeServer_x64_vs120.vcxproj", "{59EDFD20-9968-30F7-9532-44C08DA58C6E}" @@ -14,12 +12,16 @@ Global GlobalSection(ProjectConfigurationPlatforms) = postSolution {CD77A9BA-6E9B-39EF-801A-1C7E66B19106}.debug_shared|x64.ActiveCfg = debug_shared|x64 {CD77A9BA-6E9B-39EF-801A-1C7E66B19106}.debug_shared|x64.Build.0 = debug_shared|x64 + {CD77A9BA-6E9B-39EF-801A-1C7E66B19106}.debug_shared|x64.Deploy.0 = debug_shared|x64 {CD77A9BA-6E9B-39EF-801A-1C7E66B19106}.release_shared|x64.ActiveCfg = release_shared|x64 {CD77A9BA-6E9B-39EF-801A-1C7E66B19106}.release_shared|x64.Build.0 = release_shared|x64 + {CD77A9BA-6E9B-39EF-801A-1C7E66B19106}.release_shared|x64.Deploy.0 = release_shared|x64 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_shared|x64.ActiveCfg = debug_shared|x64 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_shared|x64.Build.0 = debug_shared|x64 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_shared|x64.Deploy.0 = debug_shared|x64 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_shared|x64.ActiveCfg = release_shared|x64 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_shared|x64.Build.0 = release_shared|x64 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_shared|x64.Deploy.0 = release_shared|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/CppParser/CppParser.progen b/CppParser/CppParser.progen index 0739d4568..b8097e2eb 100644 --- a/CppParser/CppParser.progen +++ b/CppParser/CppParser.progen @@ -4,7 +4,7 @@ vc.project.target = Poco${vc.project.name} vc.project.type = library vc.project.pocobase = .. vc.project.outdir = ${vc.project.pocobase} -vc.project.platforms = Win32, x64, WinCE +vc.project.platforms = Win32, x64 vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md vc.project.prototype = ${vc.project.name}_vs90.vcproj vc.project.compiler.include = ..\\Foundation\\include diff --git a/CppParser/CppParser_vs100.vcxproj b/CppParser/CppParser_vs100.vcxproj index fb45e5001..da9c95731 100644 --- a/CppParser/CppParser_vs100.vcxproj +++ b/CppParser/CppParser_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoCppParserd - PocoCppParsermdd - PocoCppParsermtd - PocoCppParser - PocoCppParsermd - PocoCppParsermt + ..\bin\ + obj\$(Configuration)\ + true + ..\bin\ + obj\$(Configuration)\ + false + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + PocoCppParserd + PocoCppParsermdd + PocoCppParsermtd + PocoCppParser + PocoCppParsermd + PocoCppParsermt - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib\PocoCppParsermtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib\PocoCppParsermt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib\PocoCppParsermdd.lib - + Disabled OnlyExplicitInline diff --git a/CppParser/CppParser_vs100.vcxproj.filters b/CppParser/CppParser_vs100.vcxproj.filters index 25133b258..f22794922 100644 --- a/CppParser/CppParser_vs100.vcxproj.filters +++ b/CppParser/CppParser_vs100.vcxproj.filters @@ -2,31 +2,31 @@ - {0de1e4c2-7981-448e-8fa7-dd860a0bf734} + {9f4a6f27-bd06-4f26-8397-6eb7e4ad2ec9} - {b646c19b-967a-48c7-9dc9-8b073b84c071} + {3318b9f4-5975-464a-abe9-daff81bcb26a} - {9f794384-3146-4a72-ba9c-f60346a9f55c} + {39b67b11-900d-4e5f-ac08-5359e048c1b4} - {0d441282-2c28-4d3f-9c80-066f3fb5c156} + {26dd4d56-e131-4e38-b0a7-c8044b604cc9} - {6a8d173b-488c-4aec-8d4e-83b687680088} + {422e5157-748d-4656-9202-d7c7e6df9fe5} - {b062fe72-2363-4b1e-a71c-e986d95a20eb} + {d0edc27c-7001-45e9-8209-a1f1ea2fed40} - {2ec881d9-fe2a-4f0e-ac28-e61d01eadac0} + {20a9aedd-4896-4823-aa51-1660fcda8f00} - {2326fad4-7fe9-4ddb-84ef-563f605b8d5e} + {2a127470-866f-4b5e-9d8e-4bceda146dde} - {e6601398-0222-4e2c-85f6-0e9070610b26} + {cc936f9f-c2af-4680-bf2d-192e61e5fcd5} diff --git a/CppParser/CppParser_vs110.vcxproj b/CppParser/CppParser_vs110.vcxproj index b49e01a4f..82c522af1 100644 --- a/CppParser/CppParser_vs110.vcxproj +++ b/CppParser/CppParser_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoCppParserd - PocoCppParsermdd - PocoCppParsermtd - PocoCppParser - PocoCppParsermd - PocoCppParsermt + <_ProjectFileVersion>11.0.61030.0 + PocoCppParserd + PocoCppParsermdd + PocoCppParsermtd + PocoCppParser + PocoCppParsermd + PocoCppParsermt - + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -124,10 +136,8 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoCppParserd.dll true true @@ -138,7 +148,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -157,10 +167,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoCppParser.dll true false @@ -172,7 +180,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,13 +198,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoCppParsermtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +222,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib\PocoCppParsermt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,13 +245,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoCppParsermdd.lib - + Disabled OnlyExplicitInline @@ -265,10 +270,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\lib\PocoCppParsermd.lib diff --git a/CppParser/CppParser_vs110.vcxproj.filters b/CppParser/CppParser_vs110.vcxproj.filters index 43db4928e..7380f5c8b 100644 --- a/CppParser/CppParser_vs110.vcxproj.filters +++ b/CppParser/CppParser_vs110.vcxproj.filters @@ -2,31 +2,31 @@ - {cbc61880-2fcb-4c75-80cc-e49543522474} + {32507dce-f373-464f-bdd0-a314490d53a6} - {5c023da7-8192-46c0-afd0-befffaa493b7} + {43bd78b2-17f2-4afd-a222-0e89a7b2c193} - {ad5d25e9-fad4-432f-b697-36e1a3314b40} + {8e35d146-0ccf-4096-87d0-689002ad4418} - {636ad43b-5fe3-4edf-9b7b-2581ef8c87fa} + {bb86f6f5-9a62-4d48-9ab8-0ac4fced21a7} - {3b40acd4-2766-4dd5-840e-273c3d5936a8} + {6ad36d07-6c9e-46d5-971b-f52298eb7ee0} - {8e2c1098-1177-4d3b-9bf5-0e8f37aa9c6e} + {378a67aa-8ebe-425a-9f09-a563d92b3b85} - {288a9d31-0b85-431a-86d0-8e1c74271041} + {bc32a97d-d355-449a-934f-7be7cdfc5dfc} - {c529b477-caa5-4703-abfe-4f36171bad69} + {1284363b-c7f9-4347-94aa-d68e89b4a533} - {13164377-cd24-4ea0-af3f-8f6c8ae5f456} + {ca44a19d-258a-443b-932c-235311b8a1af} diff --git a/CppParser/CppParser_vs120.sln b/CppParser/CppParser_vs120.sln index 3420ced8c..f6c1cb4e4 100644 --- a/CppParser/CppParser_vs120.sln +++ b/CppParser/CppParser_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CppParser", "CppParser_vs120.vcxproj", "{C77B9D92-EC91-11DA-A4CE-005056C00008}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_vs120.vcxproj", "{C79112BD-EC91-11DA-A4CE-005056C00008}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_shared|Win32.ActiveCfg = release_shared|Win32 {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_shared|Win32.Build.0 = release_shared|Win32 - {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {C79112BD-EC91-11DA-A4CE-005056C00008}.release_shared|Win32.ActiveCfg = release_shared|Win32 {C79112BD-EC91-11DA-A4CE-005056C00008}.release_shared|Win32.Build.0 = release_shared|Win32 - {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {C79112BD-EC91-11DA-A4CE-005056C00008}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/CppParser/CppParser_vs120.vcxproj b/CppParser/CppParser_vs120.vcxproj index c917c757a..e618e79e6 100644 --- a/CppParser/CppParser_vs120.vcxproj +++ b/CppParser/CppParser_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ CppParser Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoCppParserd PocoCppParsermdd PocoCppParsermtd @@ -107,6 +93,32 @@ PocoCppParsermd PocoCppParsermt + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + Disabled @@ -120,14 +132,12 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoCppParserd.dll true true @@ -153,14 +163,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoCppParser.dll true false @@ -185,12 +193,11 @@ true true true - + ..\lib\PocoCppParsermtd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoCppParsermtd.lib @@ -211,11 +218,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib\PocoCppParsermt.lib @@ -234,12 +240,11 @@ true true true - + ..\lib\PocoCppParsermdd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoCppParsermdd.lib @@ -260,57 +265,55 @@ true true true - + ..\lib\PocoCppParsermd.pdb Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\lib\PocoCppParsermd.lib - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/CppParser/CppParser_vs120.vcxproj.filters b/CppParser/CppParser_vs120.vcxproj.filters index 43db4928e..7e030a983 100644 --- a/CppParser/CppParser_vs120.vcxproj.filters +++ b/CppParser/CppParser_vs120.vcxproj.filters @@ -2,31 +2,31 @@ - {cbc61880-2fcb-4c75-80cc-e49543522474} + {906d3532-fdcf-4ba2-a1c0-ca689fdb7fe9} - {5c023da7-8192-46c0-afd0-befffaa493b7} + {9c217fd6-406e-46ee-b03a-34592809ba90} - {ad5d25e9-fad4-432f-b697-36e1a3314b40} + {3386fb69-b904-410f-8fe0-c9db10183762} - {636ad43b-5fe3-4edf-9b7b-2581ef8c87fa} + {ae3d7b71-59a2-4a03-8434-2998b2494396} - {3b40acd4-2766-4dd5-840e-273c3d5936a8} + {77ab7c91-f553-4b9a-b250-9832fc85d2d1} - {8e2c1098-1177-4d3b-9bf5-0e8f37aa9c6e} + {ee6228e0-d5ad-4142-9cd3-815f5cb9c57b} - {288a9d31-0b85-431a-86d0-8e1c74271041} + {8f83d24f-30b7-4be7-b5c3-540e587902d9} - {c529b477-caa5-4703-abfe-4f36171bad69} + {e883924a-f5a2-426a-864f-248a0b6e5a29} - {13164377-cd24-4ea0-af3f-8f6c8ae5f456} + {26e3687d-72a9-4fe1-863e-b049b8cc1db3} diff --git a/CppParser/CppParser_x64_vs100.vcxproj b/CppParser/CppParser_x64_vs100.vcxproj index 3917b9366..ee52f223c 100644 --- a/CppParser/CppParser_x64_vs100.vcxproj +++ b/CppParser/CppParser_x64_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoCppParser64d - PocoCppParsermdd - PocoCppParsermtd - PocoCppParser64 - PocoCppParsermd - PocoCppParsermt + ..\bin64\ + obj64\$(Configuration)\ + true + ..\bin64\ + obj64\$(Configuration)\ + false + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + PocoCppParser64d + PocoCppParsermdd + PocoCppParsermtd + PocoCppParser64 + PocoCppParsermd + PocoCppParsermt - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib64\PocoCppParsermtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib64\PocoCppParsermt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib64\PocoCppParsermdd.lib - + Disabled OnlyExplicitInline diff --git a/CppParser/CppParser_x64_vs100.vcxproj.filters b/CppParser/CppParser_x64_vs100.vcxproj.filters index 105992ab8..54d1f8153 100644 --- a/CppParser/CppParser_x64_vs100.vcxproj.filters +++ b/CppParser/CppParser_x64_vs100.vcxproj.filters @@ -2,31 +2,31 @@ - {ae1a4140-b96f-472a-80a4-4083ea787ba2} + {59b3a40b-1431-4053-9cbd-59e48576b624} - {ee63f63c-180a-4699-bf75-5c666927fb32} + {d978112a-27fd-463f-b71c-cd237a515c5b} - {6feff95f-1e00-4e0c-bc54-a402b6af4d9c} + {fb7ba022-7e99-4021-95a5-e31fe930fe32} - {e9d3a912-179a-4763-849f-d527017b5921} + {badc08b1-e402-4c81-8757-93c5943b28ea} - {90ddaeec-3f66-45ef-b3b7-df28262ea58b} + {d5c6c527-a5b0-4404-a737-746b22e166ad} - {03696103-dbc7-4bec-ba70-defc6fa12a74} + {85e8d888-41a1-47e8-b7aa-84b24cdde5ab} - {f008c3da-bc1d-4698-a22a-269dead7ef94} + {1c537d23-d6e5-42d2-abce-d935f240af7d} - {b028b1bd-ff96-4979-9a30-b924df8eb682} + {84aee57f-59e2-4de0-a2d5-45eac9f1da17} - {6fbbae37-a30e-4d51-be2d-3ffa673983cc} + {0f8d7982-c07e-4469-a48a-7c2172379796} diff --git a/CppParser/CppParser_x64_vs110.vcxproj b/CppParser/CppParser_x64_vs110.vcxproj index 2ba868a4f..5369d7ee2 100644 --- a/CppParser/CppParser_x64_vs110.vcxproj +++ b/CppParser/CppParser_x64_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoCppParser64d - PocoCppParsermdd - PocoCppParsermtd - PocoCppParser64 - PocoCppParsermd - PocoCppParsermt + <_ProjectFileVersion>11.0.61030.0 + PocoCppParser64d + PocoCppParsermdd + PocoCppParsermtd + PocoCppParser64 + PocoCppParsermd + PocoCppParsermt - + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -124,10 +136,8 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoCppParser64d.dll true true @@ -138,7 +148,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -157,10 +167,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoCppParser64.dll true false @@ -172,7 +180,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,13 +198,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoCppParsermtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +222,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoCppParsermt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,13 +245,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoCppParsermdd.lib - + Disabled OnlyExplicitInline @@ -264,7 +269,6 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoCppParsermd.lib diff --git a/CppParser/CppParser_x64_vs110.vcxproj.filters b/CppParser/CppParser_x64_vs110.vcxproj.filters index e206f04ae..aed774931 100644 --- a/CppParser/CppParser_x64_vs110.vcxproj.filters +++ b/CppParser/CppParser_x64_vs110.vcxproj.filters @@ -2,31 +2,31 @@ - {e8760673-d3b5-471c-bc85-70cf7f616fb2} + {f7b4f6ad-2580-4528-ac17-3ee368eafdce} - {af3f9c0e-e8f0-479b-8cad-7a047e43c766} + {c479411d-b981-4a5c-ac79-26d2e3332cc0} - {89a1f718-71d9-45a4-aa0d-311566519b5e} + {36986a08-529c-4ad0-a048-9be54b69621e} - {9c1279a9-0da5-4d1b-9c0a-9b46495e3e1f} + {514072b2-929b-4519-ad74-937077afd27e} - {b668a5a4-b633-4bb5-92dc-06300d8d2751} + {df7a4b61-cf8e-4bbf-b0d9-052db6f3b08c} - {1323e338-edb5-44a6-98d9-a89a8134014e} + {07682309-537f-41db-a041-f9e437110f8a} - {f8209c51-044b-4146-88ff-5d794f593de5} + {c58448e2-47c4-4270-9464-4485d6acc17b} - {2b99f023-a1d6-4eeb-a240-2a15ee2df0e0} + {faf0b1f7-d16c-430f-bee3-69bcf29af95f} - {bfc33f86-8333-42da-9d6b-278944f30ed5} + {d02bd71d-b369-4d10-a09b-2e7cd74cb74a} diff --git a/CppParser/CppParser_x64_vs120.sln b/CppParser/CppParser_x64_vs120.sln index b2195a02f..b33dbd53e 100644 --- a/CppParser/CppParser_x64_vs120.sln +++ b/CppParser/CppParser_x64_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CppParser", "CppParser_x64_vs120.vcxproj", "{C77B9D92-EC91-11DA-A4CE-005056C00008}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_x64_vs120.vcxproj", "{C79112BD-EC91-11DA-A4CE-005056C00008}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_shared|x64.ActiveCfg = debug_shared|x64 {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_shared|x64.Build.0 = debug_shared|x64 - {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_shared|x64.Deploy.0 = debug_shared|x64 {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_shared|x64.ActiveCfg = release_shared|x64 {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_shared|x64.Build.0 = release_shared|x64 - {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_md|x64.Build.0 = release_static_md|x64 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_shared|x64.Deploy.0 = release_shared|x64 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_md|x64.Build.0 = release_static_md|x64 + {C77B9D92-EC91-11DA-A4CE-005056C00008}.release_static_md|x64.Deploy.0 = release_static_md|x64 {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_shared|x64.ActiveCfg = debug_shared|x64 {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_shared|x64.Build.0 = debug_shared|x64 - {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_shared|x64.Deploy.0 = debug_shared|x64 {C79112BD-EC91-11DA-A4CE-005056C00008}.release_shared|x64.ActiveCfg = release_shared|x64 {C79112BD-EC91-11DA-A4CE-005056C00008}.release_shared|x64.Build.0 = release_shared|x64 - {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_md|x64.Build.0 = release_static_md|x64 + {C79112BD-EC91-11DA-A4CE-005056C00008}.release_shared|x64.Deploy.0 = release_shared|x64 + {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {C79112BD-EC91-11DA-A4CE-005056C00008}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_md|x64.Build.0 = release_static_md|x64 + {C79112BD-EC91-11DA-A4CE-005056C00008}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/CppParser/CppParser_x64_vs120.vcxproj b/CppParser/CppParser_x64_vs120.vcxproj index 963104668..b57db08c5 100644 --- a/CppParser/CppParser_x64_vs120.vcxproj +++ b/CppParser/CppParser_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ CppParser Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoCppParser64d PocoCppParsermdd PocoCppParsermtd @@ -107,6 +93,32 @@ PocoCppParsermd PocoCppParsermt + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + Disabled @@ -120,14 +132,12 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoCppParser64d.dll true true @@ -153,14 +163,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoCppParser64.dll true false @@ -185,12 +193,11 @@ true true true - + ..\lib64\PocoCppParsermtd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoCppParsermtd.lib @@ -211,11 +218,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoCppParsermt.lib @@ -234,12 +240,11 @@ true true true - + ..\lib64\PocoCppParsermdd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoCppParsermdd.lib @@ -260,55 +265,54 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoCppParsermd.lib - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/CppParser/CppParser_x64_vs120.vcxproj.filters b/CppParser/CppParser_x64_vs120.vcxproj.filters index e206f04ae..03b026f0b 100644 --- a/CppParser/CppParser_x64_vs120.vcxproj.filters +++ b/CppParser/CppParser_x64_vs120.vcxproj.filters @@ -2,31 +2,31 @@ - {e8760673-d3b5-471c-bc85-70cf7f616fb2} + {6a0aab7e-9c4c-43cb-966e-3eed69652e18} - {af3f9c0e-e8f0-479b-8cad-7a047e43c766} + {6f6087fe-9cb4-472d-8777-8d54b7dfc110} - {89a1f718-71d9-45a4-aa0d-311566519b5e} + {e9f324cf-4731-453f-afa7-32d174b47123} - {9c1279a9-0da5-4d1b-9c0a-9b46495e3e1f} + {835fb39c-29f0-4930-b958-117bfca18398} - {b668a5a4-b633-4bb5-92dc-06300d8d2751} + {f8ba4598-05b9-4323-a40b-a11d37ffad8d} - {1323e338-edb5-44a6-98d9-a89a8134014e} + {d82fa47e-647f-44ac-9921-f771aaabfc97} - {f8209c51-044b-4146-88ff-5d794f593de5} + {f1e2f080-3b73-4f84-b7e3-34781bf97f7d} - {2b99f023-a1d6-4eeb-a240-2a15ee2df0e0} + {710fe2cb-a8d5-4a98-97f3-ba4054f04561} - {bfc33f86-8333-42da-9d6b-278944f30ed5} + {36fe4d0c-2366-49b4-b279-ccd3b5bc6423} diff --git a/CppParser/testsuite/TestSuite_vs100.vcxproj b/CppParser/testsuite/TestSuite_vs100.vcxproj index 91d2d99c9..9dcda946e 100644 --- a/CppParser/testsuite/TestSuite_vs100.vcxproj +++ b/CppParser/testsuite/TestSuite_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/CppParser/testsuite/TestSuite_vs100.vcxproj.filters b/CppParser/testsuite/TestSuite_vs100.vcxproj.filters index 1154bb46d..0f2001a1c 100644 --- a/CppParser/testsuite/TestSuite_vs100.vcxproj.filters +++ b/CppParser/testsuite/TestSuite_vs100.vcxproj.filters @@ -2,37 +2,37 @@ - {164db782-dfe9-41f3-8a3f-ac47c7d79f11} + {9d693b7c-4385-4386-b87f-7d739c7d36f1} - {6fa89d39-b32e-4356-9ec1-90a1c7d56428} + {4f19253e-d46c-4911-8022-add406485eb7} - {e176d67f-6278-4683-ba96-37ceebc15369} + {ad113469-57b0-4360-8a0f-102df64e3a7a} - {f489fb44-931d-4af2-96e3-e8cd2e727554} + {a2f56498-68df-4e86-bc94-5be9933a4e96} - {25d0d43e-f85f-4c86-84f0-e5f69d2a4f2a} + {a25af760-4e4c-4dcc-ae41-ff59d65838e9} - {31b5c893-dbe5-49d2-952b-ec9fefeb8f5d} + {0fb54581-608e-491f-b67a-463b062c71d4} - {eeca1a3e-1e98-4ab0-bcd2-3b86e19cb66d} + {df1ca66c-1f8b-4749-9991-a061a8e4b81f} - {f21ae675-9cf7-451b-a7c5-2f2fc03458e7} + {6c29be2e-00ce-4795-b698-eac7eac526c5} - {74dea9e1-9151-401f-ad16-0f930ce2c350} + {286bf0ca-0798-46dc-be7c-1f98158e8ba4} - {292b4a86-baa8-4f15-8ed9-9fbed8b33d4a} + {8875ba07-1d4d-46c8-b8d0-2310f478af08} - {96032ecf-ae32-46f0-8a18-757265f97b5f} + {749dfdbb-b8a6-47e0-a12f-74a90bef5d8c} diff --git a/CppParser/testsuite/TestSuite_vs110.vcxproj b/CppParser/testsuite/TestSuite_vs110.vcxproj index 7370f4755..42fff38ab 100644 --- a/CppParser/testsuite/TestSuite_vs110.vcxproj +++ b/CppParser/testsuite/TestSuite_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/CppParser/testsuite/TestSuite_vs110.vcxproj.filters b/CppParser/testsuite/TestSuite_vs110.vcxproj.filters index df376710e..cd5131bcc 100644 --- a/CppParser/testsuite/TestSuite_vs110.vcxproj.filters +++ b/CppParser/testsuite/TestSuite_vs110.vcxproj.filters @@ -2,37 +2,37 @@ - {c2d8a893-61d3-4132-b317-ff36a7e20535} + {a565581f-f406-4d8d-a083-293530cf96ca} - {95cc765b-6dad-470c-8c7c-8c202a6323ae} + {abd8e8ba-f4df-4ba2-8bfd-76aa394d303b} - {0384dc65-40de-4790-8731-6ddf3839a925} + {95d90a46-c19f-4792-9137-3981e8fa335d} - {0b753288-c05c-46bf-9153-f9448e4f8d00} + {6868662b-a23c-4665-a459-2559ff3c24d0} - {8fd1136e-749d-456c-879e-ffef21863e5b} + {0c17ba6e-d547-4f2f-a631-ec3b18b98806} - {fc188f36-e257-4ef5-a14d-0ec12af48184} + {2b1666ba-3dee-407a-832c-52c0aeef14ec} - {93c0f9c4-1ac9-4a8b-9f25-8808afbd5dd6} + {7858b874-d03a-49f7-8776-ab2aff36176e} - {7b14afa7-908f-4934-a1ad-8e5c0605288d} + {ee905107-0a4e-4137-8c87-99375035f093} - {da7c4f50-826b-46a4-a3d4-d7777b1ce2d2} + {6b149c49-2fb6-4084-9536-f6d3f6e8ca08} - {04a55c6d-7896-42b3-8b5f-3804087bba01} + {b0ea20b4-6f19-41f5-a4b1-f94b45640e88} - {347a4842-0d74-484e-bee0-19c8b2875eab} + {9a6304bc-640b-49c3-a525-13f443b2c58f} diff --git a/CppParser/testsuite/TestSuite_vs120.vcxproj b/CppParser/testsuite/TestSuite_vs120.vcxproj index eec7179a8..31665757f 100644 --- a/CppParser/testsuite/TestSuite_vs120.vcxproj +++ b/CppParser/testsuite/TestSuite_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Console + Windows MachineX86 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 @@ -192,21 +202,20 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Console + Windows MachineX86 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX86 @@ -256,20 +264,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Console + Windows MachineX86 @@ -288,36 +295,35 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 - - - - + + + + - - - - - + + + + + - - - \ No newline at end of file + + + diff --git a/CppParser/testsuite/TestSuite_vs120.vcxproj.filters b/CppParser/testsuite/TestSuite_vs120.vcxproj.filters index 353ba180a..e7cb70d44 100644 --- a/CppParser/testsuite/TestSuite_vs120.vcxproj.filters +++ b/CppParser/testsuite/TestSuite_vs120.vcxproj.filters @@ -2,37 +2,37 @@ - {c2d8a893-61d3-4132-b317-ff36a7e20535} + {9b3234dc-804d-4539-8ef9-ee7f1b48ea16} - {95cc765b-6dad-470c-8c7c-8c202a6323ae} + {c79edc10-8863-4d35-95a6-f8015b4486f3} - {0384dc65-40de-4790-8731-6ddf3839a925} + {44072ea2-78fd-4165-a0db-f9c5f3ac52d9} - {0b753288-c05c-46bf-9153-f9448e4f8d00} + {999fdc77-973a-4e56-bcff-379029d569b5} - {8fd1136e-749d-456c-879e-ffef21863e5b} + {ba165191-c340-44f8-a933-41eec5157092} - {fc188f36-e257-4ef5-a14d-0ec12af48184} + {4325b300-0e72-4e25-b6f0-7a35cd98840e} - {93c0f9c4-1ac9-4a8b-9f25-8808afbd5dd6} + {89de7667-daba-4e2f-b08d-7c5602242f5b} - {7b14afa7-908f-4934-a1ad-8e5c0605288d} + {90600031-54ec-44c1-9aba-e3e27da5e3c0} - {da7c4f50-826b-46a4-a3d4-d7777b1ce2d2} + {a60c70d8-2a19-440f-a371-66731c0eedcf} - {04a55c6d-7896-42b3-8b5f-3804087bba01} + {9ae4c3bb-f6ba-4d42-bd25-378f142ce54c} - {347a4842-0d74-484e-bee0-19c8b2875eab} + {9705a4f4-ff32-446d-b6ac-68258417c6aa} @@ -56,14 +56,14 @@ _Suite\Source Files + + _Driver\Source Files + Attributes\Source Files Attributes\Source Files - - _Driver\Source Files - \ No newline at end of file diff --git a/CppParser/testsuite/TestSuite_x64_vs100.vcxproj b/CppParser/testsuite/TestSuite_x64_vs100.vcxproj index aeeb1ecda..c1d1aeba1 100644 --- a/CppParser/testsuite/TestSuite_x64_vs100.vcxproj +++ b/CppParser/testsuite/TestSuite_x64_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/CppParser/testsuite/TestSuite_x64_vs100.vcxproj.filters b/CppParser/testsuite/TestSuite_x64_vs100.vcxproj.filters index 016d2bb4d..35b5590f2 100644 --- a/CppParser/testsuite/TestSuite_x64_vs100.vcxproj.filters +++ b/CppParser/testsuite/TestSuite_x64_vs100.vcxproj.filters @@ -2,37 +2,37 @@ - {054c68c7-3ec0-4e1d-970b-41ed12bf8dc8} + {9a4e2f07-52c6-435b-ae16-8e7caf2020d3} - {390ad10e-da0f-4614-94da-f0614880e598} + {2d942679-5c4e-4a2a-b3b4-801f9265cdc3} - {db69e401-f14b-4c88-80f2-8160c621b495} + {af3bf96c-d4e9-417d-86e1-258c03f41675} - {6aa89dc7-f3a0-4feb-a0e5-312c22c16076} + {67eea73c-ff17-4f44-a5da-2aa443439b87} - {afccc434-431c-4c5d-acc2-de6f0e031360} + {3c9b1481-17bd-422e-8821-f19d0d814805} - {0ddb45b0-84de-4ae8-9f34-c371c301428b} + {ad81f285-174e-48fb-9ca2-a943e36cc362} - {5f3868e0-8110-4b3f-a606-ce322a1074dd} + {6601a84f-a19b-4c62-a9ed-03f3f6424159} - {16a04698-200d-438a-a3d7-ef1273b8e67a} + {8e42f9c2-ce90-4317-a7ed-23c85ff311dc} - {912fba68-221c-48fe-9c8f-559857dd138c} + {bc122dfa-fe7e-4b12-bbaf-89b466743076} - {f73cf0f3-bd53-4a25-87fe-9b8ed2501e55} + {774a7e11-5ded-4e23-a057-fc5dfb87243f} - {385d1e40-f94d-448f-acab-7d285992b8a8} + {171e8453-2e11-4396-a4de-b754809387fa} diff --git a/CppParser/testsuite/TestSuite_x64_vs110.vcxproj b/CppParser/testsuite/TestSuite_x64_vs110.vcxproj index 09d256ada..d5a2e591d 100644 --- a/CppParser/testsuite/TestSuite_x64_vs110.vcxproj +++ b/CppParser/testsuite/TestSuite_x64_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/CppParser/testsuite/TestSuite_x64_vs110.vcxproj.filters b/CppParser/testsuite/TestSuite_x64_vs110.vcxproj.filters index 9341c8e03..b5853bc45 100644 --- a/CppParser/testsuite/TestSuite_x64_vs110.vcxproj.filters +++ b/CppParser/testsuite/TestSuite_x64_vs110.vcxproj.filters @@ -2,37 +2,37 @@ - {82f5027e-61f8-4e6d-a470-c5e91d140f81} + {57b4ccb6-02d6-44ee-b85b-c7f7cdc8443a} - {b93eaa5d-c641-4928-873a-f6cbc02621f6} + {ac2a9529-9be0-4822-9ec1-62d23c5d503a} - {0061af94-0f93-4cd1-b824-e5c1db64868e} + {5050706a-8488-4fd0-8e36-588e577e6ea7} - {bd6b7d7e-37d2-4ba0-a787-a7092c6f824d} + {8a293c72-fe41-4983-8159-5364ceaa7d44} - {1ca511c5-0146-42d3-9b0b-11021b879fda} + {82aaf974-6d88-402c-9c0e-5a354f78b638} - {7baa2435-8866-46b7-a884-8d301377714f} + {5ae42f09-708f-418d-a654-77245a727e10} - {80ddb1c9-11f7-4171-95e3-235031bb0a9b} + {3845027b-bcb2-4bdf-9165-9021c7ef955d} - {f5372bb6-7624-4554-86bf-26fcd8439e9f} + {d921031f-5899-4820-acf5-db13790f4407} - {296fab82-e5e1-4269-858a-f60bffb23a74} + {5f55364c-9436-426c-acef-965f16ce8032} - {6473d1d6-398a-4ba8-ab8c-c1e3918939d1} + {e89c6088-31c8-46a5-8d60-34be2c35e7a8} - {e0cc863a-dea0-41c5-bd81-761a1123ad2d} + {adf4281a-a99b-4847-b08a-4ccea5f3d11b} diff --git a/CppParser/testsuite/TestSuite_x64_vs120.vcxproj b/CppParser/testsuite/TestSuite_x64_vs120.vcxproj index fec95643a..432a7f99c 100644 --- a/CppParser/testsuite/TestSuite_x64_vs120.vcxproj +++ b/CppParser/testsuite/TestSuite_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Console + Windows MachineX64 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 @@ -192,21 +202,20 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Console + Windows MachineX64 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX64 @@ -256,20 +264,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Console + Windows MachineX64 @@ -288,36 +295,35 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 - - - - + + + + - - - - - + + + + + - - - \ No newline at end of file + + + diff --git a/CppParser/testsuite/TestSuite_x64_vs120.vcxproj.filters b/CppParser/testsuite/TestSuite_x64_vs120.vcxproj.filters index 33c8e9daa..68bd5c41c 100644 --- a/CppParser/testsuite/TestSuite_x64_vs120.vcxproj.filters +++ b/CppParser/testsuite/TestSuite_x64_vs120.vcxproj.filters @@ -2,37 +2,37 @@ - {82f5027e-61f8-4e6d-a470-c5e91d140f81} + {c6f75888-f1f7-4649-b88f-b6979716e020} - {b93eaa5d-c641-4928-873a-f6cbc02621f6} + {89608790-ec19-4ccf-a6eb-dd36a2e76f3d} - {0061af94-0f93-4cd1-b824-e5c1db64868e} + {e408ef06-ec40-4eb6-984e-a39e648b19b2} - {bd6b7d7e-37d2-4ba0-a787-a7092c6f824d} + {ef1e9a16-0329-47db-b4d4-9fad33a7da4d} - {1ca511c5-0146-42d3-9b0b-11021b879fda} + {69612148-d050-4548-818b-9660e93e4658} - {7baa2435-8866-46b7-a884-8d301377714f} + {99a91180-df99-4632-a2c3-86592860da0b} - {80ddb1c9-11f7-4171-95e3-235031bb0a9b} + {c7c8ca56-a170-4d0b-bd41-8d33fc5ebc59} - {f5372bb6-7624-4554-86bf-26fcd8439e9f} + {1d50fe28-de86-43de-9b66-f0b400f4f577} - {296fab82-e5e1-4269-858a-f60bffb23a74} + {09adffc4-0bfc-46cf-8f67-f060d277d879} - {6473d1d6-398a-4ba8-ab8c-c1e3918939d1} + {46feb311-6080-4868-af92-41cdc750d72c} - {e0cc863a-dea0-41c5-bd81-761a1123ad2d} + {0da13581-0cc9-4947-b7c9-66fcf4aef5e4} @@ -56,14 +56,14 @@ _Suite\Source Files + + _Driver\Source Files + Attributes\Source Files Attributes\Source Files - - _Driver\Source Files - \ No newline at end of file diff --git a/Crypto/Crypto_vs100.vcxproj b/Crypto/Crypto_vs100.vcxproj index 3c6527ff2..8b59936d9 100644 --- a/Crypto/Crypto_vs100.vcxproj +++ b/Crypto/Crypto_vs100.vcxproj @@ -1,4 +1,4 @@ - + @@ -32,7 +32,7 @@ Crypto Win32Proj - + StaticLibrary MultiByte @@ -57,27 +57,27 @@ DynamicLibrary MultiByte - - + + - + - + - + - + - + - + - + <_ProjectFileVersion>10.0.40219.1 ..\bin\ @@ -104,7 +104,7 @@ Disabled - .\include;..\Foundation\include;C:\OpenSSL\include;%(AdditionalIncludeDirectories) + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;_USRDLL;Crypto_EXPORTS;%(PreprocessorDefinitions) true true @@ -114,7 +114,7 @@ true true true - + Level3 EditAndContinue Default @@ -139,7 +139,7 @@ true Speed true - .\include;..\Foundation\include;C:\OpenSSL\include;%(AdditionalIncludeDirectories) + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;_USRDLL;Crypto_EXPORTS;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -147,9 +147,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -169,7 +169,7 @@ Disabled - .\include;..\Foundation\include;C:\OpenSSL\include;%(AdditionalIncludeDirectories) + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -179,7 +179,7 @@ true true true - + ..\lib\PocoCryptomtd.pdb Level3 EditAndContinue @@ -197,7 +197,7 @@ true Speed true - .\include;..\Foundation\include;C:\OpenSSL\include;%(AdditionalIncludeDirectories) + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded @@ -205,9 +205,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -218,7 +218,7 @@ Disabled - .\include;..\Foundation\include;C:\OpenSSL\include;%(AdditionalIncludeDirectories) + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -228,7 +228,7 @@ true true true - + ..\lib\PocoCryptomdd.pdb Level3 EditAndContinue @@ -246,7 +246,7 @@ true Speed true - .\include;..\Foundation\include;C:\OpenSSL\include;%(AdditionalIncludeDirectories) + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -254,10 +254,10 @@ true true true - + ..\lib\PocoCryptomd.pdb Level3 - + Default %(DisableSpecificWarnings) @@ -267,37 +267,37 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -307,6 +307,6 @@ true - - - \ No newline at end of file + + + diff --git a/Crypto/Crypto_vs100.vcxproj.filters b/Crypto/Crypto_vs100.vcxproj.filters index 59564d126..af3a9ca7d 100644 --- a/Crypto/Crypto_vs100.vcxproj.filters +++ b/Crypto/Crypto_vs100.vcxproj.filters @@ -2,49 +2,49 @@ - {817dcc42-c43d-448f-b6f4-682c7b9eebce} + {52aa573b-f3b6-44dd-ab29-57ad41facdca} - {b9acfa88-5b37-438b-b02a-a0305d660abb} + {defeeff7-22b7-43d3-aaae-0c82364ba582} - {9a337c49-202e-44c6-96b5-544b0c568f31} + {97613064-57f5-4e3c-8329-187d9c0a0620} - {92a5c4bb-ff46-465d-98e9-de53992f84f3} + {a5148f54-59c6-4d71-bb71-3ea6b8977d03} - {a1fbc3f1-3626-46ba-afb2-04a076dc20e9} + {5c3247f8-7bde-4c68-958b-bbb6ae01c8a1} - {a54fb963-33ef-4bdb-96ef-3008e5922b60} + {f2f975dc-3988-4343-b583-545bbde06b3a} - {9b4b7e92-fcb9-42e6-979b-239432f7f7d5} + {2616a78b-350a-41b5-bcdb-84f6542e78c1} - {5ffce66b-4bf8-4a66-b499-e28c798bb193} + {76c7f9f5-0236-4f5e-ad73-62425a1a9fb5} - {e898392c-d0f3-40b5-88ce-8c39659ce83f} + {4984522c-9d98-41c4-884d-f2c86d6abdb0} - {4cc14755-2ecd-4ebe-9f8d-916b11107ccb} + {949dd63d-165e-44e5-99b7-f1d4ee314901} - {d1a13755-0bbe-47bc-9235-7e85250fa75b} + {8f446b0b-c8a8-4284-b940-a2978f2e381e} - {49706855-ad39-4ff3-a3ef-ecc99c59c7d2} + {75cbb619-fbca-46c1-95db-00ed801e5cf4} - {25c9d0f5-3a6e-454e-a72e-77557cd02ad1} + {d103b9db-d3be-4893-bfd3-373d0b833038} - {e939a817-2082-4c93-bd5d-6771b0706aa8} + {1a56fecc-efa7-4fde-b8df-6ca4ecc5f002} - {7dea865f-63e2-4135-b1d4-1113148896b3} + {38a9ccab-a042-459e-9b44-36a3fe012d7c} diff --git a/Crypto/Crypto_vs110.vcxproj b/Crypto/Crypto_vs110.vcxproj index e3d87b553..17f0dea41 100644 --- a/Crypto/Crypto_vs110.vcxproj +++ b/Crypto/Crypto_vs110.vcxproj @@ -1,4 +1,4 @@ - + @@ -32,7 +32,7 @@ Crypto Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v110 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoCryptod PocoCryptomdd PocoCryptomtd @@ -107,34 +93,31 @@ PocoCryptomd PocoCryptomt - - C:\OpenSSL\include;$(IncludePath) - $(VCInstallDir)atlmfc\lib;$(VCInstallDir)lib - C:\OpenSSL\lib\VC\static;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86);;C:\OpenSSL\lib - - - C:\OpenSSL\include;$(IncludePath) - $(VCInstallDir)atlmfc\lib;$(VCInstallDir)lib - C:\OpenSSL\lib\VC\static;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86);;C:\OpenSSL\lib - - - C:\OpenSSL\include;$(IncludePath) - $(VCInstallDir)atlmfc\lib;$(VCInstallDir)lib - C:\OpenSSL\lib\VC\static;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86);;C:\OpenSSL\lib - - - C:\OpenSSL\include;$(IncludePath) - C:\OpenSSL\lib\VC\static;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86);;C:\OpenSSL\lib + + ..\bin\ + obj\$(Configuration)\ + true - C:\OpenSSL\include;$(IncludePath) - $(VCInstallDir)atlmfc\lib;$(VCInstallDir)lib - C:\OpenSSL\lib\VC;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86);;C:\OpenSSL\lib + ..\bin\ + obj\$(Configuration)\ + false - - C:\OpenSSL\include;$(IncludePath) - $(VCInstallDir)atlmfc\lib;$(VCInstallDir)lib - C:\OpenSSL\lib\VC;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86);;C:\OpenSSL\lib + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ @@ -149,11 +132,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) @@ -182,11 +164,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) @@ -214,12 +195,11 @@ true true true - + ..\lib\PocoCryptomtd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoCryptomtd.lib @@ -240,11 +220,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib\PocoCryptomt.lib @@ -263,12 +242,11 @@ true true true - + ..\lib\PocoCryptomdd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoCryptomdd.lib @@ -289,54 +267,58 @@ true true true - + ..\lib\PocoCryptomd.pdb Level3 - + Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) + ws2_32.lib;iphlpapi.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;%(AdditionalDependencies) ..\lib\PocoCryptomd.lib - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + + true + true + true + true + - - - \ No newline at end of file + + + diff --git a/Crypto/Crypto_vs110.vcxproj.filters b/Crypto/Crypto_vs110.vcxproj.filters index 7c16467a5..62ead5b1c 100644 --- a/Crypto/Crypto_vs110.vcxproj.filters +++ b/Crypto/Crypto_vs110.vcxproj.filters @@ -2,49 +2,49 @@ - {17594743-3f2a-4d0a-b9f2-1ca0bb26cc43} + {9586ad2e-68d9-457d-811f-1a8d14335e51} - {c0d3b9f3-9eec-4517-a3d2-4612ced13c30} + {916f486f-927d-4006-8eeb-d2d2a0a01828} - {4ec98d78-64f3-4fa5-98a3-3f0390361fd0} + {bc3bc671-e964-42d2-b738-6a369b1ea57e} - {85bc4e63-194e-4b61-99d0-175653201d78} + {533a867d-4aee-48d3-9e58-1259d2ec58b7} - {bf6c3bf5-b255-4056-a747-30ae03bf3349} + {68ef201b-40c6-4513-9ac4-4f55ceeba64d} - {58c8d32d-a284-4f25-9f3b-7ad71773a245} + {427156c5-d004-4b43-a4fd-9d838dbda703} - {2f7618fd-a309-4b9b-b5f4-44758eb9e1aa} + {04c78ad3-01a9-4fa9-a71c-9a4ecc1612a4} - {41359fb8-89cb-47c8-a492-96a495599bb8} + {ae2f65ec-8d4b-42c6-9f03-1bf06a83601e} - {3d1cdd90-779b-4d65-a02b-650fe695e311} + {8fb11242-0182-4e83-b884-615025241d85} - {0d281f4c-ec39-4580-a67b-c45533a2121c} + {bfbdd795-b32e-42a2-86f0-0c7262ce93e9} - {8fd56e7b-745f-4b74-8f8b-6f97dc587eaa} + {8aa40931-82ab-473c-bd8f-8e756a5f7ef6} - {2d809b0b-b26c-4587-ad74-9729d040e6c0} + {d18621bd-e305-4084-bd6d-5c73b30b2bf6} - {c3f1cc05-f4e6-4e31-bc04-3dec0d300f4d} + {2a41a8ff-6094-41d6-b241-7f6534aba40a} - {e7dfc2ed-51f6-4277-b4b3-2dd27f0d3247} + {c9970830-1cfd-4913-903f-6683d41ab4fa} - {5a9bcfa5-e9c8-4f64-abce-b452db7c6b94} + {c3539f35-86fa-4b32-9b4d-619c2033c715} diff --git a/Crypto/Crypto_vs120.sln b/Crypto/Crypto_vs120.sln index 200fd6bb0..6f57015e6 100644 --- a/Crypto/Crypto_vs120.sln +++ b/Crypto/Crypto_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Crypto", "Crypto_vs120.vcxproj", "{EEEE7259-32E9-4D56-B023-C733940AB2A0}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_vs120.vcxproj", "{C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_shared|Win32.ActiveCfg = release_shared|Win32 {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_shared|Win32.Build.0 = release_shared|Win32 - {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_shared|Win32.ActiveCfg = release_shared|Win32 {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_shared|Win32.Build.0 = release_shared|Win32 - {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Crypto/Crypto_vs120.vcxproj b/Crypto/Crypto_vs120.vcxproj index 683ffe5e2..604ef07e2 100644 --- a/Crypto/Crypto_vs120.vcxproj +++ b/Crypto/Crypto_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Crypto Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoCryptod PocoCryptomdd PocoCryptomtd @@ -107,34 +93,31 @@ PocoCryptomd PocoCryptomt - - C:\OpenSSL-Win32\include;$(IncludePath) - $(VCInstallDir)atlmfc\lib;$(VCInstallDir)lib - C:\OpenSSL-Win32\lib\VC\static;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86);;C:\OpenSSL\lib - - - C:\OpenSSL-Win32\include;$(IncludePath) - $(VCInstallDir)atlmfc\lib;$(VCInstallDir)lib - C:\OpenSSL-Win32\lib\VC\static;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86);;C:\OpenSSL\lib - - - C:\OpenSSL-Win32\include;$(IncludePath) - $(VCInstallDir)atlmfc\lib;$(VCInstallDir)lib - C:\OpenSSL-Win32\lib\VC\static;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86);;C:\OpenSSL\lib - - - C:\OpenSSL-Win32\include;$(IncludePath) - C:\OpenSSL-Win32\lib\VC\static;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86);;C:\OpenSSL\lib + + ..\bin\ + obj\$(Configuration)\ + true - C:\OpenSSL-Win32\include;$(IncludePath) - $(VCInstallDir)atlmfc\lib;$(VCInstallDir)lib - C:\OpenSSL-Win32\lib\VC;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86);;C:\OpenSSL\lib + ..\bin\ + obj\$(Configuration)\ + false - - C:\OpenSSL-Win32\include;$(IncludePath) - $(VCInstallDir)atlmfc\lib;$(VCInstallDir)lib - C:\OpenSSL-Win32\lib\VC;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86);;C:\OpenSSL\lib + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ @@ -149,14 +132,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;libeay32MDd.lib;ssleay32MDd.lib;%(AdditionalDependencies) + ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) ..\bin\PocoCryptod.dll true true @@ -182,14 +164,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;libeay32MD.lib;ssleay32MD.lib;%(AdditionalDependencies) + ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) ..\bin\PocoCrypto.dll true false @@ -214,12 +195,11 @@ true true true - + ..\lib\PocoCryptomtd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoCryptomtd.lib @@ -240,11 +220,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib\PocoCryptomt.lib @@ -263,12 +242,11 @@ true true true - + ..\lib\PocoCryptomdd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoCryptomdd.lib @@ -289,54 +267,58 @@ true true true - + ..\lib\PocoCryptomd.pdb Level3 - + Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) + ws2_32.lib;iphlpapi.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;%(AdditionalDependencies) ..\lib\PocoCryptomd.lib - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + + true + true + true + true + - - - \ No newline at end of file + + + diff --git a/Crypto/Crypto_vs120.vcxproj.filters b/Crypto/Crypto_vs120.vcxproj.filters index 7c16467a5..235f46aaf 100644 --- a/Crypto/Crypto_vs120.vcxproj.filters +++ b/Crypto/Crypto_vs120.vcxproj.filters @@ -2,49 +2,49 @@ - {17594743-3f2a-4d0a-b9f2-1ca0bb26cc43} + {b14676c0-6768-4965-bbe3-d372790b20f7} - {c0d3b9f3-9eec-4517-a3d2-4612ced13c30} + {86a4709a-80df-4681-a9d9-ff662f3cd35c} - {4ec98d78-64f3-4fa5-98a3-3f0390361fd0} + {ae4c7dc3-3118-4fff-bb0a-0599b9daee7d} - {85bc4e63-194e-4b61-99d0-175653201d78} + {a08ded1c-f337-4bf0-85b8-fccd9b533c91} - {bf6c3bf5-b255-4056-a747-30ae03bf3349} + {9dc05c3e-63c2-476a-8993-7d892f682da7} - {58c8d32d-a284-4f25-9f3b-7ad71773a245} + {73da2ed5-7a7f-410d-bbb1-2dd51570b4ab} - {2f7618fd-a309-4b9b-b5f4-44758eb9e1aa} + {6ae28e39-6364-4ebd-9906-0e6e3f67d773} - {41359fb8-89cb-47c8-a492-96a495599bb8} + {491130f1-cba5-4348-a8f9-e522e5426cf1} - {3d1cdd90-779b-4d65-a02b-650fe695e311} + {381bcd7e-722f-46f1-a970-d876d433c408} - {0d281f4c-ec39-4580-a67b-c45533a2121c} + {ab86363e-2119-4265-9106-796fcac9ec1d} - {8fd56e7b-745f-4b74-8f8b-6f97dc587eaa} + {8d11161d-756b-4e67-8244-3159c1918941} - {2d809b0b-b26c-4587-ad74-9729d040e6c0} + {77866dee-15f1-48ba-acca-66deffe89f1b} - {c3f1cc05-f4e6-4e31-bc04-3dec0d300f4d} + {481c2952-f6b4-4a97-84de-82eb17443bff} - {e7dfc2ed-51f6-4277-b4b3-2dd27f0d3247} + {ffbb0a92-c003-41f9-9c70-89b20d892f0c} - {5a9bcfa5-e9c8-4f64-abce-b452db7c6b94} + {14bfba97-0048-431a-90ac-4dad4048beb7} diff --git a/Crypto/Crypto_x64_vs100.vcxproj b/Crypto/Crypto_x64_vs100.vcxproj index 4981188b0..147fa98e2 100644 --- a/Crypto/Crypto_x64_vs100.vcxproj +++ b/Crypto/Crypto_x64_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoCrypto64d - PocoCryptomdd - PocoCryptomtd - PocoCrypto64 - PocoCryptomd - PocoCryptomt + ..\bin64\ + obj64\$(Configuration)\ + true + ..\bin64\ + obj64\$(Configuration)\ + false + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + PocoCrypto64d + PocoCryptomdd + PocoCryptomtd + PocoCrypto64 + PocoCryptomd + PocoCryptomt - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib64\PocoCryptomtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib64\PocoCryptomt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib64\PocoCryptomdd.lib - + Disabled OnlyExplicitInline @@ -299,10 +299,10 @@ - true - true - true - true + true + true + true + true diff --git a/Crypto/Crypto_x64_vs100.vcxproj.filters b/Crypto/Crypto_x64_vs100.vcxproj.filters index f6c2ec39f..176690b2a 100644 --- a/Crypto/Crypto_x64_vs100.vcxproj.filters +++ b/Crypto/Crypto_x64_vs100.vcxproj.filters @@ -2,49 +2,49 @@ - {0547bb78-91a3-42a6-98d7-eee4062fc96d} + {b8e545d0-b4c4-474e-a8f9-90d9bc210f57} - {6ee6b22f-ccff-4894-a138-aead4aa517e7} + {1a451d4e-fa60-45f5-8c2c-bbb1013cc34f} - {73645c11-6227-4871-94e3-d77dd3f24291} + {42b4397d-7b59-4e82-a57d-301c175cd9de} - {ac1d2c15-a701-44b8-a5d0-53270a9b49fb} + {a4e5b8c6-1b46-435d-a522-f69e48bf44c5} - {7d984e13-4192-4041-bdb1-728de0684d30} + {76936756-9641-4b0b-a079-b8ddde16b278} - {a9be19c9-3057-48eb-a21f-a9591307ea36} + {4582185a-8cba-419d-94f6-f9d0bc2e8306} - {53333def-b74f-4969-b6eb-cf158a31e5d4} + {96fe9c7f-009d-4cc5-b9da-46a8bbfefd77} - {1c36d55a-2e79-4a52-83bb-df0ee7b973d5} + {eef71fd7-e1ea-469b-b22a-1bb61eadbc90} - {fd3b9e34-05c4-4754-b481-185dfe34e547} + {c77d58ce-aa42-45a2-bbca-ae438a8cc13d} - {1e012891-c009-45bb-aa3a-76abae9b9235} + {24fb9285-22c9-4d24-9495-7f0bf7916cb8} - {97b573b3-41fe-489f-b74e-a29f3ca2cd1b} + {76cdc88e-df87-4d30-a278-7d1b8137f0b0} - {e8ea85fa-b22d-4850-a9a2-6c8390f6169d} + {77b56bbe-74ed-44e6-a10f-a72ef25fa015} - {673a5ceb-4d21-4e09-b77f-4070077ac56d} + {3ad511f6-5f31-4f41-a9b2-9e1811d0c2b3} - {ef4c04a0-8f67-4a3c-9a63-ceafdd5fa6e1} + {961fe017-5281-4ef9-9128-2eaff7842baf} - {ab15490c-a15c-4d2b-b499-e292a6fc4502} + {e06e1c9e-408f-400c-b97a-2322367edcc3} diff --git a/Crypto/Crypto_x64_vs110.vcxproj b/Crypto/Crypto_x64_vs110.vcxproj index bc049b3e3..815f5c23e 100644 --- a/Crypto/Crypto_x64_vs110.vcxproj +++ b/Crypto/Crypto_x64_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoCrypto64d - PocoCryptomdd - PocoCryptomtd - PocoCrypto64 - PocoCryptomd - PocoCryptomt + <_ProjectFileVersion>11.0.61030.0 + PocoCrypto64d + PocoCryptomdd + PocoCryptomtd + PocoCrypto64 + PocoCryptomd + PocoCryptomt - + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -124,7 +136,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) @@ -138,7 +149,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -157,7 +168,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) @@ -172,7 +182,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,13 +200,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoCryptomtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +224,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoCryptomt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,13 +247,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoCryptomdd.lib - + Disabled OnlyExplicitInline @@ -264,7 +271,6 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoCryptomd.lib @@ -305,10 +311,10 @@ - true - true - true - true + true + true + true + true diff --git a/Crypto/Crypto_x64_vs110.vcxproj.filters b/Crypto/Crypto_x64_vs110.vcxproj.filters index 55cc54c49..4eeb58483 100644 --- a/Crypto/Crypto_x64_vs110.vcxproj.filters +++ b/Crypto/Crypto_x64_vs110.vcxproj.filters @@ -2,49 +2,49 @@ - {3f9f5db7-e5a5-4665-ac8a-ba3b69472818} + {ccd02956-01ad-4bf2-9f72-4035f4d4f2d1} - {213f2cb2-159b-4c5d-9476-ac88d1edbe41} + {4e8a38cf-0f1e-43db-81d4-7cbf7ddd6ce1} - {04acc5ed-cf5c-4559-8d18-b868152590ba} + {7108ea34-2636-42c2-97ed-887789fd4738} - {a7a20176-8f0b-4819-a12c-7bd07667a2b2} + {e0b2909f-f0e0-4942-8e89-d73dcdfa1e73} - {b5aa8129-dc21-4a39-b45e-b21130fc0d00} + {e0fd7172-d76f-4fb6-a565-458db6db9449} - {abc7e151-a8f8-4abd-80ca-53ac9a3bf00d} + {3c29660e-00ce-4d89-9981-f1b12a8c84cf} - {2e604245-080b-45fc-be1b-4fc052de941d} + {d83ae0c4-9253-45f4-9c6b-4132e751e500} - {c619c482-ec12-4c90-9272-3d49b3b67618} + {4c6bb189-dad4-4725-a3f3-a6b20a131fcf} - {354d77a3-0818-4e37-9ff5-e2e22260408e} + {c8a078da-35a0-4a64-91cf-3a0403d9b022} - {d4f86c3f-bdc6-4ac3-bf88-7984d22fca2f} + {dbc91ba2-2e64-45dd-9263-e78f0f817dac} - {fd2a6fb2-66d6-4132-b3a6-10ca6326e634} + {41dc3cfc-dc59-451d-9229-14941cfd4595} - {3782f037-1b89-44ee-8758-1527f0f13bd3} + {de50be71-b76e-4d20-a01b-f100a17c271c} - {9432ffdb-04a3-4261-a59a-2bfb8dd1a16d} + {5ff582da-d4bb-4920-a989-5c26bbff254e} - {45a5fa97-2c74-4311-b2e7-803135265ae6} + {467230d5-1aca-4bb4-ac51-23820632f4d8} - {c31ed094-d39a-4818-925e-736e5476fc7f} + {11e2246d-2bf6-4436-a473-12a414af5aea} diff --git a/Crypto/Crypto_x64_vs120.sln b/Crypto/Crypto_x64_vs120.sln index 4575fb7f6..d99dbdc6d 100644 --- a/Crypto/Crypto_x64_vs120.sln +++ b/Crypto/Crypto_x64_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Crypto", "Crypto_x64_vs120.vcxproj", "{EEEE7259-32E9-4D56-B023-C733940AB2A0}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_x64_vs120.vcxproj", "{C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_shared|x64.ActiveCfg = debug_shared|x64 {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_shared|x64.Build.0 = debug_shared|x64 - {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_shared|x64.Deploy.0 = debug_shared|x64 {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_shared|x64.ActiveCfg = release_shared|x64 {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_shared|x64.Build.0 = release_shared|x64 - {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_md|x64.Build.0 = release_static_md|x64 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_shared|x64.Deploy.0 = release_shared|x64 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_md|x64.Build.0 = release_static_md|x64 + {EEEE7259-32E9-4D56-B023-C733940AB2A0}.release_static_md|x64.Deploy.0 = release_static_md|x64 {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_shared|x64.ActiveCfg = debug_shared|x64 {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_shared|x64.Build.0 = debug_shared|x64 - {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_shared|x64.Deploy.0 = debug_shared|x64 {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_shared|x64.ActiveCfg = release_shared|x64 {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_shared|x64.Build.0 = release_shared|x64 - {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_md|x64.Build.0 = release_static_md|x64 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_shared|x64.Deploy.0 = release_shared|x64 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_md|x64.Build.0 = release_static_md|x64 + {C1B1BB96-5198-48EB-AB48-9A0A0B54FB15}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Crypto/Crypto_x64_vs120.vcxproj b/Crypto/Crypto_x64_vs120.vcxproj index b41b6d11f..534e81936 100644 --- a/Crypto/Crypto_x64_vs120.vcxproj +++ b/Crypto/Crypto_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Crypto Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoCrypto64d PocoCryptomdd PocoCryptomtd @@ -107,29 +93,31 @@ PocoCryptomd PocoCryptomt - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\VC\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\VC;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\VC;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\VC\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + + ..\bin64\ + obj64\$(Configuration)\ + true - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\VC;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + ..\bin64\ + obj64\$(Configuration)\ + false - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\VC;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ @@ -144,14 +132,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;libeay32MDd.lib;ssleay32MDd.lib;%(AdditionalDependencies) + ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) ..\bin64\PocoCrypto64d.dll true true @@ -177,14 +164,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;libeay32MD.lib;ssleay32MD.lib;%(AdditionalDependencies) + ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) ..\bin64\PocoCrypto64.dll true false @@ -209,12 +195,11 @@ true true true - + ..\lib64\PocoCryptomtd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoCryptomtd.lib @@ -235,11 +220,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoCryptomt.lib @@ -258,12 +242,11 @@ true true true - + ..\lib64\PocoCryptomdd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoCryptomdd.lib @@ -284,48 +267,47 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoCryptomd.lib - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -335,6 +317,6 @@ true - - - \ No newline at end of file + + + diff --git a/Crypto/Crypto_x64_vs120.vcxproj.filters b/Crypto/Crypto_x64_vs120.vcxproj.filters index 55cc54c49..90cb42190 100644 --- a/Crypto/Crypto_x64_vs120.vcxproj.filters +++ b/Crypto/Crypto_x64_vs120.vcxproj.filters @@ -2,49 +2,49 @@ - {3f9f5db7-e5a5-4665-ac8a-ba3b69472818} + {9820e89c-50f2-4f23-9a9c-9fe7c82f1601} - {213f2cb2-159b-4c5d-9476-ac88d1edbe41} + {6430dd92-8be0-4494-8737-865247764d59} - {04acc5ed-cf5c-4559-8d18-b868152590ba} + {554f604e-ce75-4980-9d43-e37cf72b7c49} - {a7a20176-8f0b-4819-a12c-7bd07667a2b2} + {7279fbe0-8d9f-4a96-b11f-459ac675c77d} - {b5aa8129-dc21-4a39-b45e-b21130fc0d00} + {9597d44c-7b55-4a14-a316-463a567c96c0} - {abc7e151-a8f8-4abd-80ca-53ac9a3bf00d} + {4e737f37-2d77-443c-bbaf-9b01a0c956b8} - {2e604245-080b-45fc-be1b-4fc052de941d} + {6841f45c-70a7-4ca4-a236-68c55232e501} - {c619c482-ec12-4c90-9272-3d49b3b67618} + {ce54adb5-7bc0-4764-bf2c-79bf8c933b02} - {354d77a3-0818-4e37-9ff5-e2e22260408e} + {4b16ee53-52b4-4f46-b2c9-4abe1d0626f8} - {d4f86c3f-bdc6-4ac3-bf88-7984d22fca2f} + {a840eb74-4c28-4293-a6e3-12d43d7e4e93} - {fd2a6fb2-66d6-4132-b3a6-10ca6326e634} + {96228cab-2225-4112-809b-0d8e367b3b1d} - {3782f037-1b89-44ee-8758-1527f0f13bd3} + {b0081617-f74f-4c40-804d-ef793dd54b82} - {9432ffdb-04a3-4261-a59a-2bfb8dd1a16d} + {b944097e-b5b7-406a-a8fa-2660b214d3d5} - {45a5fa97-2c74-4311-b2e7-803135265ae6} + {eb6f9c36-2d7f-4604-9c81-d2e2226d16a5} - {c31ed094-d39a-4818-925e-736e5476fc7f} + {b4da77ae-932b-4ef8-a2bf-b132f6642c11} diff --git a/Crypto/samples/genrsakey/genrsakey_vs100.vcxproj b/Crypto/samples/genrsakey/genrsakey_vs100.vcxproj index 7e3d9809d..1947c3f3b 100644 --- a/Crypto/samples/genrsakey/genrsakey_vs100.vcxproj +++ b/Crypto/samples/genrsakey/genrsakey_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - genrsakeyd - genrsakeyd - genrsakeyd - genrsakey - genrsakey - genrsakey + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + genrsakeyd + genrsakeyd + genrsakeyd + genrsakey + genrsakey + genrsakey - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Crypto/samples/genrsakey/genrsakey_vs100.vcxproj.filters b/Crypto/samples/genrsakey/genrsakey_vs100.vcxproj.filters index 03a5b3145..66908b09e 100644 --- a/Crypto/samples/genrsakey/genrsakey_vs100.vcxproj.filters +++ b/Crypto/samples/genrsakey/genrsakey_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {a968fe8b-bb93-43e8-97b2-eb38a9a37022} + {61712db6-9895-466d-b5d3-4dda089fc043} - {dfe4b514-4c67-4a8d-bbec-df328d0423a0} + {b968a863-83b0-4a30-accc-512341494dfb} diff --git a/Crypto/samples/genrsakey/genrsakey_vs110.vcxproj b/Crypto/samples/genrsakey/genrsakey_vs110.vcxproj index 2572a6cd2..d1b1b21b5 100644 --- a/Crypto/samples/genrsakey/genrsakey_vs110.vcxproj +++ b/Crypto/samples/genrsakey/genrsakey_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - genrsakeyd - genrsakeyd - genrsakeyd - genrsakey - genrsakey - genrsakey + <_ProjectFileVersion>11.0.61030.0 + genrsakeyd + genrsakeyd + genrsakeyd + genrsakey + genrsakey + genrsakey - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Crypto/samples/genrsakey/genrsakey_vs110.vcxproj.filters b/Crypto/samples/genrsakey/genrsakey_vs110.vcxproj.filters index 166c41e4d..5c9bf936f 100644 --- a/Crypto/samples/genrsakey/genrsakey_vs110.vcxproj.filters +++ b/Crypto/samples/genrsakey/genrsakey_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {381b2559-cc38-487e-b5bf-b795affe682c} + {06207a2d-dedf-49f7-afb3-d5174cf881f8} - {96980b90-ddc8-4f21-8d66-511c4eeb1f1b} + {d5079db2-7617-4930-95d6-f9d973b5aa05} diff --git a/Crypto/samples/genrsakey/genrsakey_vs120.vcxproj b/Crypto/samples/genrsakey/genrsakey_vs120.vcxproj index 6fa2ec74c..21ceb19e5 100644 --- a/Crypto/samples/genrsakey/genrsakey_vs120.vcxproj +++ b/Crypto/samples/genrsakey/genrsakey_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ genrsakey Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 genrsakeyd genrsakeyd genrsakeyd @@ -111,29 +93,35 @@ genrsakey genrsakey - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + + bin\ + obj\$(Configuration)\ + true - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + bin\ + obj\$(Configuration)\ + false - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false @@ -148,14 +136,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - libeay32MDd.lib;ssleay32MDd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\genrsakeyd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -180,14 +167,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - libeay32MD.lib;ssleay32MD.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\genrsakey.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -210,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -242,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -304,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -322,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Crypto/samples/genrsakey/genrsakey_vs120.vcxproj.filters b/Crypto/samples/genrsakey/genrsakey_vs120.vcxproj.filters index 166c41e4d..1c35de949 100644 --- a/Crypto/samples/genrsakey/genrsakey_vs120.vcxproj.filters +++ b/Crypto/samples/genrsakey/genrsakey_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {381b2559-cc38-487e-b5bf-b795affe682c} + {26203f04-1f43-45ed-81c6-047bc5e18527} - {96980b90-ddc8-4f21-8d66-511c4eeb1f1b} + {620a2fb4-6fb3-4ac9-98ce-dbe20be213d1} diff --git a/Crypto/samples/genrsakey/genrsakey_x64_vs100.vcxproj b/Crypto/samples/genrsakey/genrsakey_x64_vs100.vcxproj index 27d9ffd62..60ebfe722 100644 --- a/Crypto/samples/genrsakey/genrsakey_x64_vs100.vcxproj +++ b/Crypto/samples/genrsakey/genrsakey_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - genrsakeyd - genrsakeyd - genrsakeyd - genrsakey - genrsakey - genrsakey + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + genrsakeyd + genrsakeyd + genrsakeyd + genrsakey + genrsakey + genrsakey - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Crypto/samples/genrsakey/genrsakey_x64_vs100.vcxproj.filters b/Crypto/samples/genrsakey/genrsakey_x64_vs100.vcxproj.filters index df8f10509..b7dc513a0 100644 --- a/Crypto/samples/genrsakey/genrsakey_x64_vs100.vcxproj.filters +++ b/Crypto/samples/genrsakey/genrsakey_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {8dd265c7-1f67-47b4-9ae5-768ea08464d8} + {525a10c8-7f70-478c-b9bf-4179b9c6fbeb} - {9bfd7dbb-db21-4332-9f31-aebfd9e7287b} + {70a10c57-ca6f-4a38-8475-be32c793a293} diff --git a/Crypto/samples/genrsakey/genrsakey_x64_vs110.vcxproj b/Crypto/samples/genrsakey/genrsakey_x64_vs110.vcxproj index 47d8bf721..aff3073f9 100644 --- a/Crypto/samples/genrsakey/genrsakey_x64_vs110.vcxproj +++ b/Crypto/samples/genrsakey/genrsakey_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - genrsakeyd - genrsakeyd - genrsakeyd - genrsakey - genrsakey - genrsakey + <_ProjectFileVersion>11.0.61030.0 + genrsakeyd + genrsakeyd + genrsakeyd + genrsakey + genrsakey + genrsakey - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Crypto/samples/genrsakey/genrsakey_x64_vs110.vcxproj.filters b/Crypto/samples/genrsakey/genrsakey_x64_vs110.vcxproj.filters index 37715bebb..2f7b28975 100644 --- a/Crypto/samples/genrsakey/genrsakey_x64_vs110.vcxproj.filters +++ b/Crypto/samples/genrsakey/genrsakey_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {752288ff-9835-4729-a04f-7862c6391838} + {1f5346a9-de0d-48fb-9b08-b7e89ff6f8fd} - {dc290695-43b9-4284-b075-1eadd4cb2cf3} + {45a48cc7-f163-46a0-8048-dbdb30f80111} diff --git a/Crypto/samples/genrsakey/genrsakey_x64_vs120.vcxproj b/Crypto/samples/genrsakey/genrsakey_x64_vs120.vcxproj index dd05a2ac7..0a574e4fb 100644 --- a/Crypto/samples/genrsakey/genrsakey_x64_vs120.vcxproj +++ b/Crypto/samples/genrsakey/genrsakey_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ genrsakey Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 genrsakeyd genrsakeyd genrsakeyd @@ -111,29 +93,35 @@ genrsakey genrsakey - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + + bin64\ + obj64\$(Configuration)\ + true - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + bin64\ + obj64\$(Configuration)\ + false - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false @@ -148,14 +136,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - libeay32MDd.lib;ssleay32MDd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\genrsakeyd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -180,14 +167,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - libeay32MD.lib;ssleay32MD.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\genrsakey.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -210,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -242,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -304,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -322,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Crypto/samples/genrsakey/genrsakey_x64_vs120.vcxproj.filters b/Crypto/samples/genrsakey/genrsakey_x64_vs120.vcxproj.filters index 37715bebb..75d83a4ea 100644 --- a/Crypto/samples/genrsakey/genrsakey_x64_vs120.vcxproj.filters +++ b/Crypto/samples/genrsakey/genrsakey_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {752288ff-9835-4729-a04f-7862c6391838} + {7d214f0b-5eb2-4864-945f-c334a5a6c849} - {dc290695-43b9-4284-b075-1eadd4cb2cf3} + {e2cfab8d-c3ed-42ba-812d-78adcbf32966} diff --git a/Crypto/samples/samples_vs120.sln b/Crypto/samples/samples_vs120.sln index 25b6231a9..348805354 100644 --- a/Crypto/samples/samples_vs120.sln +++ b/Crypto/samples/samples_vs120.sln @@ -1,31 +1,35 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "genrsakey", "genrsakey\genrsakey_vs120.vcxproj", "{D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_shared|Win32.ActiveCfg = release_shared|Win32 {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_shared|Win32.Build.0 = release_shared|Win32 - {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Crypto/samples/samples_x64_vs120.sln b/Crypto/samples/samples_x64_vs120.sln index a154e24a5..9efedd3c5 100644 --- a/Crypto/samples/samples_x64_vs120.sln +++ b/Crypto/samples/samples_x64_vs120.sln @@ -1,31 +1,35 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "genrsakey", "genrsakey\genrsakey_x64_vs120.vcxproj", "{D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_shared|x64.ActiveCfg = debug_shared|x64 {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_shared|x64.Build.0 = debug_shared|x64 - {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_shared|x64.Deploy.0 = debug_shared|x64 {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_shared|x64.ActiveCfg = release_shared|x64 {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_shared|x64.Build.0 = release_shared|x64 - {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_md|x64.Build.0 = release_static_md|x64 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_shared|x64.Deploy.0 = release_shared|x64 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_md|x64.Build.0 = release_static_md|x64 + {D6BE1AD9-4CB6-3184-8DF8-5210AE7D6947}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Crypto/testsuite/TestSuite_vs100.vcxproj b/Crypto/testsuite/TestSuite_vs100.vcxproj index 1b7c0aa2d..85bee59c7 100644 --- a/Crypto/testsuite/TestSuite_vs100.vcxproj +++ b/Crypto/testsuite/TestSuite_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -257,7 +257,7 @@ %(DisableSpecificWarnings) - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true @@ -267,7 +267,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -289,7 +289,7 @@ %(DisableSpecificWarnings) - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false diff --git a/Crypto/testsuite/TestSuite_vs100.vcxproj.filters b/Crypto/testsuite/TestSuite_vs100.vcxproj.filters index 83d32262a..190abbb10 100644 --- a/Crypto/testsuite/TestSuite_vs100.vcxproj.filters +++ b/Crypto/testsuite/TestSuite_vs100.vcxproj.filters @@ -2,28 +2,28 @@ - {b0c1cc37-d276-4845-9ef2-5b223ffe0fdc} + {4621c90a-5aad-472b-9283-240375fa6e25} - {44e816a4-2a81-4e6d-9d58-6b486c7415b3} + {2ce1e7d6-7724-46cc-acab-486529daf8f9} - {465c6e7b-5b77-4890-b656-277d61142ce0} + {99a1ac31-2086-4059-abbf-f156b6e684b6} - {8859d3f9-2bad-46e8-8478-06bac5e0eba4} + {acaedaf7-94a9-42ab-8c8a-6de861a7e7bf} - {29193557-59e2-4ddb-a356-27415a705c47} + {1a8a1c93-0f43-4d85-bd30-fd5b98b31dee} - {ac05d6b4-b753-4042-8b6c-4c96397e6094} + {4d426cfe-f97b-4643-8e85-ab67a0a85b98} - {f6ebf605-fba4-4bfa-88c8-bb17b41b49db} + {3cd6e222-0af4-4e00-b45e-66116b303436} - {402f9136-e50a-4859-8e23-dfd908322ae1} + {fee1fd38-d609-4bc1-8479-adb99a636d12} diff --git a/Crypto/testsuite/TestSuite_vs110.vcxproj b/Crypto/testsuite/TestSuite_vs110.vcxproj index 325d589a0..ceb7052ad 100644 --- a/Crypto/testsuite/TestSuite_vs110.vcxproj +++ b/Crypto/testsuite/TestSuite_vs110.vcxproj @@ -1,4 +1,4 @@ - + @@ -32,7 +32,7 @@ TestSuite Win32Proj - + Application Dynamic @@ -69,47 +69,29 @@ MultiByte v110 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,35 +99,35 @@ TestSuite TestSuite - - $(ExecutablePath) - C:\OpenSSL\include;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath); - C:\OpenSSL\lib;C:\OpenSSL\lib\static;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); - - - $(ExecutablePath) - C:\OpenSSL\include;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath); - C:\OpenSSL\lib;C:\OpenSSL\lib\static;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); - - - $(ExecutablePath) - C:\OpenSSL\include;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath); - C:\OpenSSL\lib;C:\OpenSSL\lib\static;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); - - - $(ExecutablePath) - C:\OpenSSL\include;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath); - C:\OpenSSL\lib;C:\OpenSSL\lib\static;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); + + bin\ + obj\$(Configuration)\ + true - $(ExecutablePath) - C:\OpenSSL\include;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath); - C:\OpenSSL\lib;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); + bin\ + obj\$(Configuration)\ + false - - $(ExecutablePath) - C:\OpenSSL\include;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath); - C:\OpenSSL\lib;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false @@ -160,11 +142,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) @@ -192,11 +173,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) @@ -222,11 +202,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;%(AdditionalDependencies) @@ -255,11 +234,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;%(AdditionalDependencies) @@ -286,14 +264,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true @@ -318,14 +295,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false @@ -336,18 +312,18 @@ - - - - + + + + - - - - - + + + + + - - - \ No newline at end of file + + + diff --git a/Crypto/testsuite/TestSuite_vs110.vcxproj.filters b/Crypto/testsuite/TestSuite_vs110.vcxproj.filters index 47150f0cb..4ba33b5d5 100644 --- a/Crypto/testsuite/TestSuite_vs110.vcxproj.filters +++ b/Crypto/testsuite/TestSuite_vs110.vcxproj.filters @@ -2,28 +2,28 @@ - {e3337374-58ec-4088-b09e-b64458aa23e5} + {afb482f9-9456-45d5-b1b3-3b0bf5d3a051} - {667a5bf7-fa51-4460-8394-2f72db8293ed} + {39d00675-e537-44bc-8b07-e5626b01413b} - {0d82609d-2c6d-4540-8a69-d46c22d7c33e} + {872ab95e-b850-47d7-be92-3ba148fa1ca6} - {b7352f7d-5b81-40a2-b647-f0b2aa37ddd7} + {55160076-ae30-4c25-9886-407361c6d088} - {efeb8c04-c633-4677-b99c-257a5e542c7d} + {ab869f6b-fa9b-40df-8e16-3bc421c2625d} - {048cb1e3-1b8a-4fe1-9fbc-2f7e543265c6} + {91e1cf40-3c70-436b-8f28-fb7ae7693139} - {5ac33225-2aae-446e-b3a5-88b11de4948e} + {54f89e60-2eda-437d-86eb-d5aac25a430e} - {e71d3272-bba3-42e9-bd06-254603056cb9} + {8985bef7-e3d3-4ca1-8ac4-7cbee97c00a3} diff --git a/Crypto/testsuite/TestSuite_vs120.vcxproj b/Crypto/testsuite/TestSuite_vs120.vcxproj index 7498735de..ac27acf0d 100644 --- a/Crypto/testsuite/TestSuite_vs120.vcxproj +++ b/Crypto/testsuite/TestSuite_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,35 +99,35 @@ TestSuite TestSuite - - $(ExecutablePath) - C:\OpenSSL-Win32\include;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC\static;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); - - - $(ExecutablePath) - C:\OpenSSL-Win32\include;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); - - - $(ExecutablePath) - C:\OpenSSL-Win32\include;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); - - - $(ExecutablePath) - C:\OpenSSL-Win32\include;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC\static$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); + + bin\ + obj\$(Configuration)\ + true - $(ExecutablePath) - C:\OpenSSL-Win32\include;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); + bin\ + obj\$(Configuration)\ + false - - $(ExecutablePath) - C:\OpenSSL-Win32\include;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false @@ -160,20 +142,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitd.lib;ws2_32.lib;iphlpapi.lib;libeay32MDd.lib;ssleay32MDd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Console + Windows MachineX86 @@ -192,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;ws2_32.lib;iphlpapi.lib;libeay32MDd.lib;ssleay32MDd.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 @@ -222,21 +202,20 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Console + Windows MachineX86 @@ -255,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX86 @@ -286,20 +264,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Console + Windows MachineX86 @@ -318,36 +295,35 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 - - - - + + + + - - - - - + + + + + - - - \ No newline at end of file + + + diff --git a/Crypto/testsuite/TestSuite_vs120.vcxproj.filters b/Crypto/testsuite/TestSuite_vs120.vcxproj.filters index cc119a2dc..50b09f5b2 100644 --- a/Crypto/testsuite/TestSuite_vs120.vcxproj.filters +++ b/Crypto/testsuite/TestSuite_vs120.vcxproj.filters @@ -2,28 +2,28 @@ - {e3337374-58ec-4088-b09e-b64458aa23e5} + {d4ebb36f-3e61-45c0-b87e-959a014c8253} - {667a5bf7-fa51-4460-8394-2f72db8293ed} + {6eae5f01-09fc-45a5-895a-6e9f6a6d134d} - {0d82609d-2c6d-4540-8a69-d46c22d7c33e} + {92ff7879-7df8-430c-b971-5a0579bb9d04} - {b7352f7d-5b81-40a2-b647-f0b2aa37ddd7} + {6844a11a-e58d-4e7d-a99c-67d67eb8727a} - {efeb8c04-c633-4677-b99c-257a5e542c7d} + {517c4690-4d58-43a6-953a-3893b172e6b9} - {048cb1e3-1b8a-4fe1-9fbc-2f7e543265c6} + {ede9974e-097d-408c-98f2-3a8a4c1a0feb} - {5ac33225-2aae-446e-b3a5-88b11de4948e} + {59fdd27b-49b8-4a08-bc87-2e9f1c3cc1a2} - {e71d3272-bba3-42e9-bd06-254603056cb9} + {fda82ab0-2d8f-44c5-81ee-ee384fcb2d41} @@ -53,7 +53,7 @@ _Suite\Source Files - + _Driver\Source Files diff --git a/Crypto/testsuite/TestSuite_x64_vs100.vcxproj b/Crypto/testsuite/TestSuite_x64_vs100.vcxproj index 203a58d3d..9d0f4ddb3 100644 --- a/Crypto/testsuite/TestSuite_x64_vs100.vcxproj +++ b/Crypto/testsuite/TestSuite_x64_vs100.vcxproj @@ -1,4 +1,4 @@ - + @@ -32,7 +32,7 @@ TestSuite Win32Proj - + Application Dynamic @@ -63,27 +63,27 @@ Dynamic MultiByte - - + + - + - + - + - + - + - + - + <_ProjectFileVersion>10.0.40219.1 bin64\ @@ -110,14 +110,12 @@ TestSuite TestSuite TestSuite - C:\openssl\include;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSdkDir)include;$(FrameworkSDKDir)\include; - C:\openssl\lib;$(VCInstallDir)lib\amd64;$(VCInstallDir)atlmfc\lib\amd64;$(WindowsSdkDir)lib\x64; Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) - WIN32;_WIN64;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true true EnableFastChecks @@ -126,7 +124,7 @@ true true true - + Level3 ProgramDatabase Default @@ -151,16 +149,16 @@ Speed true ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) - WIN32;_WIN64;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true MultiThreadedDLL false true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -179,7 +177,7 @@ Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) - WIN32;_WIN64;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -188,7 +186,7 @@ true true true - + Level3 ProgramDatabase Default @@ -214,16 +212,16 @@ Speed true ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) - WIN32;_WIN64;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded false true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -243,7 +241,7 @@ Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) - WIN32;_WIN64;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -252,14 +250,14 @@ true true true - + Level3 ProgramDatabase Default %(DisableSpecificWarnings) - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true @@ -277,21 +275,21 @@ Speed true ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) - WIN32;_WIN64;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL false true true true - + Level3 - + Default %(DisableSpecificWarnings) - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false @@ -302,18 +300,18 @@ - - - - + + + + - - - - - + + + + + - - - \ No newline at end of file + + + diff --git a/Crypto/testsuite/TestSuite_x64_vs100.vcxproj.filters b/Crypto/testsuite/TestSuite_x64_vs100.vcxproj.filters index d3525b352..278468024 100644 --- a/Crypto/testsuite/TestSuite_x64_vs100.vcxproj.filters +++ b/Crypto/testsuite/TestSuite_x64_vs100.vcxproj.filters @@ -2,28 +2,28 @@ - {8cbfe2d1-d809-4778-90a5-09646822247e} + {85927cf0-d272-498e-a26e-f786cd35a169} - {eb38d78f-f960-4853-a5fd-c297240afe31} + {315e5983-1e6a-479e-b064-cf03634ab9b3} - {37c520a5-4a64-4212-b199-d73abf8a8eed} + {1ede210b-c13d-43a3-864a-277a8df65d3b} - {a3c8bb10-f915-49fe-8b62-2541d3733b5f} + {db36b730-12b2-43f4-8f8e-94187ead0774} - {6cb37497-dcce-4f49-8afb-c0e6d3cad968} + {1487ec8b-ddc7-4ef7-af52-1525ee0ec7c3} - {981b6f85-3f84-4d99-904f-457ca41f9533} + {901272d6-9d9f-4195-942a-508f4a1f8311} - {3dee7ea3-7f2b-4653-b372-aacee87c2e22} + {3d8b8482-45cf-4086-8680-2e18f0354b14} - {842f88be-fd5c-443e-b39d-3eaaa4fcc797} + {391cc7d4-ef88-4fb3-8424-f8725042939a} diff --git a/Crypto/testsuite/TestSuite_x64_vs110.vcxproj b/Crypto/testsuite/TestSuite_x64_vs110.vcxproj index 0a07925c6..8fa131358 100644 --- a/Crypto/testsuite/TestSuite_x64_vs110.vcxproj +++ b/Crypto/testsuite/TestSuite_x64_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -260,10 +268,9 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true @@ -273,7 +280,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -292,10 +299,9 @@ Level3 Default - %(DisableSpecificWarnings) - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false diff --git a/Crypto/testsuite/TestSuite_x64_vs110.vcxproj.filters b/Crypto/testsuite/TestSuite_x64_vs110.vcxproj.filters index e7c37b295..66b83db4a 100644 --- a/Crypto/testsuite/TestSuite_x64_vs110.vcxproj.filters +++ b/Crypto/testsuite/TestSuite_x64_vs110.vcxproj.filters @@ -2,28 +2,28 @@ - {fc4c72b2-b1bf-4fc8-98a5-a819adc4d87c} + {6d9f5c44-c287-449b-a42e-e0a1b3cb2973} - {e0739809-7be5-4b90-bc58-488765116c7c} + {20106184-c958-4c1a-b91a-ffca6f92bd39} - {1ef47158-e786-4e1f-97eb-646f6ab613fe} + {f9fcaf13-65c6-404c-b2a8-e344ef28b873} - {f518cd8f-d3ab-411b-9971-7be59754c4c6} + {ce941eb8-82e4-4f95-94e0-b6a367786aab} - {3f9a762f-b6da-44fb-859f-36ac3eeb2e12} + {e9360f27-c248-4b0d-a445-5daa74b25fff} - {0871e0bb-c6ba-40af-852b-ac4b0ebfa9d6} + {a7a4e536-3a7b-4835-944c-48c0513466cb} - {77116e24-5df2-4bbe-bc05-219863391b85} + {2a8d2047-6eee-4337-a384-2323f385e24b} - {f010500b-dd76-42d4-859a-06d7a67f1bf7} + {8d23e281-8672-4841-b594-3176be29afa2} diff --git a/Crypto/testsuite/TestSuite_x64_vs120.vcxproj b/Crypto/testsuite/TestSuite_x64_vs120.vcxproj index 0db8b501f..4c93c4341 100644 --- a/Crypto/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Crypto/testsuite/TestSuite_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,35 +99,35 @@ TestSuite TestSuite - - $(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(FxCopDir);$(PATH); - C:\OpenSSL-Win64\lib\VC\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - - - $(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(FxCopDir);$(PATH); - C:\OpenSSL-Win64\lib\VC;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - - - $(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(FxCopDir);$(PATH); - C:\OpenSSL-Win64\lib\VC;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - - - $(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(FxCopDir);$(PATH); - C:\OpenSSL-Win64\lib\VC\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); + + bin64\ + obj64\$(Configuration)\ + true - $(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(FxCopDir);$(PATH); - C:\OpenSSL-Win64\lib\VC;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); + bin64\ + obj64\$(Configuration)\ + false - - $(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(FxCopDir);$(PATH); - C:\OpenSSL-Win64\lib\VC;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false @@ -160,20 +142,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitd.lib;ws2_32.lib;iphlpapi.lib;libeay32MDd.lib;ssleay32MDd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Console + Windows MachineX64 @@ -192,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;ws2_32.lib;iphlpapi.lib;libeay32MD.lib;ssleay32MD.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 @@ -222,21 +202,20 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;ws2_32.lib;iphlpapi.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Console + Windows MachineX64 @@ -255,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;ws2_32.lib;iphlpapi.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX64 @@ -286,20 +264,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Console + Windows MachineX64 @@ -318,36 +295,35 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 - - - - + + + + - - - - - + + + + + - - - \ No newline at end of file + + + diff --git a/Crypto/testsuite/TestSuite_x64_vs120.vcxproj.filters b/Crypto/testsuite/TestSuite_x64_vs120.vcxproj.filters index e7c37b295..b24fe42ce 100644 --- a/Crypto/testsuite/TestSuite_x64_vs120.vcxproj.filters +++ b/Crypto/testsuite/TestSuite_x64_vs120.vcxproj.filters @@ -2,28 +2,28 @@ - {fc4c72b2-b1bf-4fc8-98a5-a819adc4d87c} + {d7ea9f0a-682e-43b0-be92-9169920fe044} - {e0739809-7be5-4b90-bc58-488765116c7c} + {f926f372-9b61-467d-b05d-0de7181307bd} - {1ef47158-e786-4e1f-97eb-646f6ab613fe} + {be34f981-547c-4e10-9cea-3a70fcea78dd} - {f518cd8f-d3ab-411b-9971-7be59754c4c6} + {47b70dc4-4008-471c-af7f-020d73f3a28d} - {3f9a762f-b6da-44fb-859f-36ac3eeb2e12} + {49584b35-d580-4cee-bd07-4efe68d49cab} - {0871e0bb-c6ba-40af-852b-ac4b0ebfa9d6} + {bf0de0eb-869b-4573-bab1-1336364c8452} - {77116e24-5df2-4bbe-bc05-219863391b85} + {e9b241cd-4961-4b01-b898-d075fcf78cbb} - {f010500b-dd76-42d4-859a-06d7a67f1bf7} + {50cf963d-6670-4673-b25a-044558b551cd} diff --git a/Data/Data_WEC2013_vs110.vcxproj.filters b/Data/Data_WEC2013_vs110.vcxproj.filters index f782e9534..5c7ec2a7b 100644 --- a/Data/Data_WEC2013_vs110.vcxproj.filters +++ b/Data/Data_WEC2013_vs110.vcxproj.filters @@ -2,31 +2,31 @@ - {616d6aa0-1d9d-4c9e-a6fe-a14027466ecb} + {f44b968d-9dc8-43a7-b510-0ebd19d060f8} - {5595389e-18f1-40d9-a41e-93e28d085be5} + {21957de8-c972-48b4-9b84-c022dbf1dee0} - {088c25af-5581-4dcf-891a-753d240782ac} + {064640ba-ae38-4174-99a2-b3e2dea76651} - {8fde9c40-6193-4df0-ad78-ed2f9239321e} + {3487e3be-5e4c-4bd4-90a4-02dffd20e244} - {179735ec-889d-435b-b46f-c7f61bbf1c7c} + {3e1983c7-a9eb-4a29-8a8e-c1bc8389f01a} - {593afb7b-8d54-4f47-add8-c223eb617a51} + {d4ca8ffc-7cfa-462c-9df5-252e3ba96370} - {b0868060-28ec-419a-a329-33d6d44273b2} + {10927b10-8079-40d1-9981-baef60e0a796} - {c66c0882-1e5a-4a53-8ba4-bc9de00c3b3c} + {36fb7587-df2d-4d84-9d49-4c2934e714e1} - {a25bdc3e-e86b-43d2-ab2d-b035bdd0812c} + {010aad65-56a1-4fc9-9a65-d3905c2843d1} diff --git a/Data/Data_vs100.vcxproj b/Data/Data_vs100.vcxproj index 1fa35df7c..3c398a0dc 100644 --- a/Data/Data_vs100.vcxproj +++ b/Data/Data_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoDatad - PocoDatamdd - PocoDatamtd - PocoData - PocoDatamd - PocoDatamt + ..\bin\ + obj\$(Configuration)\ + true + ..\bin\ + obj\$(Configuration)\ + false + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + PocoDatad + PocoDatamdd + PocoDatamtd + PocoData + PocoDatamd + PocoDatamt - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib\PocoDatamtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib\PocoDatamt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib\PocoDatamdd.lib - + Disabled OnlyExplicitInline diff --git a/Data/Data_vs100.vcxproj.filters b/Data/Data_vs100.vcxproj.filters index 1e960eeed..c6b39b8ea 100644 --- a/Data/Data_vs100.vcxproj.filters +++ b/Data/Data_vs100.vcxproj.filters @@ -2,31 +2,31 @@ - {5d9413e2-2ef3-442a-8e65-7f7b5cac89e5} + {afa42351-68d4-4d2a-8022-b799fa480ea9} - {27f75a82-ecb7-4687-8278-41f32071f700} + {145d7a8b-8e26-4394-8592-c712c3441460} - {48e4ce72-fd91-4d99-9962-8d739f6705d4} + {b65f5e01-39e8-4750-b744-fd700352ffcb} - {d0b76a92-6e4c-4225-adcc-25eee0c42b7a} + {4e3d1080-7589-4aff-aeca-944050b07b64} - {d14a2364-08ca-4229-801a-a0e940d6e409} + {384eb705-4c3c-4f7b-9912-acd51f55951d} - {4a79c2e9-6109-428c-b253-43242195fa05} + {212c8739-ec8f-4465-a20e-8dd790eb6dc6} - {c71b6dd6-f7fd-48d3-9a0c-2f3d4a302016} + {080509b9-71ef-46b7-9aca-4bfb915119db} - {0ac6023c-87d8-4072-b2ce-f3c28b148b82} + {e4c83544-1cbc-4c32-8967-d3894bc96751} - {4db0b265-f4a4-48aa-ac71-dea3ced3ac49} + {40a2f611-f1e9-471c-83df-087ce92387ee} diff --git a/Data/Data_vs110.vcxproj b/Data/Data_vs110.vcxproj index eddd7d4d7..fca0e6027 100644 --- a/Data/Data_vs110.vcxproj +++ b/Data/Data_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoDatad - PocoDatamdd - PocoDatamtd - PocoData - PocoDatamd - PocoDatamt + <_ProjectFileVersion>11.0.61030.0 + PocoDatad + PocoDatamdd + PocoDatamtd + PocoData + PocoDatamd + PocoDatamt - + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -124,10 +136,8 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoDatad.dll true true @@ -138,7 +148,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -157,10 +167,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoData.dll true false @@ -172,7 +180,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,13 +198,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoDatamtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +222,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib\PocoDatamt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,13 +245,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoDatamdd.lib - + Disabled OnlyExplicitInline @@ -265,10 +270,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\lib\PocoDatamd.lib diff --git a/Data/Data_vs110.vcxproj.filters b/Data/Data_vs110.vcxproj.filters index 85d6cdf19..198701508 100644 --- a/Data/Data_vs110.vcxproj.filters +++ b/Data/Data_vs110.vcxproj.filters @@ -2,31 +2,31 @@ - {b0c4ecb5-2fec-44b6-b2ed-73a184c13d7e} + {c496632b-1de8-43f0-8273-3072e7bef4d2} - {ff68fd41-c965-4b22-8850-7337edeba804} + {f7ff3b6e-20ac-465d-be1f-1b47279b114c} - {296a992f-335f-486c-bd02-b933d64d5448} + {9828a419-7a9a-46a8-8789-fde055be7ef5} - {d47207b2-d566-42aa-bd9b-7fdc74e2b04c} + {30e83b7a-86fb-4e5b-850c-b1a6deb60eeb} - {4edd2b1c-efb1-4e9b-b9c7-7f6008059889} + {7ecb86da-576c-433f-a4de-cfb07f55c6f2} - {3a9a37f7-0449-4e91-9a6f-25b4586bef31} + {c1cda2f8-5eb0-4e31-a3a2-cc9fe608f39f} - {3eaaa4d7-9839-4bb9-878d-c0ebc8f77b23} + {72110907-de19-4079-a7a5-ff9ad4289bf8} - {f576b05c-f4ab-43c1-b494-39c2e5eb5608} + {9b33fb94-0890-4d7d-bfc3-91e269dc002a} - {74dee80f-3ec5-4caf-b009-e60e1307aa78} + {3f180cc1-81e8-4f4c-90a6-1f5fffbe5751} diff --git a/Data/Data_vs120.sln b/Data/Data_vs120.sln index 644d94d8e..abb4dc5f6 100644 --- a/Data/Data_vs120.sln +++ b/Data/Data_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Data", "Data_vs120.vcxproj", "{240E83C3-368D-11DB-9FBC-00123FC423B5}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_vs120.vcxproj", "{1813A463-E349-4FEA-8A8E-4A41E41C0DC7}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_shared|Win32.ActiveCfg = release_shared|Win32 {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_shared|Win32.Build.0 = release_shared|Win32 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_shared|Win32.ActiveCfg = release_shared|Win32 {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_shared|Win32.Build.0 = release_shared|Win32 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Data/Data_vs120.vcxproj b/Data/Data_vs120.vcxproj index 23918f2a3..a4b3da5e0 100644 --- a/Data/Data_vs120.vcxproj +++ b/Data/Data_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Data Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoDatad PocoDatamdd PocoDatamtd @@ -107,6 +93,32 @@ PocoDatamd PocoDatamt + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + Disabled @@ -120,14 +132,12 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoDatad.dll true true @@ -153,14 +163,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoData.dll true false @@ -185,12 +193,11 @@ true true true - + ..\lib\PocoDatamtd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoDatamtd.lib @@ -211,11 +218,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib\PocoDatamt.lib @@ -234,12 +240,11 @@ true true true - + ..\lib\PocoDatamdd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoDatamdd.lib @@ -260,106 +265,104 @@ true true true - + ..\lib\PocoDatamd.pdb Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\lib\PocoDatamd.lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Data/Data_vs120.vcxproj.filters b/Data/Data_vs120.vcxproj.filters index 85d6cdf19..ebb9bbc46 100644 --- a/Data/Data_vs120.vcxproj.filters +++ b/Data/Data_vs120.vcxproj.filters @@ -2,31 +2,31 @@ - {b0c4ecb5-2fec-44b6-b2ed-73a184c13d7e} + {74a799c4-908b-48e7-a157-cfe0a5d18f50} - {ff68fd41-c965-4b22-8850-7337edeba804} + {0c7f0b51-7253-4c65-83b2-09a3d9f508c9} - {296a992f-335f-486c-bd02-b933d64d5448} + {32ce572a-6242-4578-b281-d2009ee5fa61} - {d47207b2-d566-42aa-bd9b-7fdc74e2b04c} + {8e996364-25d6-4ee9-896d-102c71f4d232} - {4edd2b1c-efb1-4e9b-b9c7-7f6008059889} + {db9a066e-e935-4681-9dab-450932ccb2dd} - {3a9a37f7-0449-4e91-9a6f-25b4586bef31} + {dc1ce18c-8da9-4c9a-9e96-0489f03c8f75} - {3eaaa4d7-9839-4bb9-878d-c0ebc8f77b23} + {6a09e0ee-92ed-49bf-8e9d-d162c6982be3} - {f576b05c-f4ab-43c1-b494-39c2e5eb5608} + {7d3b180f-9a73-40e5-934d-0395b126991e} - {74dee80f-3ec5-4caf-b009-e60e1307aa78} + {06fabbe8-1a22-4171-9a5c-1478f967cf42} diff --git a/Data/Data_x64_vs100.vcxproj b/Data/Data_x64_vs100.vcxproj index d82d446cb..b9d6985d3 100644 --- a/Data/Data_x64_vs100.vcxproj +++ b/Data/Data_x64_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoData64d - PocoDatamdd - PocoDatamtd - PocoData64 - PocoDatamd - PocoDatamt + ..\bin64\ + obj64\$(Configuration)\ + true + ..\bin64\ + obj64\$(Configuration)\ + false + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + PocoData64d + PocoDatamdd + PocoDatamtd + PocoData64 + PocoDatamd + PocoDatamt - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib64\PocoDatamtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib64\PocoDatamt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib64\PocoDatamdd.lib - + Disabled OnlyExplicitInline diff --git a/Data/Data_x64_vs100.vcxproj.filters b/Data/Data_x64_vs100.vcxproj.filters index 369d64104..d6f924aaa 100644 --- a/Data/Data_x64_vs100.vcxproj.filters +++ b/Data/Data_x64_vs100.vcxproj.filters @@ -2,31 +2,31 @@ - {415ac94a-5cf7-4951-9c4c-bd3694fb721c} + {4a7ce513-109a-4755-b105-fd6a2dc69787} - {ac8b82f8-eadc-49d9-bbee-9ad9a9aef7a8} + {dc8637ad-d3ed-43ab-9d88-f86c21f649eb} - {37e9b003-f160-47c5-a087-5fbc2dd15492} + {dd71823d-0a31-4aea-89ce-fc262bf17031} - {d17d6956-aad7-49a6-ae09-cbffb0dcd033} + {2fd3a46a-8e34-420c-a277-1f294f90f984} - {b11cd0b0-3dd3-4bd6-9371-552ac2001fcc} + {c76e0d79-208f-4e3d-8308-c62a75339c01} - {be44cfbd-51dd-42a0-9a98-08de85852f0b} + {ae78cc00-420f-41ed-8db2-bed21c3b9cd4} - {af48f137-2142-4770-ac06-6922aed340b4} + {831a8375-ec74-42fa-bfd0-f531aa7bb231} - {91250500-da6d-4eec-90fe-07b029c5503e} + {4196f37f-49e3-445a-8984-0444adccef49} - {18032e06-2256-4712-a247-fbe32a970013} + {97d13385-4a09-402a-937a-57c46fb72f6e} diff --git a/Data/Data_x64_vs110.vcxproj b/Data/Data_x64_vs110.vcxproj index 428ccaea8..8468370bc 100644 --- a/Data/Data_x64_vs110.vcxproj +++ b/Data/Data_x64_vs110.vcxproj @@ -1,4 +1,4 @@ - + @@ -32,7 +32,7 @@ Data Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v110 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoData64d PocoDatamdd PocoDatamtd @@ -107,6 +93,32 @@ PocoDatamd PocoDatamt + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + Disabled @@ -120,14 +132,12 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoData64d.dll true true @@ -153,14 +163,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoData64.dll true false @@ -185,12 +193,11 @@ true true true - + ..\lib64\PocoDatamtd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoDatamtd.lib @@ -211,11 +218,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoDatamt.lib @@ -234,12 +240,11 @@ true true true - + ..\lib64\PocoDatamdd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoDatamdd.lib @@ -260,112 +265,103 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoDatamd.lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - /bigobj %(AdditionalOptions) - /bigobj %(AdditionalOptions) - /bigobj %(AdditionalOptions) - - - - - - /bigobj %(AdditionalOptions) - /bigobj %(AdditionalOptions) - /bigobj %(AdditionalOptions) - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Data/Data_x64_vs110.vcxproj.filters b/Data/Data_x64_vs110.vcxproj.filters index 89b8776d0..b4e39ff70 100644 --- a/Data/Data_x64_vs110.vcxproj.filters +++ b/Data/Data_x64_vs110.vcxproj.filters @@ -2,31 +2,31 @@ - {fd9f72c0-7bc6-4903-8554-c06757614b09} + {0ac80dca-7002-46d7-9fa4-922b22bc095a} - {dbef72b3-cba1-42ba-a173-159ab2872383} + {b22e7ca5-052a-467e-a2d8-92535809d502} - {ff8b6c72-edec-4b4e-8a3b-19e60597d338} + {655d443b-cea2-4b3c-9cd4-9f8e3a4c3cfa} - {a8b72238-0410-4165-b7e1-7a0c6ff0322d} + {efd27446-ed3d-42f1-a6da-acea56374d05} - {23f172ea-bc6b-4011-ac6e-8a06d821358b} + {9795406d-b87b-4d43-ac72-03d29850eba0} - {82c9086c-6883-4ec1-bd8e-b8037e3cbb4f} + {1c3f36fe-f11a-4dd1-aac0-16fadd775441} - {08c7cdb3-362f-4d63-915c-f9baeee2399e} + {8b7bf8cd-639b-4472-939b-c7bab3e5aef6} - {8a1c4ecf-8304-41b7-9214-121d9a8e6a1d} + {ee00afd1-bf3c-4430-b13a-c0d0ad415856} - {7966d047-b3e5-4534-ba0f-825c88ef8b33} + {f6b6ecbe-e1ea-4706-ac37-0bea73186e13} diff --git a/Data/Data_x64_vs120.sln b/Data/Data_x64_vs120.sln index f4a9677b4..9e658162a 100644 --- a/Data/Data_x64_vs120.sln +++ b/Data/Data_x64_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Data", "Data_x64_vs120.vcxproj", "{240E83C3-368D-11DB-9FBC-00123FC423B5}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_x64_vs120.vcxproj", "{1813A463-E349-4FEA-8A8E-4A41E41C0DC7}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_shared|x64.ActiveCfg = debug_shared|x64 {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_shared|x64.Build.0 = debug_shared|x64 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_shared|x64.Deploy.0 = debug_shared|x64 {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_shared|x64.ActiveCfg = release_shared|x64 {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_shared|x64.Build.0 = release_shared|x64 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|x64.Build.0 = release_static_md|x64 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_shared|x64.Deploy.0 = release_shared|x64 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|x64.Build.0 = release_static_md|x64 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|x64.Deploy.0 = release_static_md|x64 {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_shared|x64.ActiveCfg = debug_shared|x64 {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_shared|x64.Build.0 = debug_shared|x64 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_shared|x64.Deploy.0 = debug_shared|x64 {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_shared|x64.ActiveCfg = release_shared|x64 {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_shared|x64.Build.0 = release_shared|x64 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|x64.Build.0 = release_static_md|x64 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_shared|x64.Deploy.0 = release_shared|x64 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|x64.Build.0 = release_static_md|x64 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Data/Data_x64_vs120.vcxproj b/Data/Data_x64_vs120.vcxproj index b149af840..7059506db 100644 --- a/Data/Data_x64_vs120.vcxproj +++ b/Data/Data_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Data Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoData64d PocoDatamdd PocoDatamtd @@ -107,6 +93,32 @@ PocoDatamd PocoDatamt + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + Disabled @@ -120,14 +132,12 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoData64d.dll true true @@ -153,14 +163,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoData64.dll true false @@ -185,12 +193,11 @@ true true true - + ..\lib64\PocoDatamtd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoDatamtd.lib @@ -211,11 +218,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoDatamt.lib @@ -234,12 +240,11 @@ true true true - + ..\lib64\PocoDatamdd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoDatamdd.lib @@ -260,112 +265,103 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoDatamd.lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - /bigobj %(AdditionalOptions) - /bigobj %(AdditionalOptions) - /bigobj %(AdditionalOptions) - - - - - - /bigobj %(AdditionalOptions) - /bigobj %(AdditionalOptions) - /bigobj %(AdditionalOptions) - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Data/Data_x64_vs120.vcxproj.filters b/Data/Data_x64_vs120.vcxproj.filters index 89b8776d0..039f6a1db 100644 --- a/Data/Data_x64_vs120.vcxproj.filters +++ b/Data/Data_x64_vs120.vcxproj.filters @@ -2,31 +2,31 @@ - {fd9f72c0-7bc6-4903-8554-c06757614b09} + {09d6d2cf-7f75-47fb-85a1-d054ea1a2dce} - {dbef72b3-cba1-42ba-a173-159ab2872383} + {fbdc7b4f-305d-42fa-bbf3-770196662479} - {ff8b6c72-edec-4b4e-8a3b-19e60597d338} + {27d576d4-10f8-45f2-82ad-164f4b56a47a} - {a8b72238-0410-4165-b7e1-7a0c6ff0322d} + {b47d1d8c-62d9-402b-8841-f3f7fa99a130} - {23f172ea-bc6b-4011-ac6e-8a06d821358b} + {b9f35c11-43ed-44cf-b005-c0dd2106a45b} - {82c9086c-6883-4ec1-bd8e-b8037e3cbb4f} + {d4a53098-c0e1-4f40-8799-68a40b5ca531} - {08c7cdb3-362f-4d63-915c-f9baeee2399e} + {0dc5457e-0869-496b-8465-00126b78e589} - {8a1c4ecf-8304-41b7-9214-121d9a8e6a1d} + {ee6231e1-1d82-4b74-9142-65a1e52521c2} - {7966d047-b3e5-4534-ba0f-825c88ef8b33} + {6bef0f41-2769-4d62-a11e-2bf74361f08e} diff --git a/Data/MySQL/MySQL_vs100.vcxproj b/Data/MySQL/MySQL_vs100.vcxproj index 15662434a..11841c685 100644 --- a/Data/MySQL/MySQL_vs100.vcxproj +++ b/Data/MySQL/MySQL_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\..\bin\ - obj\$(Configuration)\ - true - ..\..\bin\ - obj\$(Configuration)\ - false - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - PocoDataMySQLd - PocoDataMySQLmdd - PocoDataMySQLmtd - PocoDataMySQL - PocoDataMySQLmd - PocoDataMySQLmt + ..\..\bin\ + obj\$(Configuration)\ + true + ..\..\bin\ + obj\$(Configuration)\ + false + ..\..\lib\ + obj\$(Configuration)\ + ..\..\lib\ + obj\$(Configuration)\ + ..\..\lib\ + obj\$(Configuration)\ + ..\..\lib\ + obj\$(Configuration)\ + PocoDataMySQLd + PocoDataMySQLmdd + PocoDataMySQLmtd + PocoDataMySQL + PocoDataMySQLmd + PocoDataMySQLmt - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX86 - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\..\lib\PocoDataMySQLmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\..\lib\PocoDataMySQLmt.lib - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\..\lib\PocoDataMySQLmdd.lib - + Disabled OnlyExplicitInline diff --git a/Data/MySQL/MySQL_vs110.vcxproj b/Data/MySQL/MySQL_vs110.vcxproj index 41fc678e9..13813822a 100644 --- a/Data/MySQL/MySQL_vs110.vcxproj +++ b/Data/MySQL/MySQL_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\..\bin\ - obj\$(Configuration)\ - true - ..\..\bin\ - obj\$(Configuration)\ - false - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - PocoDataMySQLd - PocoDataMySQLmdd - PocoDataMySQLmtd - PocoDataMySQL - PocoDataMySQLmd - PocoDataMySQLmt + <_ProjectFileVersion>11.0.61030.0 + PocoDataMySQLd + PocoDataMySQLmdd + PocoDataMySQLmtd + PocoDataMySQL + PocoDataMySQLmd + PocoDataMySQLmt - + + ..\..\bin\ + obj\$(Configuration)\ + true + + + ..\..\bin\ + obj\$(Configuration)\ + false + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -124,7 +136,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) libmysql.lib;%(AdditionalDependencies) @@ -138,7 +149,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -157,7 +168,6 @@ Level3 Default - %(DisableSpecificWarnings) libmysql.lib;%(AdditionalDependencies) @@ -172,7 +182,7 @@ MachineX86 - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -190,13 +200,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\..\lib\PocoDataMySQLmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +224,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\..\lib\PocoDataMySQLmt.lib - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -239,13 +247,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\..\lib\PocoDataMySQLmdd.lib - + Disabled OnlyExplicitInline @@ -265,7 +272,6 @@ Level3 Default - %(DisableSpecificWarnings) libmysql.lib;%(AdditionalDependencies) diff --git a/Data/MySQL/MySQL_vs120.sln b/Data/MySQL/MySQL_vs120.sln index 9c53c19b5..1ee002e83 100644 --- a/Data/MySQL/MySQL_vs120.sln +++ b/Data/MySQL/MySQL_vs120.sln @@ -1,45 +1,58 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_vs120.vcxproj", "{4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}" -EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MySQL", "MySQL_vs120.vcxproj", "{73E19FDE-1570-488C-B3DB-72A60FADD408}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_vs120.vcxproj", "{4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}" + ProjectSection(ProjectDependencies) = postProject + {73E19FDE-1570-488C-B3DB-72A60FADD408} = {73E19FDE-1570-488C-B3DB-72A60FADD408} + EndProjectSection +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_shared|Win32.ActiveCfg = release_shared|Win32 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_shared|Win32.Build.0 = release_shared|Win32 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_shared|Win32.ActiveCfg = release_shared|Win32 {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_shared|Win32.Build.0 = release_shared|Win32 - {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_shared|Win32.ActiveCfg = release_shared|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_shared|Win32.Build.0 = release_shared|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Data/MySQL/MySQL_vs120.vcxproj b/Data/MySQL/MySQL_vs120.vcxproj index 75d2c522f..70651f67b 100644 --- a/Data/MySQL/MySQL_vs120.vcxproj +++ b/Data/MySQL/MySQL_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ MySQL Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\..\bin\ - obj\$(Configuration)\ - true - ..\..\bin\ - obj\$(Configuration)\ - false - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoDataMySQLd PocoDataMySQLmdd PocoDataMySQLmtd @@ -107,6 +93,32 @@ PocoDataMySQLmd PocoDataMySQLmt + + ..\..\bin\ + obj\$(Configuration)\ + true + + + ..\..\bin\ + obj\$(Configuration)\ + false + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + Disabled @@ -120,11 +132,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) libmysql.lib;%(AdditionalDependencies) @@ -153,11 +164,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) libmysql.lib;%(AdditionalDependencies) @@ -185,12 +195,11 @@ true true true - + ..\..\lib\PocoDataMySQLmtd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\..\lib\PocoDataMySQLmtd.lib @@ -211,11 +220,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\..\lib\PocoDataMySQLmt.lib @@ -234,12 +242,11 @@ true true true - + ..\..\lib\PocoDataMySQLmdd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\..\lib\PocoDataMySQLmdd.lib @@ -260,12 +267,11 @@ true true true - + ..\..\lib\PocoDataMySQLmd.pdb Level3 - + Default - %(DisableSpecificWarnings) libmysql.lib;%(AdditionalDependencies) @@ -273,30 +279,30 @@ - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Data/MySQL/MySQL_x64_vs100.vcxproj b/Data/MySQL/MySQL_x64_vs100.vcxproj index 18ac8947c..a38339ed1 100644 --- a/Data/MySQL/MySQL_x64_vs100.vcxproj +++ b/Data/MySQL/MySQL_x64_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\..\bin64\ - obj64\$(Configuration)\ - true - ..\..\bin64\ - obj64\$(Configuration)\ - false - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - PocoDataMySQL64d - PocoDataMySQLmdd - PocoDataMySQLmtd - PocoDataMySQL64 - PocoDataMySQLmd - PocoDataMySQLmt + ..\..\bin64\ + obj64\$(Configuration)\ + true + ..\..\bin64\ + obj64\$(Configuration)\ + false + ..\..\lib64\ + obj64\$(Configuration)\ + ..\..\lib64\ + obj64\$(Configuration)\ + ..\..\lib64\ + obj64\$(Configuration)\ + ..\..\lib64\ + obj64\$(Configuration)\ + PocoDataMySQL64d + PocoDataMySQLmdd + PocoDataMySQLmtd + PocoDataMySQL64 + PocoDataMySQLmd + PocoDataMySQLmt - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX64 - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\..\lib64\PocoDataMySQLmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\..\lib64\PocoDataMySQLmt.lib - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\..\lib64\PocoDataMySQLmdd.lib - + Disabled OnlyExplicitInline diff --git a/Data/MySQL/MySQL_x64_vs110.vcxproj b/Data/MySQL/MySQL_x64_vs110.vcxproj index fd9ec07f9..204575c4b 100644 --- a/Data/MySQL/MySQL_x64_vs110.vcxproj +++ b/Data/MySQL/MySQL_x64_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\..\bin64\ - obj64\$(Configuration)\ - true - ..\..\bin64\ - obj64\$(Configuration)\ - false - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - PocoDataMySQL64d - PocoDataMySQLmdd - PocoDataMySQLmtd - PocoDataMySQL64 - PocoDataMySQLmd - PocoDataMySQLmt + <_ProjectFileVersion>11.0.61030.0 + PocoDataMySQL64d + PocoDataMySQLmdd + PocoDataMySQLmtd + PocoDataMySQL64 + PocoDataMySQLmd + PocoDataMySQLmt - + + ..\..\bin64\ + obj64\$(Configuration)\ + true + + + ..\..\bin64\ + obj64\$(Configuration)\ + false + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -124,7 +136,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) libmysql.lib;%(AdditionalDependencies) @@ -138,7 +149,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -157,7 +168,6 @@ Level3 Default - %(DisableSpecificWarnings) libmysql.lib;%(AdditionalDependencies) @@ -172,7 +182,7 @@ MachineX64 - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -190,13 +200,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataMySQLmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +224,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataMySQLmt.lib - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -239,13 +247,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataMySQLmdd.lib - + Disabled OnlyExplicitInline @@ -264,7 +271,6 @@ Level3 Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataMySQLmd.lib diff --git a/Data/MySQL/MySQL_x64_vs120.sln b/Data/MySQL/MySQL_x64_vs120.sln index 10d748538..5dead6e7b 100644 --- a/Data/MySQL/MySQL_x64_vs120.sln +++ b/Data/MySQL/MySQL_x64_vs120.sln @@ -1,45 +1,58 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MySQL", "MySQL_x64_vs120.vcxproj", "{73E19FDE-1570-488C-B3DB-72A60FADD408}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_x64_vs120.vcxproj", "{4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}" + ProjectSection(ProjectDependencies) = postProject + {73E19FDE-1570-488C-B3DB-72A60FADD408} = {73E19FDE-1570-488C-B3DB-72A60FADD408} + EndProjectSection EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_shared|x64.ActiveCfg = debug_shared|x64 {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_shared|x64.Build.0 = debug_shared|x64 - {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_shared|x64.Deploy.0 = debug_shared|x64 {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_shared|x64.ActiveCfg = release_shared|x64 {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_shared|x64.Build.0 = release_shared|x64 - {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_md|x64.Build.0 = release_static_md|x64 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_shared|x64.Deploy.0 = release_shared|x64 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_md|x64.Build.0 = release_static_md|x64 + {73E19FDE-1570-488C-B3DB-72A60FADD408}.release_static_md|x64.Deploy.0 = release_static_md|x64 {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_shared|x64.ActiveCfg = debug_shared|x64 {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_shared|x64.Build.0 = debug_shared|x64 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_shared|x64.Deploy.0 = debug_shared|x64 {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_shared|x64.ActiveCfg = release_shared|x64 {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_shared|x64.Build.0 = release_shared|x64 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_md|x64.Build.0 = release_static_md|x64 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_shared|x64.Deploy.0 = release_shared|x64 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_md|x64.Build.0 = release_static_md|x64 + {4D6E42AE-EB6A-47EB-A186-B8A183FABCF7}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Data/MySQL/MySQL_x64_vs120.vcxproj b/Data/MySQL/MySQL_x64_vs120.vcxproj index 28002e8e8..36d03fa5a 100644 --- a/Data/MySQL/MySQL_x64_vs120.vcxproj +++ b/Data/MySQL/MySQL_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ MySQL Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\..\bin64\ - obj64\$(Configuration)\ - true - ..\..\bin64\ - obj64\$(Configuration)\ - false - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoDataMySQL64d PocoDataMySQLmdd PocoDataMySQLmtd @@ -107,6 +93,32 @@ PocoDataMySQLmd PocoDataMySQLmt + + ..\..\bin64\ + obj64\$(Configuration)\ + true + + + ..\..\bin64\ + obj64\$(Configuration)\ + false + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + Disabled @@ -120,11 +132,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) libmysql.lib;%(AdditionalDependencies) @@ -153,11 +164,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) libmysql.lib;%(AdditionalDependencies) @@ -185,12 +195,11 @@ true true true - + ..\..\lib64\PocoDataMySQLmtd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataMySQLmtd.lib @@ -211,11 +220,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataMySQLmt.lib @@ -234,12 +242,11 @@ true true true - + ..\..\lib64\PocoDataMySQLmdd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataMySQLmdd.lib @@ -260,41 +267,40 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataMySQLmd.lib - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Data/MySQL/testsuite/TestSuite_vs100.vcxproj b/Data/MySQL/testsuite/TestSuite_vs100.vcxproj index bb273cda8..ec6b393e1 100644 --- a/Data/MySQL/testsuite/TestSuite_vs100.vcxproj +++ b/Data/MySQL/testsuite/TestSuite_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX86 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX86 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Data/MySQL/testsuite/TestSuite_vs100.vcxproj.filters b/Data/MySQL/testsuite/TestSuite_vs100.vcxproj.filters index 2eb459f93..7d880f54c 100644 --- a/Data/MySQL/testsuite/TestSuite_vs100.vcxproj.filters +++ b/Data/MySQL/testsuite/TestSuite_vs100.vcxproj.filters @@ -2,28 +2,28 @@ - {ee9c983d-926d-4d1a-9c47-7a00f4a200ce} + {59878db7-8cd3-431b-bfef-7a0d3bd13ea6} - {f9489676-5289-4903-99b6-a5df6daee73b} + {827ecb97-ca0e-47fb-a05b-3f76b4b17064} - {b01afdda-5962-41ff-bfb6-c98d79ec5e9a} + {7026a1aa-a405-492c-ad75-d8009eef842b} - {3203b8ea-9c6a-451f-9f74-cb149568a8c0} + {d3cec313-e13b-4c45-9abb-5ac155949fb2} - {e76ff37e-25bc-4ade-89c1-2101c9deb6d0} + {a945d7eb-91db-4604-917f-601c96f53518} - {e265c147-7f9f-41bd-872e-a34ca01ecf92} + {302d68c6-a0f1-4981-aaa3-6f05209955fe} - {c2b5a472-51ed-47e5-8ccb-069b88511018} + {54066155-8567-4f61-83bb-dee32fdfaf79} - {09af1d90-6070-4fca-a5a4-fa09543ab3d8} + {55b6030d-7091-4900-a11a-19cf70e3f104} diff --git a/Data/MySQL/testsuite/TestSuite_vs110.vcxproj b/Data/MySQL/testsuite/TestSuite_vs110.vcxproj index 0e163de71..1d5e80a9d 100644 --- a/Data/MySQL/testsuite/TestSuite_vs110.vcxproj +++ b/Data/MySQL/testsuite/TestSuite_vs110.vcxproj @@ -1,4 +1,4 @@ - + @@ -32,7 +32,7 @@ TestSuite Win32Proj - + Application Dynamic @@ -69,47 +69,29 @@ MultiByte v110 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -118,8 +100,34 @@ TestSuite - C:\Program Files (x86)\MySQL\Connector C 6.0.2\include;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath); - C:\Program Files (x86)\MySQL\Connector C 6.0.2\lib\debug;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false @@ -134,11 +142,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;libmysql.lib;%(AdditionalDependencies) @@ -166,11 +173,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;libmysql.lib;%(AdditionalDependencies) @@ -196,11 +202,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) @@ -229,11 +234,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) @@ -260,11 +264,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) @@ -292,11 +295,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) @@ -310,16 +312,16 @@ - - - + + + - - - - + + + + - - - \ No newline at end of file + + + diff --git a/Data/MySQL/testsuite/TestSuite_vs110.vcxproj.filters b/Data/MySQL/testsuite/TestSuite_vs110.vcxproj.filters index 0cd6b3773..1e881990a 100644 --- a/Data/MySQL/testsuite/TestSuite_vs110.vcxproj.filters +++ b/Data/MySQL/testsuite/TestSuite_vs110.vcxproj.filters @@ -2,28 +2,28 @@ - {fca6e86e-18c4-4e02-a61b-34e1db086866} + {3477595f-a9c6-475f-aa87-caf094f9bece} - {54864d2c-cbbb-4b9f-bf22-e5b10b1d520f} + {f4c7d11e-80ea-4ea9-b4a3-09851b2d43ca} - {6e9ecc7f-f391-41a2-8c5d-dc2bae072c06} + {87ef286f-1be7-42a3-bb30-5cb94dcb0370} - {7eeaca26-07d1-4196-934c-8ece6176c780} + {6c75d3b2-4f66-4346-91a4-cc31be5ac819} - {66ff2502-78a6-42b1-9c0c-c87b2bec53ae} + {4f7118a6-a424-4e0a-9d71-517dae0f5b4a} - {5ed3d39f-4ca4-4ee8-b2e9-7905fbf2bc49} + {142ef967-cc78-4493-aeb4-f228fc7502c3} - {e11189c8-1556-4568-bf3a-367a1944b003} + {da614ed3-b58a-4881-922e-5faf0140b48e} - {1a703f5b-5ef0-4ad3-94a9-c053949bd1ce} + {323e4412-f46e-410c-82e5-4983d0511921} diff --git a/Data/MySQL/testsuite/TestSuite_vs120.vcxproj b/Data/MySQL/testsuite/TestSuite_vs120.vcxproj index d0faab6ce..48157f2b6 100644 --- a/Data/MySQL/testsuite/TestSuite_vs120.vcxproj +++ b/Data/MySQL/testsuite/TestSuite_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -118,8 +100,34 @@ TestSuite - C:\Program Files (x86)\MySQL\Connector C 6.0.2\include;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath); - C:\Program Files (x86)\MySQL\Connector C 6.0.2\lib\debug;$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false @@ -134,20 +142,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitd.lib;libmysql.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;libmysql.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Console + Windows MachineX86 @@ -166,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;libmysql.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;libmysql.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 @@ -196,21 +202,20 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;libmysql.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Console + Windows MachineX86 @@ -229,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;libmysql.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX86 @@ -260,20 +264,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;libmysql.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Console + Windows MachineX86 @@ -292,34 +295,33 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;libmysql.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 - - - + + + - - - - + + + + - - - \ No newline at end of file + + + diff --git a/Data/MySQL/testsuite/TestSuite_vs120.vcxproj.filters b/Data/MySQL/testsuite/TestSuite_vs120.vcxproj.filters index c75e82285..12ddf9db2 100644 --- a/Data/MySQL/testsuite/TestSuite_vs120.vcxproj.filters +++ b/Data/MySQL/testsuite/TestSuite_vs120.vcxproj.filters @@ -2,28 +2,28 @@ - {fca6e86e-18c4-4e02-a61b-34e1db086866} + {5fccfa10-ef34-4341-9dbe-a88befed9716} - {54864d2c-cbbb-4b9f-bf22-e5b10b1d520f} + {4de03de5-6147-45e9-90d0-9f3676c062c9} - {6e9ecc7f-f391-41a2-8c5d-dc2bae072c06} + {1f5bda10-b79a-480d-a6d0-8b9abadc9b6f} - {7eeaca26-07d1-4196-934c-8ece6176c780} + {b5188906-c9f3-40b4-8892-fb05f78a4019} - {66ff2502-78a6-42b1-9c0c-c87b2bec53ae} + {9ee3dd40-fa54-4bc0-a9f2-6c8132eb9f1f} - {5ed3d39f-4ca4-4ee8-b2e9-7905fbf2bc49} + {4d25206f-ee7f-4a7d-9c07-f155726eb04b} - {e11189c8-1556-4568-bf3a-367a1944b003} + {29e4f596-7430-44d2-bd1c-11a9cfee42c5} - {1a703f5b-5ef0-4ad3-94a9-c053949bd1ce} + {1bf33a47-e9d2-4f5c-b479-ed7df80bcebe} @@ -47,7 +47,7 @@ _Suite\Source Files - + _Driver\Source Files diff --git a/Data/MySQL/testsuite/TestSuite_x64_vs100.vcxproj b/Data/MySQL/testsuite/TestSuite_x64_vs100.vcxproj index 30aaa66b7..834bb9100 100644 --- a/Data/MySQL/testsuite/TestSuite_x64_vs100.vcxproj +++ b/Data/MySQL/testsuite/TestSuite_x64_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX64 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX64 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Data/MySQL/testsuite/TestSuite_x64_vs100.vcxproj.filters b/Data/MySQL/testsuite/TestSuite_x64_vs100.vcxproj.filters index 8eb6c152d..1182c14fe 100644 --- a/Data/MySQL/testsuite/TestSuite_x64_vs100.vcxproj.filters +++ b/Data/MySQL/testsuite/TestSuite_x64_vs100.vcxproj.filters @@ -2,28 +2,28 @@ - {fd624a94-0fec-47b0-b4e3-247417d7921c} + {4b7f661a-d5dd-4b4a-87a6-d36bd1b1196f} - {c7b2414c-a697-4b00-bd0c-46203b1cc7c8} + {4b2d2925-6d49-4731-9276-d03830515dd7} - {bdaadb80-3374-4798-b558-1106961bb7a9} + {832f2a84-596a-4bdd-9822-2dafa166f030} - {cea588d3-9aa0-4b45-8b36-fad431b31422} + {02db5625-a860-4e0b-afbf-2e94c7e29a78} - {b6eaf401-3568-4fd7-b5a2-3d76552e3c0a} + {cf7893bf-b5ba-4c63-8d3d-3187d0906a08} - {f44ced2a-2c70-4a85-b012-fdc60c97306e} + {3d530056-d5b4-4811-bef2-ff827030462a} - {c922efdc-3966-494e-98ee-426a522bcbe0} + {f3dfe485-5d47-43a3-86db-c331a7dae5b2} - {c28e44ef-3d01-436c-bb1a-f3e7d5f7f666} + {7285932a-6d45-4337-8a58-c2293ffac04e} diff --git a/Data/MySQL/testsuite/TestSuite_x64_vs110.vcxproj b/Data/MySQL/testsuite/TestSuite_x64_vs110.vcxproj index 68678d5f7..1f380071e 100644 --- a/Data/MySQL/testsuite/TestSuite_x64_vs110.vcxproj +++ b/Data/MySQL/testsuite/TestSuite_x64_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;libmysql.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;libmysql.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX64 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX64 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) diff --git a/Data/MySQL/testsuite/TestSuite_x64_vs110.vcxproj.filters b/Data/MySQL/testsuite/TestSuite_x64_vs110.vcxproj.filters index 26b2b9622..903c19cd9 100644 --- a/Data/MySQL/testsuite/TestSuite_x64_vs110.vcxproj.filters +++ b/Data/MySQL/testsuite/TestSuite_x64_vs110.vcxproj.filters @@ -2,28 +2,28 @@ - {eeab736f-4879-478b-9df8-239d4fddc440} + {cca0ace0-7fc7-441e-9d3b-f46edcb3274a} - {86a5f1fe-f6ea-450f-b567-45bbaa5af9e8} + {4b570549-1e65-4bb4-82f8-f1a3e6e04d3f} - {e8f13685-3064-44a9-a63d-51bc639e5cf5} + {d1e10ab2-7db0-4973-9e93-1cc3cfc877f9} - {2d8dc3d7-7962-47a5-9afa-f0205a2c6096} + {04492ba2-10aa-4620-a1d9-9a2d349a5e96} - {0af92344-9f0d-4307-818d-565651f6552e} + {c9d7faa4-13aa-4b6b-8bc5-23b5c8996670} - {22bc2f62-6dd9-4ac1-90e4-0e6a319c475e} + {a6547799-4393-403c-b7c0-304513ee2ad5} - {634d5106-80ee-4969-80d9-44a9a0a7fe7b} + {cc0ee467-9f60-4531-bc54-68c981232093} - {72b5e2d1-e3bf-46eb-98b0-15a306c392f1} + {d31f7e66-d4c7-472a-89ff-c46775c3e931} diff --git a/Data/MySQL/testsuite/TestSuite_x64_vs120.vcxproj b/Data/MySQL/testsuite/TestSuite_x64_vs120.vcxproj index 239860c59..0a28181ea 100644 --- a/Data/MySQL/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Data/MySQL/testsuite/TestSuite_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitd.lib;libmysql.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;libmysql.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Console + Windows MachineX64 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;libmysql.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;libmysql.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 @@ -192,21 +202,20 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;libmysql.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Console + Windows MachineX64 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;libmysql.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX64 @@ -256,20 +264,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;libmysql.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Console + Windows MachineX64 @@ -288,34 +295,33 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;libmysql.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 - - - + + + - - - - + + + + - - - \ No newline at end of file + + + diff --git a/Data/MySQL/testsuite/TestSuite_x64_vs120.vcxproj.filters b/Data/MySQL/testsuite/TestSuite_x64_vs120.vcxproj.filters index a563ee41a..9b78e1015 100644 --- a/Data/MySQL/testsuite/TestSuite_x64_vs120.vcxproj.filters +++ b/Data/MySQL/testsuite/TestSuite_x64_vs120.vcxproj.filters @@ -2,28 +2,28 @@ - {eeab736f-4879-478b-9df8-239d4fddc440} + {4c8ea7a0-a358-42ed-a17a-a8f247e9cd95} - {86a5f1fe-f6ea-450f-b567-45bbaa5af9e8} + {3fea38ef-9609-44e6-9abf-7e9b6e3c5f1d} - {e8f13685-3064-44a9-a63d-51bc639e5cf5} + {f4d30dbb-53af-48d0-8c82-fe9d87ef133e} - {2d8dc3d7-7962-47a5-9afa-f0205a2c6096} + {307af97b-fce9-45ba-9ee4-3bfc2def8a47} - {0af92344-9f0d-4307-818d-565651f6552e} + {9253fe03-9699-4334-a341-c5182f1182ab} - {22bc2f62-6dd9-4ac1-90e4-0e6a319c475e} + {918b29f5-7671-4e0b-8877-52c3bf242397} - {634d5106-80ee-4969-80d9-44a9a0a7fe7b} + {cfb000f2-227f-4032-8e96-cd655e838e1c} - {72b5e2d1-e3bf-46eb-98b0-15a306c392f1} + {dd16254e-d394-43fe-9b70-d1cc39d6bf02} @@ -47,7 +47,7 @@ _Suite\Source Files - + _Driver\Source Files diff --git a/Data/ODBC/ODBC_vs100.vcxproj b/Data/ODBC/ODBC_vs100.vcxproj index 3a9ed731b..e405ae567 100644 --- a/Data/ODBC/ODBC_vs100.vcxproj +++ b/Data/ODBC/ODBC_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\..\bin\ - obj\$(Configuration)\ - true - ..\..\bin\ - obj\$(Configuration)\ - false - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - PocoDataODBCd - PocoDataODBCmdd - PocoDataODBCmtd - PocoDataODBC - PocoDataODBCmd - PocoDataODBCmt + ..\..\bin\ + obj\$(Configuration)\ + true + ..\..\bin\ + obj\$(Configuration)\ + false + ..\..\lib\ + obj\$(Configuration)\ + ..\..\lib\ + obj\$(Configuration)\ + ..\..\lib\ + obj\$(Configuration)\ + ..\..\lib\ + obj\$(Configuration)\ + PocoDataODBCd + PocoDataODBCmdd + PocoDataODBCmtd + PocoDataODBC + PocoDataODBCmd + PocoDataODBCmt - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX86 - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\..\lib\PocoDataODBCmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\..\lib\PocoDataODBCmt.lib - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\..\lib\PocoDataODBCmdd.lib - + Disabled OnlyExplicitInline @@ -303,20 +303,20 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true diff --git a/Data/ODBC/ODBC_vs100.vcxproj.filters b/Data/ODBC/ODBC_vs100.vcxproj.filters index 2752bb01d..a5800f323 100644 --- a/Data/ODBC/ODBC_vs100.vcxproj.filters +++ b/Data/ODBC/ODBC_vs100.vcxproj.filters @@ -2,13 +2,13 @@ - {d4014b6f-1483-4cd9-b7fb-61d99b3b2e9f} + {e11c9fd0-8f99-4926-a214-bc879e998157} - {8d1ade46-c6eb-48c9-83aa-ac9e00d45463} + {4b61fc5d-5881-4fc4-a42f-267f2b425ecf} - {572b8a58-9631-476d-b604-3faa04705c34} + {995b0c93-dd5e-4390-b9e5-24edd774e761} diff --git a/Data/ODBC/ODBC_vs110.vcxproj b/Data/ODBC/ODBC_vs110.vcxproj index dd9306629..431d0a5b5 100644 --- a/Data/ODBC/ODBC_vs110.vcxproj +++ b/Data/ODBC/ODBC_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\..\bin\ - obj\$(Configuration)\ - true - ..\..\bin\ - obj\$(Configuration)\ - false - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - PocoDataODBCd - PocoDataODBCmdd - PocoDataODBCmtd - PocoDataODBC - PocoDataODBCmd - PocoDataODBCmt + <_ProjectFileVersion>11.0.61030.0 + PocoDataODBCd + PocoDataODBCmdd + PocoDataODBCmtd + PocoDataODBC + PocoDataODBCmd + PocoDataODBCmt - + + ..\..\bin\ + obj\$(Configuration)\ + true + + + ..\..\bin\ + obj\$(Configuration)\ + false + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -124,7 +136,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -138,7 +149,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -157,7 +168,6 @@ Level3 Default - %(DisableSpecificWarnings) odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -172,7 +182,7 @@ MachineX86 - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -190,13 +200,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\..\lib\PocoDataODBCmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +224,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\..\lib\PocoDataODBCmt.lib - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -239,13 +247,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\..\lib\PocoDataODBCmdd.lib - + Disabled OnlyExplicitInline @@ -265,7 +272,6 @@ Level3 Default - %(DisableSpecificWarnings) odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -309,20 +315,20 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true diff --git a/Data/ODBC/ODBC_vs110.vcxproj.filters b/Data/ODBC/ODBC_vs110.vcxproj.filters index f1b61ad26..93bb31cd8 100644 --- a/Data/ODBC/ODBC_vs110.vcxproj.filters +++ b/Data/ODBC/ODBC_vs110.vcxproj.filters @@ -2,13 +2,13 @@ - {31525210-febb-4ae6-8293-9227042529bd} + {13b6822d-0b4a-4af8-a011-c3475c1310fb} - {9622c714-71d8-4eff-835d-b78d7c3f5cb2} + {f74e2d19-0ada-4378-8397-69f528122199} - {73178635-6a28-4b12-9c5b-96a9bb733afb} + {60708885-390a-4865-b4a4-4a7968a6e52a} diff --git a/Data/ODBC/ODBC_vs120.sln b/Data/ODBC/ODBC_vs120.sln index dfccd5b34..d9da4e5a8 100644 --- a/Data/ODBC/ODBC_vs120.sln +++ b/Data/ODBC/ODBC_vs120.sln @@ -1,45 +1,58 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ODBC", "ODBC_vs120.vcxproj", "{1B29820D-375F-11DB-837B-00123FC423B5}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_vs120.vcxproj", "{00627063-395B-4413-9099-23BDB56562FA}" + ProjectSection(ProjectDependencies) = postProject + {1B29820D-375F-11DB-837B-00123FC423B5} = {1B29820D-375F-11DB-837B-00123FC423B5} + EndProjectSection EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {1B29820D-375F-11DB-837B-00123FC423B5}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {1B29820D-375F-11DB-837B-00123FC423B5}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {1B29820D-375F-11DB-837B-00123FC423B5}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {1B29820D-375F-11DB-837B-00123FC423B5}.release_shared|Win32.ActiveCfg = release_shared|Win32 {1B29820D-375F-11DB-837B-00123FC423B5}.release_shared|Win32.Build.0 = release_shared|Win32 - {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {1B29820D-375F-11DB-837B-00123FC423B5}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {00627063-395B-4413-9099-23BDB56562FA}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {00627063-395B-4413-9099-23BDB56562FA}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {00627063-395B-4413-9099-23BDB56562FA}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {00627063-395B-4413-9099-23BDB56562FA}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {00627063-395B-4413-9099-23BDB56562FA}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {00627063-395B-4413-9099-23BDB56562FA}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {00627063-395B-4413-9099-23BDB56562FA}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {00627063-395B-4413-9099-23BDB56562FA}.release_shared|Win32.ActiveCfg = release_shared|Win32 {00627063-395B-4413-9099-23BDB56562FA}.release_shared|Win32.Build.0 = release_shared|Win32 - {00627063-395B-4413-9099-23BDB56562FA}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {00627063-395B-4413-9099-23BDB56562FA}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {00627063-395B-4413-9099-23BDB56562FA}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {00627063-395B-4413-9099-23BDB56562FA}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {00627063-395B-4413-9099-23BDB56562FA}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {00627063-395B-4413-9099-23BDB56562FA}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {00627063-395B-4413-9099-23BDB56562FA}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {00627063-395B-4413-9099-23BDB56562FA}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {00627063-395B-4413-9099-23BDB56562FA}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {00627063-395B-4413-9099-23BDB56562FA}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {00627063-395B-4413-9099-23BDB56562FA}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {00627063-395B-4413-9099-23BDB56562FA}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {00627063-395B-4413-9099-23BDB56562FA}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {00627063-395B-4413-9099-23BDB56562FA}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {00627063-395B-4413-9099-23BDB56562FA}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Data/ODBC/ODBC_vs120.vcxproj b/Data/ODBC/ODBC_vs120.vcxproj index dcf01794b..e972fccc4 100644 --- a/Data/ODBC/ODBC_vs120.vcxproj +++ b/Data/ODBC/ODBC_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ ODBC Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\..\bin\ - obj\$(Configuration)\ - true - ..\..\bin\ - obj\$(Configuration)\ - false - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoDataODBCd PocoDataODBCmdd PocoDataODBCmtd @@ -107,6 +93,32 @@ PocoDataODBCmd PocoDataODBCmt + + ..\..\bin\ + obj\$(Configuration)\ + true + + + ..\..\bin\ + obj\$(Configuration)\ + false + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + Disabled @@ -120,11 +132,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -153,11 +164,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -185,12 +195,11 @@ true true true - + ..\..\lib\PocoDataODBCmtd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\..\lib\PocoDataODBCmtd.lib @@ -211,11 +220,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\..\lib\PocoDataODBCmt.lib @@ -234,12 +242,11 @@ true true true - + ..\..\lib\PocoDataODBCmdd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\..\lib\PocoDataODBCmdd.lib @@ -260,12 +267,11 @@ true true true - + ..\..\lib\PocoDataODBCmd.pdb Level3 - + Default - %(DisableSpecificWarnings) odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -273,41 +279,41 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + true true @@ -324,8 +330,8 @@ true true - + - - - \ No newline at end of file + + + diff --git a/Data/ODBC/ODBC_vs120.vcxproj.filters b/Data/ODBC/ODBC_vs120.vcxproj.filters index f1b61ad26..d3f2ac66a 100644 --- a/Data/ODBC/ODBC_vs120.vcxproj.filters +++ b/Data/ODBC/ODBC_vs120.vcxproj.filters @@ -2,13 +2,13 @@ - {31525210-febb-4ae6-8293-9227042529bd} + {ba45b459-d758-48fe-a1e5-56462153a09d} - {9622c714-71d8-4eff-835d-b78d7c3f5cb2} + {acfaf09e-2fa6-4acc-be2a-11189c37fe93} - {73178635-6a28-4b12-9c5b-96a9bb733afb} + {000caa16-fe67-4866-9df1-b5d8c60813bd} diff --git a/Data/ODBC/ODBC_x64_vs100.vcxproj b/Data/ODBC/ODBC_x64_vs100.vcxproj index ca31a5f70..afb13b122 100644 --- a/Data/ODBC/ODBC_x64_vs100.vcxproj +++ b/Data/ODBC/ODBC_x64_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\..\bin64\ - obj64\$(Configuration)\ - true - ..\..\bin64\ - obj64\$(Configuration)\ - false - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - PocoDataODBC64d - PocoDataODBCmdd - PocoDataODBCmtd - PocoDataODBC64 - PocoDataODBCmd - PocoDataODBCmt + ..\..\bin64\ + obj64\$(Configuration)\ + true + ..\..\bin64\ + obj64\$(Configuration)\ + false + ..\..\lib64\ + obj64\$(Configuration)\ + ..\..\lib64\ + obj64\$(Configuration)\ + ..\..\lib64\ + obj64\$(Configuration)\ + ..\..\lib64\ + obj64\$(Configuration)\ + PocoDataODBC64d + PocoDataODBCmdd + PocoDataODBCmtd + PocoDataODBC64 + PocoDataODBCmd + PocoDataODBCmt - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX64 - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\..\lib64\PocoDataODBCmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\..\lib64\PocoDataODBCmt.lib - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\..\lib64\PocoDataODBCmdd.lib - + Disabled OnlyExplicitInline @@ -301,20 +301,20 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true diff --git a/Data/ODBC/ODBC_x64_vs100.vcxproj.filters b/Data/ODBC/ODBC_x64_vs100.vcxproj.filters index 37a72e18b..2aae5ff7c 100644 --- a/Data/ODBC/ODBC_x64_vs100.vcxproj.filters +++ b/Data/ODBC/ODBC_x64_vs100.vcxproj.filters @@ -2,13 +2,13 @@ - {0ffa301a-20c8-4b6b-92a2-8eea80201d57} + {6e49f081-a751-4c08-90b8-726767780719} - {240c2892-805e-4f52-bcb7-02c58714c331} + {9e65e357-3b97-4f76-88d2-b81c523d8647} - {546ca69f-02c7-4287-b651-6ffc4d40bab4} + {25de14b3-a469-42ee-8e19-368c9b94f978} diff --git a/Data/ODBC/ODBC_x64_vs110.vcxproj b/Data/ODBC/ODBC_x64_vs110.vcxproj index a5beb3c65..5a337b3d1 100644 --- a/Data/ODBC/ODBC_x64_vs110.vcxproj +++ b/Data/ODBC/ODBC_x64_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\..\bin64\ - obj64\$(Configuration)\ - true - ..\..\bin64\ - obj64\$(Configuration)\ - false - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - PocoDataODBC64d - PocoDataODBCmdd - PocoDataODBCmtd - PocoDataODBC64 - PocoDataODBCmd - PocoDataODBCmt + <_ProjectFileVersion>11.0.61030.0 + PocoDataODBC64d + PocoDataODBCmdd + PocoDataODBCmtd + PocoDataODBC64 + PocoDataODBCmd + PocoDataODBCmt - + + ..\..\bin64\ + obj64\$(Configuration)\ + true + + + ..\..\bin64\ + obj64\$(Configuration)\ + false + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -124,7 +136,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -138,7 +149,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -157,7 +168,6 @@ Level3 Default - %(DisableSpecificWarnings) odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -172,7 +182,7 @@ MachineX64 - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -190,13 +200,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataODBCmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +224,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataODBCmt.lib - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -239,13 +247,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataODBCmdd.lib - + Disabled OnlyExplicitInline @@ -264,7 +271,6 @@ Level3 Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataODBCmd.lib @@ -307,20 +313,20 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true diff --git a/Data/ODBC/ODBC_x64_vs110.vcxproj.filters b/Data/ODBC/ODBC_x64_vs110.vcxproj.filters index 3efefe457..b3d10971b 100644 --- a/Data/ODBC/ODBC_x64_vs110.vcxproj.filters +++ b/Data/ODBC/ODBC_x64_vs110.vcxproj.filters @@ -2,13 +2,13 @@ - {4a52ed7a-1ab5-42f8-8eb0-13db7de40005} + {7c513465-5e0d-4805-8a5d-3d7f6261dd7f} - {2d804826-927c-48b7-a53d-c42922803fa7} + {93f6f27c-2e5f-4ee1-8876-4738c0cb8d61} - {2778a60d-4293-4f80-a11b-b68df93f46b8} + {37ef3329-5865-4c0a-a44d-7e9e5441233c} diff --git a/Data/ODBC/ODBC_x64_vs120.sln b/Data/ODBC/ODBC_x64_vs120.sln index 0d711040f..9b4620375 100644 --- a/Data/ODBC/ODBC_x64_vs120.sln +++ b/Data/ODBC/ODBC_x64_vs120.sln @@ -1,45 +1,58 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ODBC", "ODBC_x64_vs120.vcxproj", "{1B29820D-375F-11DB-837B-00123FC423B5}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_x64_vs120.vcxproj", "{00627063-395B-4413-9099-23BDB56562FA}" + ProjectSection(ProjectDependencies) = postProject + {1B29820D-375F-11DB-837B-00123FC423B5} = {1B29820D-375F-11DB-837B-00123FC423B5} + EndProjectSection EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {1B29820D-375F-11DB-837B-00123FC423B5}.debug_shared|x64.ActiveCfg = debug_shared|x64 {1B29820D-375F-11DB-837B-00123FC423B5}.debug_shared|x64.Build.0 = debug_shared|x64 - {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {1B29820D-375F-11DB-837B-00123FC423B5}.debug_shared|x64.Deploy.0 = debug_shared|x64 {1B29820D-375F-11DB-837B-00123FC423B5}.release_shared|x64.ActiveCfg = release_shared|x64 {1B29820D-375F-11DB-837B-00123FC423B5}.release_shared|x64.Build.0 = release_shared|x64 - {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_md|x64.Build.0 = release_static_md|x64 + {1B29820D-375F-11DB-837B-00123FC423B5}.release_shared|x64.Deploy.0 = release_shared|x64 + {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {1B29820D-375F-11DB-837B-00123FC423B5}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_md|x64.Build.0 = release_static_md|x64 + {1B29820D-375F-11DB-837B-00123FC423B5}.release_static_md|x64.Deploy.0 = release_static_md|x64 {00627063-395B-4413-9099-23BDB56562FA}.debug_shared|x64.ActiveCfg = debug_shared|x64 {00627063-395B-4413-9099-23BDB56562FA}.debug_shared|x64.Build.0 = debug_shared|x64 - {00627063-395B-4413-9099-23BDB56562FA}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {00627063-395B-4413-9099-23BDB56562FA}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {00627063-395B-4413-9099-23BDB56562FA}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {00627063-395B-4413-9099-23BDB56562FA}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {00627063-395B-4413-9099-23BDB56562FA}.debug_shared|x64.Deploy.0 = debug_shared|x64 {00627063-395B-4413-9099-23BDB56562FA}.release_shared|x64.ActiveCfg = release_shared|x64 {00627063-395B-4413-9099-23BDB56562FA}.release_shared|x64.Build.0 = release_shared|x64 - {00627063-395B-4413-9099-23BDB56562FA}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {00627063-395B-4413-9099-23BDB56562FA}.release_static_md|x64.Build.0 = release_static_md|x64 + {00627063-395B-4413-9099-23BDB56562FA}.release_shared|x64.Deploy.0 = release_shared|x64 + {00627063-395B-4413-9099-23BDB56562FA}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {00627063-395B-4413-9099-23BDB56562FA}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {00627063-395B-4413-9099-23BDB56562FA}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {00627063-395B-4413-9099-23BDB56562FA}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {00627063-395B-4413-9099-23BDB56562FA}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {00627063-395B-4413-9099-23BDB56562FA}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {00627063-395B-4413-9099-23BDB56562FA}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {00627063-395B-4413-9099-23BDB56562FA}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {00627063-395B-4413-9099-23BDB56562FA}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {00627063-395B-4413-9099-23BDB56562FA}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {00627063-395B-4413-9099-23BDB56562FA}.release_static_md|x64.Build.0 = release_static_md|x64 + {00627063-395B-4413-9099-23BDB56562FA}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Data/ODBC/ODBC_x64_vs120.vcxproj b/Data/ODBC/ODBC_x64_vs120.vcxproj index b3dd2ac53..479e8aaca 100644 --- a/Data/ODBC/ODBC_x64_vs120.vcxproj +++ b/Data/ODBC/ODBC_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ ODBC Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\..\bin64\ - obj64\$(Configuration)\ - true - ..\..\bin64\ - obj64\$(Configuration)\ - false - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoDataODBC64d PocoDataODBCmdd PocoDataODBCmtd @@ -107,6 +93,32 @@ PocoDataODBCmd PocoDataODBCmt + + ..\..\bin64\ + obj64\$(Configuration)\ + true + + + ..\..\bin64\ + obj64\$(Configuration)\ + false + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + Disabled @@ -120,11 +132,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -153,11 +164,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -185,12 +195,11 @@ true true true - + ..\..\lib64\PocoDataODBCmtd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataODBCmtd.lib @@ -211,11 +220,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataODBCmt.lib @@ -234,12 +242,11 @@ true true true - + ..\..\lib64\PocoDataODBCmdd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataODBCmdd.lib @@ -260,52 +267,51 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\..\lib64\PocoDataODBCmd.lib - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + true true @@ -322,8 +328,8 @@ true true - + - - - \ No newline at end of file + + + diff --git a/Data/ODBC/ODBC_x64_vs120.vcxproj.filters b/Data/ODBC/ODBC_x64_vs120.vcxproj.filters index 3efefe457..16bfa766c 100644 --- a/Data/ODBC/ODBC_x64_vs120.vcxproj.filters +++ b/Data/ODBC/ODBC_x64_vs120.vcxproj.filters @@ -2,13 +2,13 @@ - {4a52ed7a-1ab5-42f8-8eb0-13db7de40005} + {cc5e31db-5183-4ec6-8365-ea019cef9f10} - {2d804826-927c-48b7-a53d-c42922803fa7} + {381c333a-9867-41e0-8017-b17dda3ab56e} - {2778a60d-4293-4f80-a11b-b68df93f46b8} + {1e075fab-b204-43a3-b363-26df064f0596} diff --git a/Data/ODBC/testsuite/TestSuite_vs100.vcxproj b/Data/ODBC/testsuite/TestSuite_vs100.vcxproj index ea462c9a9..67c37bf29 100644 --- a/Data/ODBC/testsuite/TestSuite_vs100.vcxproj +++ b/Data/ODBC/testsuite/TestSuite_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX86 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX86 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Data/ODBC/testsuite/TestSuite_vs100.vcxproj.filters b/Data/ODBC/testsuite/TestSuite_vs100.vcxproj.filters index b807c3d52..da7cfdd8d 100644 --- a/Data/ODBC/testsuite/TestSuite_vs100.vcxproj.filters +++ b/Data/ODBC/testsuite/TestSuite_vs100.vcxproj.filters @@ -2,28 +2,28 @@ - {510df373-a78e-4f31-9d2b-db62b7d85aac} + {7cea07b7-a25e-44a7-a0a3-b25c2f4a5bf9} - {ef120757-1616-4447-9101-bef0fe752d11} + {38774fe8-ef55-4619-9b1f-7991483d458c} - {c1dd7fb7-e548-4055-ae49-50f03db4556b} + {8eab2924-80d4-41d8-bc19-a3edfbd53ca2} - {072b9d1c-9a89-43cd-b874-e45c86d9e682} + {2d05af48-18be-49ab-8bf0-5a23cae26c01} - {f69a957e-2682-4798-b22f-76c0f27e4399} + {d602ff32-3a79-490f-9ab7-e538b35c5014} - {d532ceea-f2f1-4ba4-9fae-d4629d01669a} + {616c8f7b-1c32-47c5-bb7f-340e320fc1fd} - {a017e710-b448-4261-abeb-8c4417668d81} + {9dca8945-72dd-4da7-9913-8f59d07d8062} - {d16a3674-6567-42b2-9348-d45d15141e13} + {c809f647-33f9-4e9c-a66d-c86cb382ab78} diff --git a/Data/ODBC/testsuite/TestSuite_vs110.vcxproj b/Data/ODBC/testsuite/TestSuite_vs110.vcxproj index 05f964ed3..f510fbf08 100644 --- a/Data/ODBC/testsuite/TestSuite_vs110.vcxproj +++ b/Data/ODBC/testsuite/TestSuite_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX86 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX86 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) diff --git a/Data/ODBC/testsuite/TestSuite_vs110.vcxproj.filters b/Data/ODBC/testsuite/TestSuite_vs110.vcxproj.filters index 9b044f50a..65c9c43fc 100644 --- a/Data/ODBC/testsuite/TestSuite_vs110.vcxproj.filters +++ b/Data/ODBC/testsuite/TestSuite_vs110.vcxproj.filters @@ -2,28 +2,28 @@ - {3449dd28-7057-47c6-893e-484357382f9a} + {4a210867-1ca6-4110-962b-b745df2f241c} - {7ed33364-9c61-4cd7-aad4-03f61947c14b} + {8cfb2685-48c6-4007-8a07-651135dcf310} - {7ddb490c-7c7b-4da8-8a90-1d820dfe1bae} + {9c4e733a-0c44-44cd-adba-fbb4cf0994d8} - {d2795ed5-abee-45ae-9068-06cc174577b8} + {39debbec-b8f6-4f0a-8594-2eacf68daf5c} - {9dc476e2-51c9-4b3a-9cd2-d4e3e387ab57} + {45a07a75-8f3a-44c8-af89-736a163fa476} - {26f55ba4-38a0-442f-85ea-91780fba6800} + {5288488f-e7a7-4bee-83cc-dbc1817f31a6} - {b6ab5073-2cb1-4def-835a-a67e75256155} + {5b32e8c3-e4af-4bd0-ac3a-57268cede750} - {b5999f29-7591-499d-b481-86b994e01470} + {806864ed-7967-4dab-ba5c-eed7cc13b7fb} diff --git a/Data/ODBC/testsuite/TestSuite_vs120.vcxproj b/Data/ODBC/testsuite/TestSuite_vs120.vcxproj index dde7cd8d0..de0d1624e 100644 --- a/Data/ODBC/testsuite/TestSuite_vs120.vcxproj +++ b/Data/ODBC/testsuite/TestSuite_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitd.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Console + Windows MachineX86 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 @@ -192,21 +202,20 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Console + Windows MachineX86 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX86 @@ -256,20 +264,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Console + Windows MachineX86 @@ -288,48 +295,47 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Data/ODBC/testsuite/TestSuite_vs120.vcxproj.filters b/Data/ODBC/testsuite/TestSuite_vs120.vcxproj.filters index ba816a405..2574a8ff6 100644 --- a/Data/ODBC/testsuite/TestSuite_vs120.vcxproj.filters +++ b/Data/ODBC/testsuite/TestSuite_vs120.vcxproj.filters @@ -2,28 +2,28 @@ - {3449dd28-7057-47c6-893e-484357382f9a} + {cf4e2d1a-06c4-4712-920d-c4e3904e95dd} - {7ed33364-9c61-4cd7-aad4-03f61947c14b} + {c18cd23d-ce4d-499c-8524-7f46badf3634} - {7ddb490c-7c7b-4da8-8a90-1d820dfe1bae} + {1cf6deee-0d73-4c29-81f2-e7875642bd17} - {d2795ed5-abee-45ae-9068-06cc174577b8} + {2bd5b533-c31f-424a-9dc2-ad760da8d4c8} - {9dc476e2-51c9-4b3a-9cd2-d4e3e387ab57} + {4b9e1efc-ca73-4a39-8ccc-498d03708971} - {26f55ba4-38a0-442f-85ea-91780fba6800} + {67d52ba0-a1ee-4ff2-ae29-ce666751badd} - {b6ab5073-2cb1-4def-835a-a67e75256155} + {e20aad47-987a-4bc9-9814-d424cccbd8d6} - {b5999f29-7591-499d-b481-86b994e01470} + {59bc41a9-010e-4b3d-ba90-26eac28d9af6} @@ -89,7 +89,7 @@ _Suite\Source Files - + _Driver\Source Files diff --git a/Data/ODBC/testsuite/TestSuite_x64_vs100.vcxproj b/Data/ODBC/testsuite/TestSuite_x64_vs100.vcxproj index f7e69a384..a83aaaa6e 100644 --- a/Data/ODBC/testsuite/TestSuite_x64_vs100.vcxproj +++ b/Data/ODBC/testsuite/TestSuite_x64_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX64 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX64 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Data/ODBC/testsuite/TestSuite_x64_vs100.vcxproj.filters b/Data/ODBC/testsuite/TestSuite_x64_vs100.vcxproj.filters index a3677896d..c8bf756a0 100644 --- a/Data/ODBC/testsuite/TestSuite_x64_vs100.vcxproj.filters +++ b/Data/ODBC/testsuite/TestSuite_x64_vs100.vcxproj.filters @@ -2,28 +2,28 @@ - {450ebf5c-f147-47c2-8a5e-3cda37407219} + {12582458-0fcf-47e0-bece-28d30b2b2602} - {89b6c7d3-9bb2-4b47-8d91-cdfb6596501d} + {5b3386fd-2eb3-44de-9507-7c5d388b5955} - {cf9a15ae-bb42-43a5-8aa9-45facce2b88c} + {d1fa0cf4-3211-4811-a926-ebddaa7a2718} - {d6d9e99f-c2d1-4836-a7e1-2c8a88ced3e6} + {df63c7e0-5376-4b90-bb42-2865adee557b} - {e01e9cb5-8dfa-4cb2-a82d-cf75e69a897d} + {185e9c0b-fabb-4f98-b2dc-b8a8d33eef05} - {1abfbea0-122c-4788-b536-c33b2c08fec7} + {e4acfca1-46fc-4364-86a9-1e129505c077} - {b669a038-aca9-4f39-891f-745fe7fdc150} + {e2aad12f-aa64-42fb-a951-46e9b4c227f2} - {298fc110-71e2-4503-a466-821275b2ea76} + {4af9b86a-f102-4282-bf10-ee0c5b678035} diff --git a/Data/ODBC/testsuite/TestSuite_x64_vs110.vcxproj b/Data/ODBC/testsuite/TestSuite_x64_vs110.vcxproj index c8c08ffba..7aa6977bb 100644 --- a/Data/ODBC/testsuite/TestSuite_x64_vs110.vcxproj +++ b/Data/ODBC/testsuite/TestSuite_x64_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX64 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX64 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) diff --git a/Data/ODBC/testsuite/TestSuite_x64_vs110.vcxproj.filters b/Data/ODBC/testsuite/TestSuite_x64_vs110.vcxproj.filters index 1c29b8f2a..227e5eefc 100644 --- a/Data/ODBC/testsuite/TestSuite_x64_vs110.vcxproj.filters +++ b/Data/ODBC/testsuite/TestSuite_x64_vs110.vcxproj.filters @@ -2,28 +2,28 @@ - {89896c1f-80b8-4553-97b2-124e891da195} + {b758f069-17ec-404b-a7aa-01c9b4407f9f} - {7d0215ed-c19e-4250-9135-2a3ffb5b3aed} + {4a8b121f-380e-49e5-a48e-547b68b4ddd9} - {5cfde2cd-4e9c-4083-a96e-d54b7b057d01} + {c4b9d25e-1b12-49d5-9bcb-831efca14854} - {cf2ae3df-893c-477b-81ff-aa660ce0bca9} + {39f83211-efa7-46bd-96e5-581c2192e002} - {00806c84-5431-47c7-bbcc-bc4b8a7863ca} + {a2236a01-11fc-4af4-bfb9-97185d6631f9} - {8528442a-571e-42e5-90b9-a33e5422ecf9} + {552c7bd0-a9c4-4646-a834-f911f9bb22b3} - {b27c75b0-7d05-41d9-b98f-370f0e6ac8f2} + {4c1d2bec-c1ed-49bc-82b9-2dabee207dc6} - {aee0592d-fb93-4733-8a07-19ff5cf04c2f} + {ff26e298-3241-44d1-99b8-cf06c3b48ad8} diff --git a/Data/ODBC/testsuite/TestSuite_x64_vs120.vcxproj b/Data/ODBC/testsuite/TestSuite_x64_vs120.vcxproj index 3c8c56949..93a315e96 100644 --- a/Data/ODBC/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Data/ODBC/testsuite/TestSuite_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitd.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Console + Windows MachineX64 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 @@ -192,21 +202,20 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Console + Windows MachineX64 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX64 @@ -256,20 +264,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Console + Windows MachineX64 @@ -288,48 +295,47 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Data/ODBC/testsuite/TestSuite_x64_vs120.vcxproj.filters b/Data/ODBC/testsuite/TestSuite_x64_vs120.vcxproj.filters index 63a1e039c..a05a18274 100644 --- a/Data/ODBC/testsuite/TestSuite_x64_vs120.vcxproj.filters +++ b/Data/ODBC/testsuite/TestSuite_x64_vs120.vcxproj.filters @@ -2,28 +2,28 @@ - {89896c1f-80b8-4553-97b2-124e891da195} + {c9d7a34a-ba31-4812-a5f1-bd34ae66b2fa} - {7d0215ed-c19e-4250-9135-2a3ffb5b3aed} + {3d576401-6349-4e2c-ae8f-e9d6c80429ba} - {5cfde2cd-4e9c-4083-a96e-d54b7b057d01} + {512b6e45-7f66-4174-a4d5-b14676dcd50c} - {cf2ae3df-893c-477b-81ff-aa660ce0bca9} + {bfa5d12c-e26c-4765-aa2d-afccb4ce695d} - {00806c84-5431-47c7-bbcc-bc4b8a7863ca} + {3c831f3b-0db3-45bf-8a2d-8cb0194504c3} - {8528442a-571e-42e5-90b9-a33e5422ecf9} + {0b931025-4c6c-44b3-bff2-78f81acddea4} - {b27c75b0-7d05-41d9-b98f-370f0e6ac8f2} + {12089acb-5a71-4387-9d34-16bb30b188eb} - {aee0592d-fb93-4733-8a07-19ff5cf04c2f} + {d50c894a-c372-46e9-a283-08549653174d} @@ -89,7 +89,7 @@ _Suite\Source Files - + _Driver\Source Files diff --git a/Data/SQLite/SQLite_WEC2013_vs110.vcxproj b/Data/SQLite/SQLite_WEC2013_vs110.vcxproj index 70bb0daf4..46a915612 100644 --- a/Data/SQLite/SQLite_WEC2013_vs110.vcxproj +++ b/Data/SQLite/SQLite_WEC2013_vs110.vcxproj @@ -128,7 +128,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - _DEBUG;$(ProjectName)_EXPORTS;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;SQLITE_MSVC_LOCALTIME_API;%(PreprocessorDefinitions) + _DEBUG;$(ProjectName)_EXPORTS;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;SQLITE_MSVC_LOCALTIME_API;%(PreprocessorDefinitions) true false MultiThreadedDebugDLL @@ -155,7 +155,7 @@ true Speed .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - NDEBUG;$(ProjectName)_EXPORTS;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;SQLITE_MSVC_LOCALTIME_API;%(PreprocessorDefinitions) + NDEBUG;$(ProjectName)_EXPORTS;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLite_EXPORTS;SQLITE_MSVC_LOCALTIME_API;%(PreprocessorDefinitions) true false MultiThreadedDLL @@ -180,7 +180,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - _DEBUG;POCO_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLITE_MSVC_LOCALTIME_API;%(PreprocessorDefinitions) + _DEBUG;POCO_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLITE_MSVC_LOCALTIME_API;%(PreprocessorDefinitions) true false MultiThreadedDebug @@ -203,7 +203,7 @@ true Speed .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - NDEBUG;POCO_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLITE_MSVC_LOCALTIME_API;%(PreprocessorDefinitions) + NDEBUG;POCO_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLITE_MSVC_LOCALTIME_API;%(PreprocessorDefinitions) true false MultiThreaded @@ -223,7 +223,7 @@ Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - _DEBUG;POCO_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLITE_MSVC_LOCALTIME_API;%(PreprocessorDefinitions) + _DEBUG;POCO_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLITE_MSVC_LOCALTIME_API;%(PreprocessorDefinitions) true false MultiThreadedDebugDLL @@ -246,7 +246,7 @@ true Speed .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) - NDEBUG;POCO_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;SQLITE_THREADSAFE=1;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLITE_MSVC_LOCALTIME_API;%(PreprocessorDefinitions) + NDEBUG;POCO_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;SQLITE_THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;SQLITE_OMIT_UTF16;SQLITE_OMIT_PROGRESS_CALLBACK;SQLITE_OMIT_COMPLETE;SQLITE_OMIT_TCL_VARIABLE;SQLITE_OMIT_DEPRECATED;SQLITE_MSVC_LOCALTIME_API;%(PreprocessorDefinitions) true false MultiThreadedDLL diff --git a/Data/SQLite/SQLite_WEC2013_vs110.vcxproj.filters b/Data/SQLite/SQLite_WEC2013_vs110.vcxproj.filters index ae71fdcb0..d4615a28d 100644 --- a/Data/SQLite/SQLite_WEC2013_vs110.vcxproj.filters +++ b/Data/SQLite/SQLite_WEC2013_vs110.vcxproj.filters @@ -2,22 +2,22 @@ - {2674d75a-87d8-4395-8ba9-cc75a687e564} + {3870c98f-a4d6-48c2-b4ff-9dfe83427d12} - {f7787e91-379e-45fc-896c-34b7dc665471} + {b74d2f38-c2c2-48b2-8db5-f44394777983} - {cfdaec6e-5512-41cb-a0f0-973ecaebcf2e} + {a58a61ef-9a4d-4541-8516-73bd1e6f8919} - {7f52f48b-7ce2-4c3c-aaff-4b7e8b074d53} + {315263da-c494-4c14-8b0a-c275fdaedda6} - {adb14edd-2b45-40fe-9abe-d214bec1f504} + {29cb1bb3-6312-4920-a10a-97902a93f592} - {616b47d5-3457-4800-82c9-fb9e9592c24d} + {1aafff9f-9f63-4345-a56e-c2d39f6d706e} diff --git a/Data/SQLite/SQLite_vs100.vcxproj b/Data/SQLite/SQLite_vs100.vcxproj index 69182f512..cb9c8aca9 100644 --- a/Data/SQLite/SQLite_vs100.vcxproj +++ b/Data/SQLite/SQLite_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\..\bin\ - obj\$(Configuration)\ - true - ..\..\bin\ - obj\$(Configuration)\ - false - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - PocoDataSQLited - PocoDataSQLitemdd - PocoDataSQLitemtd - PocoDataSQLite - PocoDataSQLitemd - PocoDataSQLitemt + ..\..\bin\ + obj\$(Configuration)\ + true + ..\..\bin\ + obj\$(Configuration)\ + false + ..\..\lib\ + obj\$(Configuration)\ + ..\..\lib\ + obj\$(Configuration)\ + ..\..\lib\ + obj\$(Configuration)\ + ..\..\lib\ + obj\$(Configuration)\ + PocoDataSQLited + PocoDataSQLitemdd + PocoDataSQLitemtd + PocoDataSQLite + PocoDataSQLitemd + PocoDataSQLitemt - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX86 - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\..\lib\PocoDataSQLitemtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\..\lib\PocoDataSQLitemt.lib - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\..\lib\PocoDataSQLitemdd.lib - + Disabled OnlyExplicitInline diff --git a/Data/SQLite/SQLite_vs100.vcxproj.filters b/Data/SQLite/SQLite_vs100.vcxproj.filters index c12a1605d..2bf177478 100644 --- a/Data/SQLite/SQLite_vs100.vcxproj.filters +++ b/Data/SQLite/SQLite_vs100.vcxproj.filters @@ -2,22 +2,22 @@ - {4e609b41-82c4-438d-8840-b4a12d40f739} + {e6aced72-4741-441d-b37b-d4e347799dd6} - {c996c461-9baa-4a95-b0ac-429dc187ac3e} + {de37ce41-8e4e-491f-bca7-32451d03ab5c} - {d37df4d4-4503-40f3-8977-c3be47a49356} + {eedceb0e-4019-43f4-9ea7-8ac137e57d5b} - {7010d3ee-0c80-48ef-a088-389702d2caf9} + {ee26b17e-f280-4ab0-9dfc-cfc325934a05} - {3d66eb31-a8d0-44da-bbe5-ef0d3d3355ca} + {cf7c216e-fe45-4bb4-99ef-9c217cf99d1e} - {2b154994-ff36-4807-bce5-7f3f7e5c6bad} + {bfb6b02b-1333-4e46-bd5d-0f7419710301} diff --git a/Data/SQLite/SQLite_vs110.vcxproj b/Data/SQLite/SQLite_vs110.vcxproj index 2ef763616..d25ed0533 100644 --- a/Data/SQLite/SQLite_vs110.vcxproj +++ b/Data/SQLite/SQLite_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\..\bin\ - obj\$(Configuration)\ - true - ..\..\bin\ - obj\$(Configuration)\ - false - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - PocoDataSQLited - PocoDataSQLitemdd - PocoDataSQLitemtd - PocoDataSQLite - PocoDataSQLitemd - PocoDataSQLitemt + <_ProjectFileVersion>11.0.61030.0 + PocoDataSQLited + PocoDataSQLitemdd + PocoDataSQLitemtd + PocoDataSQLite + PocoDataSQLitemd + PocoDataSQLitemt - + + ..\..\bin\ + obj\$(Configuration)\ + true + + + ..\..\bin\ + obj\$(Configuration)\ + false + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -127,7 +139,6 @@ 4996;4244;4018;%(DisableSpecificWarnings) - %(AdditionalDependencies) ..\..\bin\PocoDataSQLited.dll true true @@ -138,7 +149,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ 4996;4244;4018;%(DisableSpecificWarnings) - %(AdditionalDependencies) ..\..\bin\PocoDataSQLite.dll true false @@ -172,7 +182,7 @@ MachineX86 - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,7 @@ ..\..\lib\PocoDataSQLitemtd.lib - + Disabled OnlyExplicitInline @@ -221,7 +231,7 @@ ..\..\lib\PocoDataSQLitemt.lib - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -245,7 +255,7 @@ ..\..\lib\PocoDataSQLitemdd.lib - + Disabled OnlyExplicitInline @@ -268,7 +278,6 @@ 4996;4244;4018;%(DisableSpecificWarnings) - %(AdditionalDependencies) ..\..\lib\PocoDataSQLitemd.lib diff --git a/Data/SQLite/SQLite_vs110.vcxproj.filters b/Data/SQLite/SQLite_vs110.vcxproj.filters index 0c0e76832..dad6557d0 100644 --- a/Data/SQLite/SQLite_vs110.vcxproj.filters +++ b/Data/SQLite/SQLite_vs110.vcxproj.filters @@ -2,22 +2,22 @@ - {1654afe3-8338-4a8d-9531-76243ab57c7e} + {8a1a0384-7407-49e5-aac2-c01c9932a530} - {2c59f410-c8bb-4206-ba5d-24344551781d} + {92c32b1e-4aa9-4a2b-b90c-85540ba0149b} - {1b92e4f7-cd36-41e6-a6b1-0089d05c4e94} + {9846c948-c1e2-4d62-b751-bae3b68a02c7} - {d6252b79-c041-4bc0-9432-73b4cacf86e4} + {c0a1caa3-0f56-4a81-9e83-1c6479501bc9} - {aa9ec1c8-5901-400b-8edd-8837c734a5fe} + {3135385f-1b19-46d4-a2c7-251a5642f78f} - {b9f7489c-e59b-489d-b346-86baeb07efd9} + {92b668bc-e9d7-4131-a205-93907a1580ca} diff --git a/Data/SQLite/SQLite_vs120.sln b/Data/SQLite/SQLite_vs120.sln index 41fdf0e60..a6015d513 100644 --- a/Data/SQLite/SQLite_vs120.sln +++ b/Data/SQLite/SQLite_vs120.sln @@ -1,45 +1,58 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLite", "SQLite_vs120.vcxproj", "{5B889CE7-AD42-4CFE-BBC3-532B61F8329E}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_vs120.vcxproj", "{45528A81-2523-48DD-AEB3-6B6BD73A2C5D}" + ProjectSection(ProjectDependencies) = postProject + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E} = {5B889CE7-AD42-4CFE-BBC3-532B61F8329E} + EndProjectSection EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_shared|Win32.ActiveCfg = release_shared|Win32 {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_shared|Win32.Build.0 = release_shared|Win32 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_shared|Win32.ActiveCfg = release_shared|Win32 {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_shared|Win32.Build.0 = release_shared|Win32 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Data/SQLite/SQLite_vs120.vcxproj b/Data/SQLite/SQLite_vs120.vcxproj index e5b247bff..214acb618 100644 --- a/Data/SQLite/SQLite_vs120.vcxproj +++ b/Data/SQLite/SQLite_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ SQLite Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\..\bin\ - obj\$(Configuration)\ - true - ..\..\bin\ - obj\$(Configuration)\ - false - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ - ..\..\lib\ - obj\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoDataSQLited PocoDataSQLitemdd PocoDataSQLitemtd @@ -107,6 +93,32 @@ PocoDataSQLitemd PocoDataSQLitemt + + ..\..\bin\ + obj\$(Configuration)\ + true + + + ..\..\bin\ + obj\$(Configuration)\ + false + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + + + ..\..\lib\ + obj\$(Configuration)\ + Disabled @@ -120,14 +132,13 @@ true true true - + Level3 EditAndContinue Default 4996;4244;4018;%(DisableSpecificWarnings) - %(AdditionalDependencies) ..\..\bin\PocoDataSQLited.dll true true @@ -153,14 +164,13 @@ true true true - + Level3 - + Default 4996;4244;4018;%(DisableSpecificWarnings) - %(AdditionalDependencies) ..\..\bin\PocoDataSQLite.dll true false @@ -185,7 +195,7 @@ true true true - + ..\..\lib\PocoDataSQLitemtd.pdb Level3 EditAndContinue @@ -211,9 +221,9 @@ true true true - + Level3 - + Default 4996;4244;4018;%(DisableSpecificWarnings) @@ -234,7 +244,7 @@ true true true - + ..\..\lib\PocoDataSQLitemdd.pdb Level3 EditAndContinue @@ -260,41 +270,40 @@ true true true - + ..\..\lib\PocoDataSQLitemd.pdb Level3 - + Default 4996;4244;4018;%(DisableSpecificWarnings) - %(AdditionalDependencies) ..\..\lib\PocoDataSQLitemd.lib - - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Data/SQLite/SQLite_vs120.vcxproj.filters b/Data/SQLite/SQLite_vs120.vcxproj.filters index 0c0e76832..c253d7a0b 100644 --- a/Data/SQLite/SQLite_vs120.vcxproj.filters +++ b/Data/SQLite/SQLite_vs120.vcxproj.filters @@ -2,22 +2,22 @@ - {1654afe3-8338-4a8d-9531-76243ab57c7e} + {304659b3-6bc0-4c69-8908-ed351f08ef9a} - {2c59f410-c8bb-4206-ba5d-24344551781d} + {d45cc236-c08e-47e8-94c4-9060bfcc6721} - {1b92e4f7-cd36-41e6-a6b1-0089d05c4e94} + {9ceb04ea-4593-4913-bd92-3268ec4253b9} - {d6252b79-c041-4bc0-9432-73b4cacf86e4} + {80fb2ced-e671-4a6c-9a2d-0bc1467671e5} - {aa9ec1c8-5901-400b-8edd-8837c734a5fe} + {eaac9e3c-35f4-44b7-8a34-e6c10172188f} - {b9f7489c-e59b-489d-b346-86baeb07efd9} + {a63e63bb-e613-428a-803a-4ffc530a2abc} diff --git a/Data/SQLite/SQLite_x64_vs100.vcxproj b/Data/SQLite/SQLite_x64_vs100.vcxproj index 5fe27e152..887dbeaed 100644 --- a/Data/SQLite/SQLite_x64_vs100.vcxproj +++ b/Data/SQLite/SQLite_x64_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\..\bin64\ - obj64\$(Configuration)\ - true - ..\..\bin64\ - obj64\$(Configuration)\ - false - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - PocoDataSQLite64d - PocoDataSQLitemdd - PocoDataSQLitemtd - PocoDataSQLite64 - PocoDataSQLitemd - PocoDataSQLitemt + ..\..\bin64\ + obj64\$(Configuration)\ + true + ..\..\bin64\ + obj64\$(Configuration)\ + false + ..\..\lib64\ + obj64\$(Configuration)\ + ..\..\lib64\ + obj64\$(Configuration)\ + ..\..\lib64\ + obj64\$(Configuration)\ + ..\..\lib64\ + obj64\$(Configuration)\ + PocoDataSQLite64d + PocoDataSQLitemdd + PocoDataSQLitemtd + PocoDataSQLite64 + PocoDataSQLitemd + PocoDataSQLitemt - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX64 - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\..\lib64\PocoDataSQLitemtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\..\lib64\PocoDataSQLitemt.lib - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\..\lib64\PocoDataSQLitemdd.lib - + Disabled OnlyExplicitInline diff --git a/Data/SQLite/SQLite_x64_vs100.vcxproj.filters b/Data/SQLite/SQLite_x64_vs100.vcxproj.filters index f2ba569a3..60b188106 100644 --- a/Data/SQLite/SQLite_x64_vs100.vcxproj.filters +++ b/Data/SQLite/SQLite_x64_vs100.vcxproj.filters @@ -2,22 +2,22 @@ - {9c6e655f-fee8-4718-b21a-20d1d155bdc1} + {bcaf734c-f1ed-4c4e-acad-70edfcd296c6} - {ed02880c-c814-4b29-a13d-857c56672445} + {3c05f097-04c0-4a55-a384-b33f080ce52f} - {589cf2c0-4e72-4f22-9c60-42da19d5c61e} + {669dcf8f-e6be-4066-9ec4-42bee3625744} - {8bf16ad5-9f01-4312-ac6d-b2522f958ec5} + {0a0b4248-f33c-4ce3-98a6-d027f722a69c} - {a666641e-d4cf-4a97-b146-cfe3cab947be} + {4c24c51b-c76a-428c-9bb7-788009210d6d} - {939d9ee8-27c8-44f1-83d1-5a50d2bb9334} + {3788c2ec-d70e-4994-b80b-c9b189daaef7} diff --git a/Data/SQLite/SQLite_x64_vs110.vcxproj b/Data/SQLite/SQLite_x64_vs110.vcxproj index 975a11c39..832160990 100644 --- a/Data/SQLite/SQLite_x64_vs110.vcxproj +++ b/Data/SQLite/SQLite_x64_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\..\bin64\ - obj64\$(Configuration)\ - true - ..\..\bin64\ - obj64\$(Configuration)\ - false - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - PocoDataSQLite64d - PocoDataSQLitemdd - PocoDataSQLitemtd - PocoDataSQLite64 - PocoDataSQLitemd - PocoDataSQLitemt + <_ProjectFileVersion>11.0.61030.0 + PocoDataSQLite64d + PocoDataSQLitemdd + PocoDataSQLitemtd + PocoDataSQLite64 + PocoDataSQLitemd + PocoDataSQLitemt - + + ..\..\bin64\ + obj64\$(Configuration)\ + true + + + ..\..\bin64\ + obj64\$(Configuration)\ + false + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -127,7 +139,6 @@ 4996;4244;4018;%(DisableSpecificWarnings) - %(AdditionalDependencies) ..\..\bin64\PocoDataSQLite64d.dll true true @@ -138,7 +149,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ 4996;4244;4018;%(DisableSpecificWarnings) - %(AdditionalDependencies) ..\..\bin64\PocoDataSQLite64.dll true false @@ -172,7 +182,7 @@ MachineX64 - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,7 @@ ..\..\lib64\PocoDataSQLitemtd.lib - + Disabled OnlyExplicitInline @@ -221,7 +231,7 @@ ..\..\lib64\PocoDataSQLitemt.lib - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -245,7 +255,7 @@ ..\..\lib64\PocoDataSQLitemdd.lib - + Disabled OnlyExplicitInline diff --git a/Data/SQLite/SQLite_x64_vs110.vcxproj.filters b/Data/SQLite/SQLite_x64_vs110.vcxproj.filters index acfd661e6..a004e05b0 100644 --- a/Data/SQLite/SQLite_x64_vs110.vcxproj.filters +++ b/Data/SQLite/SQLite_x64_vs110.vcxproj.filters @@ -2,22 +2,22 @@ - {e3a116ea-ab9d-47d6-b9cc-5c16ef9b5dbd} + {28c42c58-7519-42a3-9cb3-28ae3c9e7b4e} - {eface8d0-944f-4a5b-898c-bea65b4ae4fa} + {ef8dff5b-6277-4a20-ac1a-d00f5ddff9be} - {b79c984e-3c84-4c94-8ac0-dad9b7fc1142} + {eee88d55-f8ae-4ae6-9ae5-1661bc90d8ae} - {b42abe38-646d-4dd8-9ca9-14d517aac75b} + {342f801f-4d5a-4cb5-aab0-1079e7dcc4c5} - {3c50e562-d3f8-45b9-b1d1-9bbba13c4b8a} + {83e9d0ea-284d-44f9-a362-0af7865a6a31} - {2bdeac5c-a341-4008-85de-0a7f686d8aca} + {717ff287-ab17-4386-a662-a9c39ca8847f} diff --git a/Data/SQLite/SQLite_x64_vs120.sln b/Data/SQLite/SQLite_x64_vs120.sln index 57473e127..6653705cc 100644 --- a/Data/SQLite/SQLite_x64_vs120.sln +++ b/Data/SQLite/SQLite_x64_vs120.sln @@ -1,45 +1,58 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLite", "SQLite_x64_vs120.vcxproj", "{5B889CE7-AD42-4CFE-BBC3-532B61F8329E}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_x64_vs120.vcxproj", "{45528A81-2523-48DD-AEB3-6B6BD73A2C5D}" + ProjectSection(ProjectDependencies) = postProject + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E} = {5B889CE7-AD42-4CFE-BBC3-532B61F8329E} + EndProjectSection EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_shared|x64.ActiveCfg = debug_shared|x64 {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_shared|x64.Build.0 = debug_shared|x64 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_shared|x64.Deploy.0 = debug_shared|x64 {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_shared|x64.ActiveCfg = release_shared|x64 {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_shared|x64.Build.0 = release_shared|x64 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|x64.Build.0 = release_static_md|x64 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_shared|x64.Deploy.0 = release_shared|x64 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|x64.Build.0 = release_static_md|x64 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|x64.Deploy.0 = release_static_md|x64 {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_shared|x64.ActiveCfg = debug_shared|x64 {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_shared|x64.Build.0 = debug_shared|x64 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_shared|x64.Deploy.0 = debug_shared|x64 {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_shared|x64.ActiveCfg = release_shared|x64 {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_shared|x64.Build.0 = release_shared|x64 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|x64.Build.0 = release_static_md|x64 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_shared|x64.Deploy.0 = release_shared|x64 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|x64.Build.0 = release_static_md|x64 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Data/SQLite/SQLite_x64_vs120.vcxproj b/Data/SQLite/SQLite_x64_vs120.vcxproj index b9664fcb9..af5c052ec 100644 --- a/Data/SQLite/SQLite_x64_vs120.vcxproj +++ b/Data/SQLite/SQLite_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ SQLite Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\..\bin64\ - obj64\$(Configuration)\ - true - ..\..\bin64\ - obj64\$(Configuration)\ - false - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ - ..\..\lib64\ - obj64\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoDataSQLite64d PocoDataSQLitemdd PocoDataSQLitemtd @@ -107,6 +93,32 @@ PocoDataSQLitemd PocoDataSQLitemt + + ..\..\bin64\ + obj64\$(Configuration)\ + true + + + ..\..\bin64\ + obj64\$(Configuration)\ + false + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + + + ..\..\lib64\ + obj64\$(Configuration)\ + Disabled @@ -120,14 +132,13 @@ true true true - + Level3 ProgramDatabase Default 4996;4244;4018;%(DisableSpecificWarnings) - %(AdditionalDependencies) ..\..\bin64\PocoDataSQLite64d.dll true true @@ -153,14 +164,13 @@ true true true - + Level3 - + Default 4996;4244;4018;%(DisableSpecificWarnings) - %(AdditionalDependencies) ..\..\bin64\PocoDataSQLite64.dll true false @@ -185,7 +195,7 @@ true true true - + ..\..\lib64\PocoDataSQLitemtd.pdb Level3 ProgramDatabase @@ -211,9 +221,9 @@ true true true - + Level3 - + Default 4996;4244;4018;%(DisableSpecificWarnings) @@ -234,7 +244,7 @@ true true true - + ..\..\lib64\PocoDataSQLitemdd.pdb Level3 ProgramDatabase @@ -260,9 +270,9 @@ true true true - + Level3 - + Default 4996;4244;4018;%(DisableSpecificWarnings) @@ -271,28 +281,28 @@ - - - - - - - - - - + + + + + + + + + + - - - - - - - - - + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Data/SQLite/SQLite_x64_vs120.vcxproj.filters b/Data/SQLite/SQLite_x64_vs120.vcxproj.filters index acfd661e6..1fa6323e9 100644 --- a/Data/SQLite/SQLite_x64_vs120.vcxproj.filters +++ b/Data/SQLite/SQLite_x64_vs120.vcxproj.filters @@ -2,22 +2,22 @@ - {e3a116ea-ab9d-47d6-b9cc-5c16ef9b5dbd} + {5554edb4-89d6-428f-923a-8eee3660a6e1} - {eface8d0-944f-4a5b-898c-bea65b4ae4fa} + {62663b21-1d9d-472f-a472-b9a1ef3b18cc} - {b79c984e-3c84-4c94-8ac0-dad9b7fc1142} + {8571d73c-f488-4e1e-9aae-ac66b73b10e2} - {b42abe38-646d-4dd8-9ca9-14d517aac75b} + {630bdc92-55ca-4e2b-a392-17e94da346d8} - {3c50e562-d3f8-45b9-b1d1-9bbba13c4b8a} + {95d73268-0239-4746-9a97-f11bfdacecf5} - {2bdeac5c-a341-4008-85de-0a7f686d8aca} + {16b63c46-cb7e-436a-aea9-cf321fdd2690} diff --git a/Data/SQLite/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters b/Data/SQLite/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters index abf6c2dca..0b2f56fde 100644 --- a/Data/SQLite/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters +++ b/Data/SQLite/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters @@ -2,28 +2,28 @@ - {4bacbd0d-6176-4522-938e-ec9ec3e1e248} + {3535331d-a727-4c3c-952d-6c605c46e299} - {1794fb61-41a0-465a-b6a4-15b3d412e261} + {8b77cd93-bc3d-4fe2-aa58-3a71019fc652} - {e375a291-a06e-4911-8075-64341512a825} + {59485ed4-205f-477f-a092-4299eb657993} - {b82b9229-9a8f-4193-a526-6af67519e4c2} + {c602ea06-1f70-4b19-bbe7-a11360ee2653} - {adf3fce1-718e-417e-bdf7-d7f7758dd2a5} + {60dab515-4e7f-4bc5-995b-9f9eea556050} - {781bda7d-7707-4178-9849-48c2a8b210a5} + {b9e3336d-4256-460d-a57d-55ebbbab1c0b} - {b23ca940-b2f9-46dd-bd96-95aca0d8dc12} + {a63f2894-4a05-4703-8e95-b951ff5768ea} - {e7d006ee-bd8b-412e-abb7-7bbbafce076e} + {8b1baeea-9332-466e-ba91-008bad096fa9} diff --git a/Data/SQLite/testsuite/TestSuite_vs100.vcxproj b/Data/SQLite/testsuite/TestSuite_vs100.vcxproj index 337fa1e42..c41c07459 100644 --- a/Data/SQLite/testsuite/TestSuite_vs100.vcxproj +++ b/Data/SQLite/testsuite/TestSuite_vs100.vcxproj @@ -33,89 +33,89 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true true EnableFastChecks @@ -141,7 +141,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -149,7 +149,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -173,11 +173,11 @@ MachineX86 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -204,7 +204,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -212,7 +212,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded false @@ -237,11 +237,11 @@ MachineX86 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -267,7 +267,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -275,7 +275,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL false diff --git a/Data/SQLite/testsuite/TestSuite_vs100.vcxproj.filters b/Data/SQLite/testsuite/TestSuite_vs100.vcxproj.filters index 1b73ebbcf..00b5b5d72 100644 --- a/Data/SQLite/testsuite/TestSuite_vs100.vcxproj.filters +++ b/Data/SQLite/testsuite/TestSuite_vs100.vcxproj.filters @@ -2,28 +2,28 @@ - {63b3db95-ecde-4028-a692-2a708d812c5f} + {ce70b33b-f445-4e47-8a7c-83c876dcc432} - {868a0fb3-51a3-45a2-81f9-2253af50121e} + {8ac91aeb-69d7-4323-afa2-43d9ba51f98b} - {9b8ab938-db21-4497-8d38-f8970e01dc7b} + {5014fecb-3dfe-43f3-844f-8c19623caa10} - {fb387daf-61d6-405f-ab9c-b58d2a860aa5} + {36ccc698-5871-4558-8b8d-dbc51ff0d144} - {33e1aa5f-4bcd-4aed-915b-66aa0b38b475} + {7095a95b-ccec-4633-b843-5cca0b6c85ea} - {44ab69ab-7904-4018-ae00-6ae20529de04} + {0e1d4cec-f692-4db5-ab98-c7dfb302d067} - {2babeeec-e0a3-40ae-b270-59e7aba452c1} + {baf21283-da1a-4f55-ad6b-fe9ef0035edd} - {317bb695-d836-4468-bf34-d0bdc528e891} + {86fab0fb-c9be-4df4-b7d5-2c4e2204ad72} diff --git a/Data/SQLite/testsuite/TestSuite_vs110.vcxproj b/Data/SQLite/testsuite/TestSuite_vs110.vcxproj index 046e6d2dc..0ca6eed33 100644 --- a/Data/SQLite/testsuite/TestSuite_vs110.vcxproj +++ b/Data/SQLite/testsuite/TestSuite_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,57 +71,69 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true true EnableFastChecks @@ -134,7 +146,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -155,7 +166,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,11 +189,11 @@ MachineX86 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -196,7 +206,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -218,7 +227,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded false @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,11 +251,11 @@ MachineX86 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -260,7 +268,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -281,7 +288,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/Data/SQLite/testsuite/TestSuite_vs110.vcxproj.filters b/Data/SQLite/testsuite/TestSuite_vs110.vcxproj.filters index 09226aae4..a9ced7780 100644 --- a/Data/SQLite/testsuite/TestSuite_vs110.vcxproj.filters +++ b/Data/SQLite/testsuite/TestSuite_vs110.vcxproj.filters @@ -2,28 +2,28 @@ - {0662a8ea-3883-4e35-8ec6-7d870a14b969} + {b890c730-f3e5-4a1f-83c5-2e03413e82c9} - {61ffd2c4-5462-4b8f-8d59-975032b98058} + {3886ddee-d477-41e1-972f-e95bc999f6b7} - {099cbc40-aa50-4fd1-8db7-ab27ffe6cb84} + {affe1d18-e2c2-468f-9722-915214bd52a3} - {5e5f5bf6-7159-4c2f-91a0-ad00c23b8199} + {a2787e67-75af-4bb5-877e-1f3d3864f2b2} - {3a853a0c-9d8c-4ee8-a623-6c5800666808} + {ecff4d01-8e5a-4764-87ad-af6fa5cda377} - {c96364cf-ec64-4448-a6a8-a3fdd2a44909} + {13d24074-fbc2-46f7-97b3-e534c26f8b9a} - {4c007f51-0179-4ed0-a019-b38f7c44dd3b} + {c247ab47-a3dc-43c6-8667-23ac597e72a1} - {b644ff17-c8ee-44f1-a89b-e4344471fae0} + {b21aed73-2d7a-4a2f-8be8-8feb17a606be} diff --git a/Data/SQLite/testsuite/TestSuite_vs120.vcxproj b/Data/SQLite/testsuite/TestSuite_vs120.vcxproj index 9184c23dd..0c68caf57 100644 --- a/Data/SQLite/testsuite/TestSuite_vs120.vcxproj +++ b/Data/SQLite/testsuite/TestSuite_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,11 +99,41 @@ TestSuite TestSuite + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true true EnableFastChecks @@ -130,20 +142,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Console + Windows MachineX86 @@ -155,25 +166,24 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true MultiThreadedDLL false true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 @@ -183,7 +193,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -192,21 +202,20 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Console + Windows MachineX86 @@ -218,26 +227,25 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded false true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX86 @@ -247,7 +255,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -256,20 +264,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Console + Windows MachineX86 @@ -281,39 +288,38 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL false true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 - - + + - - - + + + - - - \ No newline at end of file + + + diff --git a/Data/SQLite/testsuite/TestSuite_vs120.vcxproj.filters b/Data/SQLite/testsuite/TestSuite_vs120.vcxproj.filters index a6bafbc07..27c99ed45 100644 --- a/Data/SQLite/testsuite/TestSuite_vs120.vcxproj.filters +++ b/Data/SQLite/testsuite/TestSuite_vs120.vcxproj.filters @@ -2,28 +2,28 @@ - {0662a8ea-3883-4e35-8ec6-7d870a14b969} + {b1136989-e823-4778-aad5-f2ee47d0424c} - {61ffd2c4-5462-4b8f-8d59-975032b98058} + {8821a6ba-8091-4855-af6b-8a5a9a2962c2} - {099cbc40-aa50-4fd1-8db7-ab27ffe6cb84} + {a860d90f-2b9b-4e2d-bbdc-02d32f3ed75d} - {5e5f5bf6-7159-4c2f-91a0-ad00c23b8199} + {3de1350d-d30c-4394-94b2-f5d600beb3df} - {3a853a0c-9d8c-4ee8-a623-6c5800666808} + {816bae34-a075-4e7b-8e3a-3141024eef50} - {c96364cf-ec64-4448-a6a8-a3fdd2a44909} + {9b4363f8-fd04-43e9-8d64-eb94214b03c3} - {4c007f51-0179-4ed0-a019-b38f7c44dd3b} + {dffc5cb0-7d15-4049-81a2-0bb714de6118} - {b644ff17-c8ee-44f1-a89b-e4344471fae0} + {e1097f3d-3e0e-4fc1-a8a9-797a37553611} @@ -41,7 +41,7 @@ _Suite\Source Files - + _Driver\Source Files diff --git a/Data/SQLite/testsuite/TestSuite_x64_vs100.vcxproj b/Data/SQLite/testsuite/TestSuite_x64_vs100.vcxproj index 2683eed43..164fc9e02 100644 --- a/Data/SQLite/testsuite/TestSuite_x64_vs100.vcxproj +++ b/Data/SQLite/testsuite/TestSuite_x64_vs100.vcxproj @@ -33,89 +33,89 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true true EnableFastChecks @@ -141,7 +141,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -149,7 +149,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -173,11 +173,11 @@ MachineX64 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -204,7 +204,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -212,7 +212,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded false @@ -237,11 +237,11 @@ MachineX64 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -267,7 +267,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -275,7 +275,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL false diff --git a/Data/SQLite/testsuite/TestSuite_x64_vs100.vcxproj.filters b/Data/SQLite/testsuite/TestSuite_x64_vs100.vcxproj.filters index c0f26a91d..55d58173f 100644 --- a/Data/SQLite/testsuite/TestSuite_x64_vs100.vcxproj.filters +++ b/Data/SQLite/testsuite/TestSuite_x64_vs100.vcxproj.filters @@ -2,28 +2,28 @@ - {fff903bd-ba4c-4a5d-9488-6cfeab5f713b} + {f4d5b02f-8e3f-4cc6-af60-93cf8b7aa7a3} - {9cdc94ed-fba4-4ae7-a30c-96664254cede} + {95772d97-1a80-445d-bc0b-7bfe404d384f} - {40d2cce8-a1ac-4276-91fd-9fd1c9397ea5} + {a0a4f278-4bfb-4c63-ba46-0d589d6b6894} - {140ee65e-f5c2-45c6-a013-28be2fe111f5} + {94ba1fb4-b0aa-4b3a-843a-50cbc1862477} - {7ae0327a-eb00-4286-b5e9-0390a17513b1} + {485e27e2-f5c9-4dfc-9020-493ce6a7b3d5} - {748d9483-8726-4334-904b-3d1b91cf1d29} + {cea6e52c-ee9f-4137-8b69-18dcb399e730} - {66719422-976f-498a-a87f-f6c4c081fb0e} + {fa2ddf82-1654-440a-9305-53d3b040a165} - {65cfd2c0-8b43-4e77-8d8d-1f83fdc85157} + {023a0b6f-34bb-497b-a472-274b7613301e} diff --git a/Data/SQLite/testsuite/TestSuite_x64_vs110.vcxproj b/Data/SQLite/testsuite/TestSuite_x64_vs110.vcxproj index 28845ab6e..7d9dd7354 100644 --- a/Data/SQLite/testsuite/TestSuite_x64_vs110.vcxproj +++ b/Data/SQLite/testsuite/TestSuite_x64_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,57 +71,69 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true true EnableFastChecks @@ -134,7 +146,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -155,7 +166,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,11 +189,11 @@ MachineX64 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -196,7 +206,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -218,7 +227,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded false @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,11 +251,11 @@ MachineX64 - + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -260,7 +268,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -281,7 +288,7 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL false @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/Data/SQLite/testsuite/TestSuite_x64_vs110.vcxproj.filters b/Data/SQLite/testsuite/TestSuite_x64_vs110.vcxproj.filters index e56cef929..17ea609a1 100644 --- a/Data/SQLite/testsuite/TestSuite_x64_vs110.vcxproj.filters +++ b/Data/SQLite/testsuite/TestSuite_x64_vs110.vcxproj.filters @@ -2,28 +2,28 @@ - {92265c65-9aab-49eb-893f-8b7525e1482a} + {e062d948-8d59-433f-88cc-82d444073d02} - {9878a3bd-8ef8-4f0b-8d35-4a62f7c0f429} + {338cf7a4-f178-4c22-bc3a-f65318d3e422} - {b4b05e39-fdce-4146-b271-889b219fbe99} + {2a24d61c-4a8c-433c-a52a-98f2282e058b} - {b241bcbf-6cbd-4485-9388-124d89635e93} + {e4c7fa93-0d90-4ded-96a1-2bc67401ae2c} - {68d4069e-b364-4d3f-8256-a9fbdf435a56} + {acda1983-abf0-439b-981b-76fe542fce09} - {d1a62fec-a9cc-4db5-bc76-84e148d54f16} + {bb7b52dc-2a97-423c-8d80-3d9ae4aebb3d} - {639d0d88-6f91-4c81-a34d-28b5f87d11a2} + {64656ae3-ef76-47aa-b7ca-d17f02499b5d} - {bc4741f4-35a3-4a6b-979b-1209bc96dfbd} + {153d1452-cde8-43a7-8e5e-ac696f8206e4} diff --git a/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj b/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj index 7d9cefea8..49144f37d 100644 --- a/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,11 +99,41 @@ TestSuite TestSuite + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true true EnableFastChecks @@ -130,20 +142,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Console + Windows MachineX64 @@ -155,25 +166,24 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;%(PreprocessorDefinitions) true MultiThreadedDLL false true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 @@ -183,7 +193,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -192,21 +202,20 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Console + Windows MachineX64 @@ -218,26 +227,25 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded false true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX64 @@ -247,7 +255,7 @@ Disabled ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true true EnableFastChecks @@ -256,20 +264,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Console + Windows MachineX64 @@ -281,39 +288,38 @@ Speed true ..\include;..\..\..\CppUnit\include;..\..\..\CppUnit\WinTestRunner\include;..\..\..\Foundation\include;..\..\..\Data\include;%(AdditionalIncludeDirectories) - SQLITE_ENABLE_FTS3;WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0600;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL false true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 - - + + - - - + + + - - - \ No newline at end of file + + + diff --git a/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj.filters b/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj.filters index 1c9517b39..866ec5fee 100644 --- a/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj.filters +++ b/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj.filters @@ -2,28 +2,28 @@ - {92265c65-9aab-49eb-893f-8b7525e1482a} + {83f8b97e-1d3e-4023-8216-b794986b55a3} - {9878a3bd-8ef8-4f0b-8d35-4a62f7c0f429} + {725dc2e8-e21e-46e9-adcf-162de64d80c2} - {b4b05e39-fdce-4146-b271-889b219fbe99} + {933f3952-83cf-4a14-8d99-0322b50620f0} - {b241bcbf-6cbd-4485-9388-124d89635e93} + {90e17a2f-43a6-40ea-9916-1dbd95ea4426} - {68d4069e-b364-4d3f-8256-a9fbdf435a56} + {4de16d62-690c-4816-aaeb-d8d06159315a} - {d1a62fec-a9cc-4db5-bc76-84e148d54f16} + {10928012-e7cf-48fc-9db4-ad99240748ab} - {639d0d88-6f91-4c81-a34d-28b5f87d11a2} + {28dd6a4e-3b79-4250-ba02-e2eaa025481b} - {bc4741f4-35a3-4a6b-979b-1209bc96dfbd} + {a612699c-39f3-4f64-8663-40263899c040} @@ -41,7 +41,7 @@ _Suite\Source Files - + _Driver\Source Files diff --git a/Data/samples/Binding/Binding_WEC2013_vs110.vcxproj.filters b/Data/samples/Binding/Binding_WEC2013_vs110.vcxproj.filters index b0eef092b..001ce1a6e 100644 --- a/Data/samples/Binding/Binding_WEC2013_vs110.vcxproj.filters +++ b/Data/samples/Binding/Binding_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {843a96f5-b0e1-4579-800a-5e954112f6d6} + {0251586b-64d9-46c8-ae5c-727d4ca4b72e} - {37c121a7-6f12-4505-bf8f-fb71a2bf374a} + {418f66ba-adc3-4195-b10f-fd48429f1f55} diff --git a/Data/samples/Binding/Binding_vs100.vcxproj b/Data/samples/Binding/Binding_vs100.vcxproj index 0bbec249f..2a9097fa5 100644 --- a/Data/samples/Binding/Binding_vs100.vcxproj +++ b/Data/samples/Binding/Binding_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Bindingd - Bindingd - Bindingd - Binding - Binding - Binding + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + Bindingd + Bindingd + Bindingd + Binding + Binding + Binding - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -125,7 +125,7 @@ %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\Bindingd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -157,7 +157,7 @@ %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\Binding.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -187,7 +187,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Bindingd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -219,7 +219,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Binding.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -249,7 +249,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Bindingd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -281,7 +281,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Binding.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false diff --git a/Data/samples/Binding/Binding_vs100.vcxproj.filters b/Data/samples/Binding/Binding_vs100.vcxproj.filters index 1455b5281..5e7877326 100644 --- a/Data/samples/Binding/Binding_vs100.vcxproj.filters +++ b/Data/samples/Binding/Binding_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {59b3834a-33cc-445d-bc2c-207a05a34cf8} + {f2bd424a-15f3-4e67-8064-fe933e0756b5} - {85b3efc1-1bc0-45c2-9ed1-97cf9ccdb7a3} + {0331bf57-3031-4ccb-994a-6583c3c894b8} diff --git a/Data/samples/Binding/Binding_vs110.vcxproj b/Data/samples/Binding/Binding_vs110.vcxproj index cacd4d1a7..b047e6995 100644 --- a/Data/samples/Binding/Binding_vs110.vcxproj +++ b/Data/samples/Binding/Binding_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Bindingd - Bindingd - Bindingd - Binding - Binding - Binding + <_ProjectFileVersion>11.0.61030.0 + Bindingd + Bindingd + Bindingd + Binding + Binding + Binding - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -128,10 +140,9 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\Bindingd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,10 +171,9 @@ Level3 Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\Binding.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -190,10 +200,9 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Bindingd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,10 +231,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Binding.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -252,10 +260,9 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Bindingd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,10 +291,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Binding.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false diff --git a/Data/samples/Binding/Binding_vs110.vcxproj.filters b/Data/samples/Binding/Binding_vs110.vcxproj.filters index 379ee3004..7b6acb612 100644 --- a/Data/samples/Binding/Binding_vs110.vcxproj.filters +++ b/Data/samples/Binding/Binding_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {271a256f-87f8-4f4c-a95b-2d9fb1b21db2} + {281d099c-f640-4541-aef8-04a6f05369d3} - {52deecb9-bcbf-47b1-b991-beab0a91d75a} + {a570943e-8689-4b05-af88-daab51c05533} diff --git a/Data/samples/Binding/Binding_vs120.vcxproj b/Data/samples/Binding/Binding_vs120.vcxproj index 413c31e20..dc83f2cd0 100644 --- a/Data/samples/Binding/Binding_vs120.vcxproj +++ b/Data/samples/Binding/Binding_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Binding Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Bindingd Bindingd Bindingd @@ -111,6 +93,36 @@ Binding Binding + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,14 +136,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\Bindingd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -156,14 +167,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\Binding.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -186,14 +196,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Bindingd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -218,14 +227,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Binding.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -248,14 +256,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Bindingd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -280,14 +287,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Binding.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Data/samples/Binding/Binding_vs120.vcxproj.filters b/Data/samples/Binding/Binding_vs120.vcxproj.filters index 379ee3004..58d6d7b12 100644 --- a/Data/samples/Binding/Binding_vs120.vcxproj.filters +++ b/Data/samples/Binding/Binding_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {271a256f-87f8-4f4c-a95b-2d9fb1b21db2} + {764a2ab5-6299-4dfa-bda3-fa76ef954bc0} - {52deecb9-bcbf-47b1-b991-beab0a91d75a} + {7bb8ff52-29c5-40f3-af67-eec719802e98} diff --git a/Data/samples/Binding/Binding_x64_vs100.vcxproj b/Data/samples/Binding/Binding_x64_vs100.vcxproj index 91341ea0d..a7b21e6f5 100644 --- a/Data/samples/Binding/Binding_x64_vs100.vcxproj +++ b/Data/samples/Binding/Binding_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Bindingd - Bindingd - Bindingd - Binding - Binding - Binding + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + Bindingd + Bindingd + Bindingd + Binding + Binding + Binding - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -125,7 +125,7 @@ %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\Bindingd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -157,7 +157,7 @@ %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\Binding.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -187,7 +187,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Bindingd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -219,7 +219,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Binding.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -249,7 +249,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Bindingd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -281,7 +281,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Binding.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false diff --git a/Data/samples/Binding/Binding_x64_vs100.vcxproj.filters b/Data/samples/Binding/Binding_x64_vs100.vcxproj.filters index 1e936390e..c4ab561b8 100644 --- a/Data/samples/Binding/Binding_x64_vs100.vcxproj.filters +++ b/Data/samples/Binding/Binding_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {e632f5f6-92dc-4bd4-a2c0-792e900a14e3} + {0e83e2ee-0252-49ca-9fa2-4eb44cb8d5cf} - {6eda1939-2478-4c10-9ae7-a65a16b74db5} + {93fe9333-e447-4e4f-8b75-af5b07b33101} diff --git a/Data/samples/Binding/Binding_x64_vs110.vcxproj b/Data/samples/Binding/Binding_x64_vs110.vcxproj index 401abac40..3ffc1c204 100644 --- a/Data/samples/Binding/Binding_x64_vs110.vcxproj +++ b/Data/samples/Binding/Binding_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Bindingd - Bindingd - Bindingd - Binding - Binding - Binding + <_ProjectFileVersion>11.0.61030.0 + Bindingd + Bindingd + Bindingd + Binding + Binding + Binding - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -128,10 +140,9 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\Bindingd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,10 +171,9 @@ Level3 Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\Binding.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -190,10 +200,9 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Bindingd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,10 +231,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Binding.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -252,10 +260,9 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Bindingd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,10 +291,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Binding.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false diff --git a/Data/samples/Binding/Binding_x64_vs110.vcxproj.filters b/Data/samples/Binding/Binding_x64_vs110.vcxproj.filters index cb3296356..3c0b41e33 100644 --- a/Data/samples/Binding/Binding_x64_vs110.vcxproj.filters +++ b/Data/samples/Binding/Binding_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {7a2bddf7-0f40-4466-9bea-5a7d428406a4} + {b4f3fe67-6203-4a89-a3fb-4dba6599b343} - {74e010a0-6275-41f8-aeaa-21cec3ec3a64} + {c9544301-1fdf-47d3-bfc1-68238a66523e} diff --git a/Data/samples/Binding/Binding_x64_vs120.vcxproj b/Data/samples/Binding/Binding_x64_vs120.vcxproj index ed9acd591..ab71b2f41 100644 --- a/Data/samples/Binding/Binding_x64_vs120.vcxproj +++ b/Data/samples/Binding/Binding_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Binding Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Bindingd Bindingd Bindingd @@ -111,6 +93,36 @@ Binding Binding + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,14 +136,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\Bindingd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -156,14 +167,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\Binding.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -186,14 +196,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Bindingd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -218,14 +227,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Binding.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -248,14 +256,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Bindingd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -280,14 +287,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Binding.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Data/samples/Binding/Binding_x64_vs120.vcxproj.filters b/Data/samples/Binding/Binding_x64_vs120.vcxproj.filters index cb3296356..fbf454b0d 100644 --- a/Data/samples/Binding/Binding_x64_vs120.vcxproj.filters +++ b/Data/samples/Binding/Binding_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {7a2bddf7-0f40-4466-9bea-5a7d428406a4} + {ff6b76a6-2c02-46ab-b4d2-40555b0b7f0b} - {74e010a0-6275-41f8-aeaa-21cec3ec3a64} + {f1d66615-c3af-467d-b3aa-daad84df9d46} diff --git a/Data/samples/RecordSet/RecordSet_WEC2013_vs110.vcxproj.filters b/Data/samples/RecordSet/RecordSet_WEC2013_vs110.vcxproj.filters index 969dbc7b6..d378db5da 100644 --- a/Data/samples/RecordSet/RecordSet_WEC2013_vs110.vcxproj.filters +++ b/Data/samples/RecordSet/RecordSet_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {72e29cbc-ff00-4b39-934f-488850a5238b} + {95e9ed46-9bec-4415-a112-bce96dca6eff} - {ac9484a6-ff7e-4150-8123-9ee7e2d44e9e} + {ecbf664a-e330-4b3c-b15b-9ac64bc532b5} diff --git a/Data/samples/RecordSet/RecordSet_vs100.vcxproj b/Data/samples/RecordSet/RecordSet_vs100.vcxproj index 234912723..2fcd686b0 100644 --- a/Data/samples/RecordSet/RecordSet_vs100.vcxproj +++ b/Data/samples/RecordSet/RecordSet_vs100.vcxproj @@ -1,4 +1,4 @@ - + @@ -32,7 +32,7 @@ RecordSet Win32Proj - + Application MultiByte @@ -57,27 +57,27 @@ Application MultiByte - - + + - + - + - + - + - + - + - + <_ProjectFileVersion>10.0.40219.1 bin\ @@ -109,7 +109,7 @@ Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_DLL;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true true EnableFastChecks @@ -118,14 +118,14 @@ true true true - + Level3 EditAndContinue Default %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\RecordSetd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -150,14 +150,14 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\RecordSet.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -180,14 +180,14 @@ true true true - + Level3 EditAndContinue Default %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\RecordSetd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -212,14 +212,14 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\RecordSet.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -242,14 +242,14 @@ true true true - + Level3 EditAndContinue Default %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\RecordSetd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -274,14 +274,14 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\RecordSet.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -292,8 +292,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Data/samples/RecordSet/RecordSet_vs100.vcxproj.filters b/Data/samples/RecordSet/RecordSet_vs100.vcxproj.filters index a982dae41..8c9da6eef 100644 --- a/Data/samples/RecordSet/RecordSet_vs100.vcxproj.filters +++ b/Data/samples/RecordSet/RecordSet_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {13f6cfa3-be64-41c3-aa7c-3713138706d0} + {11604c8c-3173-4fe4-8a40-8ff7393f4070} - {2728742f-3940-4f07-ab48-09242ed77157} + {c354e337-fa23-42f4-8d82-c9a8cd751598} diff --git a/Data/samples/RecordSet/RecordSet_vs110.vcxproj b/Data/samples/RecordSet/RecordSet_vs110.vcxproj index 8936925a8..2d36f0026 100644 --- a/Data/samples/RecordSet/RecordSet_vs110.vcxproj +++ b/Data/samples/RecordSet/RecordSet_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - RecordSetd - RecordSetd - RecordSetd - RecordSet - RecordSet - RecordSet + <_ProjectFileVersion>11.0.61030.0 + RecordSetd + RecordSetd + RecordSetd + RecordSet + RecordSet + RecordSet - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -128,10 +140,9 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\RecordSetd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,10 +171,9 @@ Level3 Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\RecordSet.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -190,10 +200,9 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\RecordSetd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,10 +231,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\RecordSet.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -252,10 +260,9 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\RecordSetd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,10 +291,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\RecordSet.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false diff --git a/Data/samples/RecordSet/RecordSet_vs110.vcxproj.filters b/Data/samples/RecordSet/RecordSet_vs110.vcxproj.filters index 40255c3c2..270b019fc 100644 --- a/Data/samples/RecordSet/RecordSet_vs110.vcxproj.filters +++ b/Data/samples/RecordSet/RecordSet_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {e45c2332-bc5d-42ca-9026-388657786459} + {8b7036bb-43f2-4244-a01c-9db23b82f22c} - {af8dd17b-0b74-47de-b36d-fdec40d1d90d} + {2121c00d-5ee0-4595-a305-6e199868381f} diff --git a/Data/samples/RecordSet/RecordSet_vs120.vcxproj b/Data/samples/RecordSet/RecordSet_vs120.vcxproj index d9633fec3..c7b44c99f 100644 --- a/Data/samples/RecordSet/RecordSet_vs120.vcxproj +++ b/Data/samples/RecordSet/RecordSet_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ RecordSet Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 RecordSetd RecordSetd RecordSetd @@ -111,6 +93,36 @@ RecordSet RecordSet + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,14 +136,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\RecordSetd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -156,14 +167,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\RecordSet.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -186,14 +196,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\RecordSetd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -218,14 +227,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\RecordSet.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -248,14 +256,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\RecordSetd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -280,14 +287,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\RecordSet.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Data/samples/RecordSet/RecordSet_vs120.vcxproj.filters b/Data/samples/RecordSet/RecordSet_vs120.vcxproj.filters index 40255c3c2..7faeb141e 100644 --- a/Data/samples/RecordSet/RecordSet_vs120.vcxproj.filters +++ b/Data/samples/RecordSet/RecordSet_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {e45c2332-bc5d-42ca-9026-388657786459} + {6237e1f1-277f-499a-8d1b-1e6b899132ff} - {af8dd17b-0b74-47de-b36d-fdec40d1d90d} + {c84f6093-11d7-4d38-b121-a0378abeff1d} diff --git a/Data/samples/RecordSet/RecordSet_x64_vs100.vcxproj b/Data/samples/RecordSet/RecordSet_x64_vs100.vcxproj index 13e0c7ae0..87c246796 100644 --- a/Data/samples/RecordSet/RecordSet_x64_vs100.vcxproj +++ b/Data/samples/RecordSet/RecordSet_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - RecordSetd - RecordSetd - RecordSetd - RecordSet - RecordSet - RecordSet + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + RecordSetd + RecordSetd + RecordSetd + RecordSet + RecordSet + RecordSet - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -125,7 +125,7 @@ %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\RecordSetd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -157,7 +157,7 @@ %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\RecordSet.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -187,7 +187,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\RecordSetd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -219,7 +219,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\RecordSet.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -249,7 +249,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\RecordSetd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -281,7 +281,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\RecordSet.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false diff --git a/Data/samples/RecordSet/RecordSet_x64_vs100.vcxproj.filters b/Data/samples/RecordSet/RecordSet_x64_vs100.vcxproj.filters index 6d7db4a52..d1335270b 100644 --- a/Data/samples/RecordSet/RecordSet_x64_vs100.vcxproj.filters +++ b/Data/samples/RecordSet/RecordSet_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {5a0c1ff6-b3db-48bd-b7f4-6540528bb8e7} + {ec60424b-4795-4cb4-9a22-78cb92c93f6d} - {4e881fb2-92f2-4c76-bf17-ef191bfbdc32} + {3cd2a9bf-8879-481f-a137-0166dc1a2ecb} diff --git a/Data/samples/RecordSet/RecordSet_x64_vs110.vcxproj b/Data/samples/RecordSet/RecordSet_x64_vs110.vcxproj index d4d59183e..f3b03a55b 100644 --- a/Data/samples/RecordSet/RecordSet_x64_vs110.vcxproj +++ b/Data/samples/RecordSet/RecordSet_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - RecordSetd - RecordSetd - RecordSetd - RecordSet - RecordSet - RecordSet + <_ProjectFileVersion>11.0.61030.0 + RecordSetd + RecordSetd + RecordSetd + RecordSet + RecordSet + RecordSet - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -128,10 +140,9 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\RecordSetd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,10 +171,9 @@ Level3 Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\RecordSet.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -190,10 +200,9 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\RecordSetd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,10 +231,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\RecordSet.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -252,10 +260,9 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\RecordSetd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,10 +291,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\RecordSet.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false diff --git a/Data/samples/RecordSet/RecordSet_x64_vs110.vcxproj.filters b/Data/samples/RecordSet/RecordSet_x64_vs110.vcxproj.filters index 1ec1da21e..01f426bfd 100644 --- a/Data/samples/RecordSet/RecordSet_x64_vs110.vcxproj.filters +++ b/Data/samples/RecordSet/RecordSet_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {25e43f11-2fc6-438b-ad55-210ab53dc2f2} + {e21da48c-edf1-4bcc-94e5-9711a8d56fbb} - {2d4bd2eb-7cf8-41fb-a1f4-dfa4e2ce3baa} + {ba78aaa9-d0f2-4dab-9bc3-ab75b897a022} diff --git a/Data/samples/RecordSet/RecordSet_x64_vs120.vcxproj b/Data/samples/RecordSet/RecordSet_x64_vs120.vcxproj index a67c1bf31..b722e41af 100644 --- a/Data/samples/RecordSet/RecordSet_x64_vs120.vcxproj +++ b/Data/samples/RecordSet/RecordSet_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ RecordSet Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 RecordSetd RecordSetd RecordSetd @@ -111,6 +93,36 @@ RecordSet RecordSet + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,14 +136,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\RecordSetd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -156,14 +167,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\RecordSet.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -186,14 +196,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\RecordSetd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -218,14 +227,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\RecordSet.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -248,14 +256,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\RecordSetd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -280,14 +287,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\RecordSet.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Data/samples/RecordSet/RecordSet_x64_vs120.vcxproj.filters b/Data/samples/RecordSet/RecordSet_x64_vs120.vcxproj.filters index 1ec1da21e..b319a8c84 100644 --- a/Data/samples/RecordSet/RecordSet_x64_vs120.vcxproj.filters +++ b/Data/samples/RecordSet/RecordSet_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {25e43f11-2fc6-438b-ad55-210ab53dc2f2} + {48855408-4d6e-4942-a492-8a9f3abca64f} - {2d4bd2eb-7cf8-41fb-a1f4-dfa4e2ce3baa} + {c34e753b-bd67-495e-8d9a-37b6a674bb37} diff --git a/Data/samples/RowFormatter/RowFormatter_WEC2013_vs110.vcxproj.filters b/Data/samples/RowFormatter/RowFormatter_WEC2013_vs110.vcxproj.filters index 769e9d560..c1fe33ec3 100644 --- a/Data/samples/RowFormatter/RowFormatter_WEC2013_vs110.vcxproj.filters +++ b/Data/samples/RowFormatter/RowFormatter_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {65267fc0-6537-4299-af49-02af0c1024b2} + {fe4e6ed2-fc33-4bf6-9995-be35a97c17a8} - {98ebbded-52d6-413c-87a7-c199013236ed} + {f82d241a-cb72-4ac6-a490-c32516cc916a} diff --git a/Data/samples/RowFormatter/RowFormatter_vs100.vcxproj b/Data/samples/RowFormatter/RowFormatter_vs100.vcxproj index 8d3a9d341..7c9eb4eef 100644 --- a/Data/samples/RowFormatter/RowFormatter_vs100.vcxproj +++ b/Data/samples/RowFormatter/RowFormatter_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - RowFormatterd - RowFormatterd - RowFormatterd - RowFormatter - RowFormatter - RowFormatter + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + RowFormatterd + RowFormatterd + RowFormatterd + RowFormatter + RowFormatter + RowFormatter - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -125,7 +125,7 @@ %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\RowFormatterd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -157,7 +157,7 @@ %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\RowFormatter.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -187,7 +187,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\RowFormatterd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -219,7 +219,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\RowFormatter.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -249,7 +249,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\RowFormatterd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -281,7 +281,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\RowFormatter.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false diff --git a/Data/samples/RowFormatter/RowFormatter_vs100.vcxproj.filters b/Data/samples/RowFormatter/RowFormatter_vs100.vcxproj.filters index e5ee3a991..18c4cc1a3 100644 --- a/Data/samples/RowFormatter/RowFormatter_vs100.vcxproj.filters +++ b/Data/samples/RowFormatter/RowFormatter_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {510d304f-3103-452b-a37a-6645fc85ea64} + {09a91a3c-9c1b-45a8-b913-20ba98c572de} - {bd78f743-f2e4-49fe-affb-edef598cbf23} + {2ff6a3ea-eee3-41e6-9127-c76dfb7a45ec} diff --git a/Data/samples/RowFormatter/RowFormatter_vs110.vcxproj b/Data/samples/RowFormatter/RowFormatter_vs110.vcxproj index 67d1e0d34..6834d090c 100644 --- a/Data/samples/RowFormatter/RowFormatter_vs110.vcxproj +++ b/Data/samples/RowFormatter/RowFormatter_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - RowFormatterd - RowFormatterd - RowFormatterd - RowFormatter - RowFormatter - RowFormatter + <_ProjectFileVersion>11.0.61030.0 + RowFormatterd + RowFormatterd + RowFormatterd + RowFormatter + RowFormatter + RowFormatter - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -128,10 +140,9 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\RowFormatterd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,10 +171,9 @@ Level3 Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\RowFormatter.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -190,10 +200,9 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\RowFormatterd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,10 +231,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\RowFormatter.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -252,10 +260,9 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\RowFormatterd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,10 +291,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\RowFormatter.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false diff --git a/Data/samples/RowFormatter/RowFormatter_vs110.vcxproj.filters b/Data/samples/RowFormatter/RowFormatter_vs110.vcxproj.filters index 98c1f4b2c..ff52d9f7b 100644 --- a/Data/samples/RowFormatter/RowFormatter_vs110.vcxproj.filters +++ b/Data/samples/RowFormatter/RowFormatter_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {54148e6f-e05b-4516-ad24-7fbd79706c55} + {187164e3-6208-4c69-8f5b-7bd1b1c76fb3} - {ee4b08dc-256d-466e-b911-1c464c49be51} + {3091c2df-6c2f-4803-8de6-bc2af76b65f1} diff --git a/Data/samples/RowFormatter/RowFormatter_vs120.vcxproj b/Data/samples/RowFormatter/RowFormatter_vs120.vcxproj index ead87b781..970f4be0c 100644 --- a/Data/samples/RowFormatter/RowFormatter_vs120.vcxproj +++ b/Data/samples/RowFormatter/RowFormatter_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ RowFormatter Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 RowFormatterd RowFormatterd RowFormatterd @@ -111,6 +93,36 @@ RowFormatter RowFormatter + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,14 +136,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\RowFormatterd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -156,14 +167,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\RowFormatter.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -186,14 +196,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\RowFormatterd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -218,14 +227,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\RowFormatter.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -248,14 +256,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\RowFormatterd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -280,14 +287,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\RowFormatter.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Data/samples/RowFormatter/RowFormatter_vs120.vcxproj.filters b/Data/samples/RowFormatter/RowFormatter_vs120.vcxproj.filters index 98c1f4b2c..d7c3fee07 100644 --- a/Data/samples/RowFormatter/RowFormatter_vs120.vcxproj.filters +++ b/Data/samples/RowFormatter/RowFormatter_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {54148e6f-e05b-4516-ad24-7fbd79706c55} + {6a0d8bad-328c-46ad-bacc-d990084380d3} - {ee4b08dc-256d-466e-b911-1c464c49be51} + {09651fbc-86e8-4b70-ab2f-07cfc2c23abb} diff --git a/Data/samples/RowFormatter/RowFormatter_x64_vs100.vcxproj b/Data/samples/RowFormatter/RowFormatter_x64_vs100.vcxproj index 1d0dd2863..ac6baa67e 100644 --- a/Data/samples/RowFormatter/RowFormatter_x64_vs100.vcxproj +++ b/Data/samples/RowFormatter/RowFormatter_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - RowFormatterd - RowFormatterd - RowFormatterd - RowFormatter - RowFormatter - RowFormatter + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + RowFormatterd + RowFormatterd + RowFormatterd + RowFormatter + RowFormatter + RowFormatter - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -125,7 +125,7 @@ %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\RowFormatterd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -157,7 +157,7 @@ %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\RowFormatter.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -187,7 +187,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\RowFormatterd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -219,7 +219,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\RowFormatter.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -249,7 +249,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\RowFormatterd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -281,7 +281,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\RowFormatter.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false diff --git a/Data/samples/RowFormatter/RowFormatter_x64_vs100.vcxproj.filters b/Data/samples/RowFormatter/RowFormatter_x64_vs100.vcxproj.filters index f97233945..30798e250 100644 --- a/Data/samples/RowFormatter/RowFormatter_x64_vs100.vcxproj.filters +++ b/Data/samples/RowFormatter/RowFormatter_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {3e78d069-dd5f-480d-9195-6f1c1de37dab} + {cce5d764-4172-4f35-8894-73fa8e95355a} - {e1d33694-777b-4a34-898a-5d19a463278f} + {07b2796d-acfe-46e2-8e6c-f19761b085a6} diff --git a/Data/samples/RowFormatter/RowFormatter_x64_vs110.vcxproj b/Data/samples/RowFormatter/RowFormatter_x64_vs110.vcxproj index 82c3bb4a7..6417427ad 100644 --- a/Data/samples/RowFormatter/RowFormatter_x64_vs110.vcxproj +++ b/Data/samples/RowFormatter/RowFormatter_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - RowFormatterd - RowFormatterd - RowFormatterd - RowFormatter - RowFormatter - RowFormatter + <_ProjectFileVersion>11.0.61030.0 + RowFormatterd + RowFormatterd + RowFormatterd + RowFormatter + RowFormatter + RowFormatter - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -128,10 +140,9 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\RowFormatterd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,10 +171,9 @@ Level3 Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\RowFormatter.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -190,10 +200,9 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\RowFormatterd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,10 +231,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\RowFormatter.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -252,10 +260,9 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\RowFormatterd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,10 +291,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\RowFormatter.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false diff --git a/Data/samples/RowFormatter/RowFormatter_x64_vs110.vcxproj.filters b/Data/samples/RowFormatter/RowFormatter_x64_vs110.vcxproj.filters index 5f8102463..b3c200c78 100644 --- a/Data/samples/RowFormatter/RowFormatter_x64_vs110.vcxproj.filters +++ b/Data/samples/RowFormatter/RowFormatter_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {1a0b9e86-2482-4cd5-907a-6bf396974db3} + {cee04c2a-4f07-4a52-9fc6-3b7fa0980d56} - {75b1142f-c8c2-4cb7-ac5d-85bfc34c2b2e} + {1c377984-c4fe-4de9-b925-771da63bdf74} diff --git a/Data/samples/RowFormatter/RowFormatter_x64_vs120.vcxproj b/Data/samples/RowFormatter/RowFormatter_x64_vs120.vcxproj index ae896699d..fdb50d67c 100644 --- a/Data/samples/RowFormatter/RowFormatter_x64_vs120.vcxproj +++ b/Data/samples/RowFormatter/RowFormatter_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ RowFormatter Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 RowFormatterd RowFormatterd RowFormatterd @@ -111,6 +93,36 @@ RowFormatter RowFormatter + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,14 +136,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\RowFormatterd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -156,14 +167,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\RowFormatter.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -186,14 +196,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\RowFormatterd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -218,14 +227,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\RowFormatter.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -248,14 +256,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\RowFormatterd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -280,14 +287,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\RowFormatter.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Data/samples/RowFormatter/RowFormatter_x64_vs120.vcxproj.filters b/Data/samples/RowFormatter/RowFormatter_x64_vs120.vcxproj.filters index 5f8102463..603ce1bb6 100644 --- a/Data/samples/RowFormatter/RowFormatter_x64_vs120.vcxproj.filters +++ b/Data/samples/RowFormatter/RowFormatter_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {1a0b9e86-2482-4cd5-907a-6bf396974db3} + {bc5a76c9-984a-4890-b1a7-10c343974446} - {75b1142f-c8c2-4cb7-ac5d-85bfc34c2b2e} + {43727883-6f26-4817-8fda-e60a828233b4} diff --git a/Data/samples/Tuple/Tuple_WEC2013_vs110.vcxproj.filters b/Data/samples/Tuple/Tuple_WEC2013_vs110.vcxproj.filters index dad2c1bb3..7f986684c 100644 --- a/Data/samples/Tuple/Tuple_WEC2013_vs110.vcxproj.filters +++ b/Data/samples/Tuple/Tuple_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {26d1e0a1-302f-4e18-aea2-d24d41969fad} + {ccd95993-240c-4b35-8da0-1967a2646077} - {3d26ef34-5676-439c-a07a-048d38e6083f} + {06522ff2-fc20-49b5-a62b-6b641448d5c4} diff --git a/Data/samples/Tuple/Tuple_vs100.vcxproj b/Data/samples/Tuple/Tuple_vs100.vcxproj index 717086854..c77a9a93b 100644 --- a/Data/samples/Tuple/Tuple_vs100.vcxproj +++ b/Data/samples/Tuple/Tuple_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Tupled - Tupled - Tupled - Tuple - Tuple - Tuple + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + Tupled + Tupled + Tupled + Tuple + Tuple + Tuple - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -125,7 +125,7 @@ %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\Tupled.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -157,7 +157,7 @@ %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\Tuple.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -187,7 +187,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Tupled.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -219,7 +219,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Tuple.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -249,7 +249,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Tupled.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -281,7 +281,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Tuple.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false diff --git a/Data/samples/Tuple/Tuple_vs100.vcxproj.filters b/Data/samples/Tuple/Tuple_vs100.vcxproj.filters index 1f4829e46..b69ea77f0 100644 --- a/Data/samples/Tuple/Tuple_vs100.vcxproj.filters +++ b/Data/samples/Tuple/Tuple_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {a641278d-3b31-4330-b35e-f96580cc4a38} + {80f6027f-08ee-4586-8acf-3b733071da04} - {2a53eeac-a72f-4287-b62b-0f2e4812e051} + {9fb1e4e9-4e08-48c9-9853-54da2d5b206a} diff --git a/Data/samples/Tuple/Tuple_vs110.vcxproj b/Data/samples/Tuple/Tuple_vs110.vcxproj index 7915c51cf..99aa8cd65 100644 --- a/Data/samples/Tuple/Tuple_vs110.vcxproj +++ b/Data/samples/Tuple/Tuple_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Tupled - Tupled - Tupled - Tuple - Tuple - Tuple + <_ProjectFileVersion>11.0.61030.0 + Tupled + Tupled + Tupled + Tuple + Tuple + Tuple - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -128,10 +140,9 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\Tupled.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,10 +171,9 @@ Level3 Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\Tuple.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -190,10 +200,9 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Tupled.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,10 +231,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Tuple.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -252,10 +260,9 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Tupled.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,10 +291,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Tuple.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false diff --git a/Data/samples/Tuple/Tuple_vs110.vcxproj.filters b/Data/samples/Tuple/Tuple_vs110.vcxproj.filters index d12dc7cfe..6b627b71b 100644 --- a/Data/samples/Tuple/Tuple_vs110.vcxproj.filters +++ b/Data/samples/Tuple/Tuple_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {ea64c750-1948-47f5-953a-bb1fbf35d710} + {281dc01d-a9fa-48bd-8c50-1554500215cd} - {976e1de7-e809-4863-a90b-7da06dee29b4} + {ec8d227f-266e-4292-99ff-5aefc3de28c5} diff --git a/Data/samples/Tuple/Tuple_vs120.vcxproj b/Data/samples/Tuple/Tuple_vs120.vcxproj index 8a93c2393..a777c6d98 100644 --- a/Data/samples/Tuple/Tuple_vs120.vcxproj +++ b/Data/samples/Tuple/Tuple_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Tuple Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Tupled Tupled Tupled @@ -111,6 +93,36 @@ Tuple Tuple + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,14 +136,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\Tupled.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -156,14 +167,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin\Tuple.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -186,14 +196,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Tupled.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -218,14 +227,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Tuple.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -248,14 +256,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Tupled.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -280,14 +287,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Tuple.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Data/samples/Tuple/Tuple_vs120.vcxproj.filters b/Data/samples/Tuple/Tuple_vs120.vcxproj.filters index d12dc7cfe..e76acbef8 100644 --- a/Data/samples/Tuple/Tuple_vs120.vcxproj.filters +++ b/Data/samples/Tuple/Tuple_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {ea64c750-1948-47f5-953a-bb1fbf35d710} + {a0605aba-0439-4041-ad2b-78559ccd1902} - {976e1de7-e809-4863-a90b-7da06dee29b4} + {c9918f6c-ff5b-4b5a-a296-946563443023} diff --git a/Data/samples/Tuple/Tuple_x64_vs100.vcxproj b/Data/samples/Tuple/Tuple_x64_vs100.vcxproj index 6bd0f8852..03278b193 100644 --- a/Data/samples/Tuple/Tuple_x64_vs100.vcxproj +++ b/Data/samples/Tuple/Tuple_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Tupled - Tupled - Tupled - Tuple - Tuple - Tuple + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + Tupled + Tupled + Tupled + Tuple + Tuple + Tuple - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -125,7 +125,7 @@ %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\Tupled.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -157,7 +157,7 @@ %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\Tuple.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -187,7 +187,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Tupled.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -219,7 +219,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Tuple.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -249,7 +249,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Tupled.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -281,7 +281,7 @@ %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Tuple.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false diff --git a/Data/samples/Tuple/Tuple_x64_vs100.vcxproj.filters b/Data/samples/Tuple/Tuple_x64_vs100.vcxproj.filters index 30b17448d..dfe6b4704 100644 --- a/Data/samples/Tuple/Tuple_x64_vs100.vcxproj.filters +++ b/Data/samples/Tuple/Tuple_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {39bcd675-dbb0-43ea-b21d-8e0842c62149} + {019b37f2-90f7-4ddc-8f05-baffd29652b6} - {a86c6f21-08d3-41e3-a568-fb59f60709de} + {ea252747-a4d2-4ffe-8571-68473afc6cb5} diff --git a/Data/samples/Tuple/Tuple_x64_vs110.vcxproj b/Data/samples/Tuple/Tuple_x64_vs110.vcxproj index 212d0025c..c02f8d408 100644 --- a/Data/samples/Tuple/Tuple_x64_vs110.vcxproj +++ b/Data/samples/Tuple/Tuple_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Tupled - Tupled - Tupled - Tuple - Tuple - Tuple + <_ProjectFileVersion>11.0.61030.0 + Tupled + Tupled + Tupled + Tuple + Tuple + Tuple - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -128,10 +140,9 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\Tupled.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,10 +171,9 @@ Level3 Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\Tuple.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -190,10 +200,9 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Tupled.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,10 +231,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Tuple.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -252,10 +260,9 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Tupled.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,10 +291,9 @@ Level3 Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Tuple.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false diff --git a/Data/samples/Tuple/Tuple_x64_vs110.vcxproj.filters b/Data/samples/Tuple/Tuple_x64_vs110.vcxproj.filters index 0dd4c04d7..7185e7eef 100644 --- a/Data/samples/Tuple/Tuple_x64_vs110.vcxproj.filters +++ b/Data/samples/Tuple/Tuple_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {f71da730-18ec-491e-acbb-924b5ab98211} + {73752382-b622-4fa2-b7a2-d67c103e1873} - {6432a61c-963a-4c15-992a-bd1b70e18680} + {88d1776f-e824-4390-8af1-82dbb8025aec} diff --git a/Data/samples/Tuple/Tuple_x64_vs120.vcxproj b/Data/samples/Tuple/Tuple_x64_vs120.vcxproj index 6abf80972..0b3683aa0 100644 --- a/Data/samples/Tuple/Tuple_x64_vs120.vcxproj +++ b/Data/samples/Tuple/Tuple_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Tuple Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Tupled Tupled Tupled @@ -111,6 +93,36 @@ Tuple Tuple + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,14 +136,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\Tupled.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -156,14 +167,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;%(AdditionalDependencies) bin64\Tuple.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -186,14 +196,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Tupled.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -218,14 +227,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Tuple.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -248,14 +256,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Tupled.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -280,14 +287,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + iphlpapi.lib;winmm.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Tuple.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Data/samples/Tuple/Tuple_x64_vs120.vcxproj.filters b/Data/samples/Tuple/Tuple_x64_vs120.vcxproj.filters index 0dd4c04d7..3a2ccf406 100644 --- a/Data/samples/Tuple/Tuple_x64_vs120.vcxproj.filters +++ b/Data/samples/Tuple/Tuple_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {f71da730-18ec-491e-acbb-924b5ab98211} + {bb53044d-f032-4773-9876-edd5acaf7d9d} - {6432a61c-963a-4c15-992a-bd1b70e18680} + {c3547659-ab90-4442-8a2b-c9ef04af4a64} diff --git a/Data/samples/TypeHandler/TypeHandler_WEC2013_vs110.vcxproj.filters b/Data/samples/TypeHandler/TypeHandler_WEC2013_vs110.vcxproj.filters index eaf8a9650..546a28f3a 100644 --- a/Data/samples/TypeHandler/TypeHandler_WEC2013_vs110.vcxproj.filters +++ b/Data/samples/TypeHandler/TypeHandler_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {5708722a-f083-432d-955e-926a9b2da521} + {b2bad6d1-22b9-4dfe-b45c-f6ad637fe936} - {efc63648-de4d-49ae-8352-573404ee2285} + {4bb07d79-08d8-4a3f-a05b-6fc40f908bec} diff --git a/Data/samples/TypeHandler/TypeHandler_vs100.vcxproj b/Data/samples/TypeHandler/TypeHandler_vs100.vcxproj index 33df13e5b..ed0717238 100644 --- a/Data/samples/TypeHandler/TypeHandler_vs100.vcxproj +++ b/Data/samples/TypeHandler/TypeHandler_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TypeHandlerd - TypeHandlerd - TypeHandlerd - TypeHandler - TypeHandler - TypeHandler + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TypeHandlerd + TypeHandlerd + TypeHandlerd + TypeHandler + TypeHandler + TypeHandler - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Data/samples/TypeHandler/TypeHandler_vs100.vcxproj.filters b/Data/samples/TypeHandler/TypeHandler_vs100.vcxproj.filters index bcf59ac26..8b80a7ac5 100644 --- a/Data/samples/TypeHandler/TypeHandler_vs100.vcxproj.filters +++ b/Data/samples/TypeHandler/TypeHandler_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {57b8fcc8-43ce-4ab0-b627-8d4c29e49f45} + {a67ba569-de10-4865-9bec-b765260d2174} - {bfaf8fb4-9326-455c-b60d-6d4bd40e7205} + {2e152e6b-d7e1-43be-ac70-8cf60225feee} diff --git a/Data/samples/TypeHandler/TypeHandler_vs110.vcxproj b/Data/samples/TypeHandler/TypeHandler_vs110.vcxproj index e579ff9bb..fa6bca222 100644 --- a/Data/samples/TypeHandler/TypeHandler_vs110.vcxproj +++ b/Data/samples/TypeHandler/TypeHandler_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TypeHandlerd - TypeHandlerd - TypeHandlerd - TypeHandler - TypeHandler - TypeHandler + <_ProjectFileVersion>11.0.61030.0 + TypeHandlerd + TypeHandlerd + TypeHandlerd + TypeHandler + TypeHandler + TypeHandler - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Data/samples/TypeHandler/TypeHandler_vs110.vcxproj.filters b/Data/samples/TypeHandler/TypeHandler_vs110.vcxproj.filters index 1b3300ec7..038dba85f 100644 --- a/Data/samples/TypeHandler/TypeHandler_vs110.vcxproj.filters +++ b/Data/samples/TypeHandler/TypeHandler_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {99f0aaaf-7923-4a91-b845-f76721a2815c} + {3c1e8008-0991-430b-86aa-958450d2f755} - {ede8ef05-4769-4dac-9198-5ba2a9224986} + {def07eaf-b16f-4202-87b2-eeb76d16305f} diff --git a/Data/samples/TypeHandler/TypeHandler_vs120.vcxproj b/Data/samples/TypeHandler/TypeHandler_vs120.vcxproj index c86975476..55d12ac59 100644 --- a/Data/samples/TypeHandler/TypeHandler_vs120.vcxproj +++ b/Data/samples/TypeHandler/TypeHandler_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ TypeHandler Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TypeHandlerd TypeHandlerd TypeHandlerd @@ -111,6 +93,36 @@ TypeHandler TypeHandler + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Data/samples/TypeHandler/TypeHandler_vs120.vcxproj.filters b/Data/samples/TypeHandler/TypeHandler_vs120.vcxproj.filters index 1b3300ec7..81e11ee4b 100644 --- a/Data/samples/TypeHandler/TypeHandler_vs120.vcxproj.filters +++ b/Data/samples/TypeHandler/TypeHandler_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {99f0aaaf-7923-4a91-b845-f76721a2815c} + {97eb0162-987d-4b22-ad54-e44d0737fda1} - {ede8ef05-4769-4dac-9198-5ba2a9224986} + {b8c77747-0d51-499f-a2be-b2e779253bd4} diff --git a/Data/samples/TypeHandler/TypeHandler_x64_vs100.vcxproj b/Data/samples/TypeHandler/TypeHandler_x64_vs100.vcxproj index 9c81dd660..6ef02815d 100644 --- a/Data/samples/TypeHandler/TypeHandler_x64_vs100.vcxproj +++ b/Data/samples/TypeHandler/TypeHandler_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TypeHandlerd - TypeHandlerd - TypeHandlerd - TypeHandler - TypeHandler - TypeHandler + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TypeHandlerd + TypeHandlerd + TypeHandlerd + TypeHandler + TypeHandler + TypeHandler - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Data/samples/TypeHandler/TypeHandler_x64_vs100.vcxproj.filters b/Data/samples/TypeHandler/TypeHandler_x64_vs100.vcxproj.filters index 37e016934..f90943d0a 100644 --- a/Data/samples/TypeHandler/TypeHandler_x64_vs100.vcxproj.filters +++ b/Data/samples/TypeHandler/TypeHandler_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {bc19ccfc-b779-4090-8599-dcb691e528f2} + {7a18ebf6-b203-45af-bf7e-fbd33bd57a9d} - {0cc060eb-67c7-4082-b148-3197dd6d8ea9} + {8533c7ab-a595-452b-bd63-312b8a379df8} diff --git a/Data/samples/TypeHandler/TypeHandler_x64_vs110.vcxproj b/Data/samples/TypeHandler/TypeHandler_x64_vs110.vcxproj index 649723468..f96cdff9c 100644 --- a/Data/samples/TypeHandler/TypeHandler_x64_vs110.vcxproj +++ b/Data/samples/TypeHandler/TypeHandler_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TypeHandlerd - TypeHandlerd - TypeHandlerd - TypeHandler - TypeHandler - TypeHandler + <_ProjectFileVersion>11.0.61030.0 + TypeHandlerd + TypeHandlerd + TypeHandlerd + TypeHandler + TypeHandler + TypeHandler - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Data/samples/TypeHandler/TypeHandler_x64_vs110.vcxproj.filters b/Data/samples/TypeHandler/TypeHandler_x64_vs110.vcxproj.filters index c9d71fd8d..e2ad5f618 100644 --- a/Data/samples/TypeHandler/TypeHandler_x64_vs110.vcxproj.filters +++ b/Data/samples/TypeHandler/TypeHandler_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {3834966a-b7c0-4298-8e54-aa3fa470a2ee} + {16e98d24-2918-4632-94a0-d258ad43b340} - {7309737d-42bd-4bf4-a04d-00b3e614fe47} + {3f842498-d7d4-4208-8a6d-85ffba5bf9d9} diff --git a/Data/samples/TypeHandler/TypeHandler_x64_vs120.vcxproj b/Data/samples/TypeHandler/TypeHandler_x64_vs120.vcxproj index 81ece9eb1..318ec29c9 100644 --- a/Data/samples/TypeHandler/TypeHandler_x64_vs120.vcxproj +++ b/Data/samples/TypeHandler/TypeHandler_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ TypeHandler Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TypeHandlerd TypeHandlerd TypeHandlerd @@ -111,6 +93,36 @@ TypeHandler TypeHandler + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Data/samples/TypeHandler/TypeHandler_x64_vs120.vcxproj.filters b/Data/samples/TypeHandler/TypeHandler_x64_vs120.vcxproj.filters index c9d71fd8d..60a4b079f 100644 --- a/Data/samples/TypeHandler/TypeHandler_x64_vs120.vcxproj.filters +++ b/Data/samples/TypeHandler/TypeHandler_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {3834966a-b7c0-4298-8e54-aa3fa470a2ee} + {c4063dc0-9d8a-4376-aee5-9ddf7673c72a} - {7309737d-42bd-4bf4-a04d-00b3e614fe47} + {d14ad876-6e8d-424e-ac56-ec11d63dc913} diff --git a/Data/samples/WebNotifier/WebNotifier_WEC2013_vs110.vcxproj.filters b/Data/samples/WebNotifier/WebNotifier_WEC2013_vs110.vcxproj.filters index d7aeb37f8..f9857ced2 100644 --- a/Data/samples/WebNotifier/WebNotifier_WEC2013_vs110.vcxproj.filters +++ b/Data/samples/WebNotifier/WebNotifier_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {2dd31f5e-c14f-4529-b9da-5127c9d509be} + {5ec2012a-4a65-4b1a-9e35-4269734fe0d5} - {1bbce755-41ad-4266-9e31-5463ab8a594f} + {5d636e7f-6a38-44fe-9330-6e692a2c77ac} diff --git a/Data/samples/WebNotifier/WebNotifier_vs100.vcxproj b/Data/samples/WebNotifier/WebNotifier_vs100.vcxproj index 0bb195cbc..46b71fdc6 100644 --- a/Data/samples/WebNotifier/WebNotifier_vs100.vcxproj +++ b/Data/samples/WebNotifier/WebNotifier_vs100.vcxproj @@ -28,87 +28,87 @@ WebNotifier - {0F0DF069-83D1-378D-A949-8DF9A883B627} + {BACF8377-AD61-3B07-9BD5-6AEFCB0EC754} WebNotifier Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - WebNotifierd - WebNotifierd - WebNotifierd - WebNotifier - WebNotifier - WebNotifier + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + WebNotifierd + WebNotifierd + WebNotifierd + WebNotifier + WebNotifier + WebNotifier - + Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true true @@ -135,14 +135,14 @@ MachineX86 - + Disabled OnlyExplicitInline true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -167,10 +167,10 @@ MachineX86 - + Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -197,14 +197,14 @@ MachineX86 - + Disabled OnlyExplicitInline true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded @@ -229,10 +229,10 @@ MachineX86 - + Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -259,14 +259,14 @@ MachineX86 - + Disabled OnlyExplicitInline true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL diff --git a/Data/samples/WebNotifier/WebNotifier_vs100.vcxproj.filters b/Data/samples/WebNotifier/WebNotifier_vs100.vcxproj.filters index b9b6afdfa..29ffa0fcd 100644 --- a/Data/samples/WebNotifier/WebNotifier_vs100.vcxproj.filters +++ b/Data/samples/WebNotifier/WebNotifier_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {59b3834a-33cc-445d-bc2c-207a05a34cf8} + {61b5ed97-f358-43a2-9454-a6381379fb9e} - {85b3efc1-1bc0-45c2-9ed1-97cf9ccdb7a3} + {ac991df6-2480-47d1-8c20-4e61f9396b0a} diff --git a/Data/samples/WebNotifier/WebNotifier_vs110.vcxproj b/Data/samples/WebNotifier/WebNotifier_vs110.vcxproj index 3ed7e8835..3a6a5192d 100644 --- a/Data/samples/WebNotifier/WebNotifier_vs110.vcxproj +++ b/Data/samples/WebNotifier/WebNotifier_vs110.vcxproj @@ -1,4 +1,4 @@ - + @@ -28,11 +28,11 @@ WebNotifier - {90B19F28-5258-4618-873A-AF8470B7D91B} + {BACF8377-AD61-3B07-9BD5-6AEFCB0EC754} WebNotifier Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v110 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 WebNotifierd WebNotifierd WebNotifierd @@ -111,10 +93,40 @@ WebNotifier WebNotifier + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true true @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -148,7 +159,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -176,7 +186,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -210,7 +219,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -238,7 +246,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,7 +279,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Data/samples/WebNotifier/WebNotifier_vs110.vcxproj.filters b/Data/samples/WebNotifier/WebNotifier_vs110.vcxproj.filters index 781826d81..de664219d 100644 --- a/Data/samples/WebNotifier/WebNotifier_vs110.vcxproj.filters +++ b/Data/samples/WebNotifier/WebNotifier_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {271a256f-87f8-4f4c-a95b-2d9fb1b21db2} + {cb27fe33-fe16-48c9-ac85-ddbe1492fddf} - {52deecb9-bcbf-47b1-b991-beab0a91d75a} + {0795c60b-21d5-4726-921b-0ab827844cf1} diff --git a/Data/samples/WebNotifier/WebNotifier_vs120.vcxproj b/Data/samples/WebNotifier/WebNotifier_vs120.vcxproj index 9f643043f..ce97623a1 100644 --- a/Data/samples/WebNotifier/WebNotifier_vs120.vcxproj +++ b/Data/samples/WebNotifier/WebNotifier_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -28,11 +28,11 @@ WebNotifier - {90B19F28-5258-4618-873A-AF8470B7D91B} + {BACF8377-AD61-3B07-9BD5-6AEFCB0EC754} WebNotifier Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 WebNotifierd WebNotifierd WebNotifierd @@ -111,10 +93,40 @@ WebNotifier WebNotifier + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true true @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -148,7 +159,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -176,7 +186,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -210,7 +219,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -238,7 +246,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,7 +279,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Data/samples/WebNotifier/WebNotifier_vs120.vcxproj.filters b/Data/samples/WebNotifier/WebNotifier_vs120.vcxproj.filters index 781826d81..8e7a89c3a 100644 --- a/Data/samples/WebNotifier/WebNotifier_vs120.vcxproj.filters +++ b/Data/samples/WebNotifier/WebNotifier_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {271a256f-87f8-4f4c-a95b-2d9fb1b21db2} + {caa93f61-dac8-4a9c-9826-842601c54936} - {52deecb9-bcbf-47b1-b991-beab0a91d75a} + {cf9a69e7-e131-4225-a3cb-3aa235754e0f} diff --git a/Data/samples/WebNotifier/WebNotifier_x64_vs100.vcxproj b/Data/samples/WebNotifier/WebNotifier_x64_vs100.vcxproj index a7794af5b..392725a1a 100644 --- a/Data/samples/WebNotifier/WebNotifier_x64_vs100.vcxproj +++ b/Data/samples/WebNotifier/WebNotifier_x64_vs100.vcxproj @@ -28,87 +28,87 @@ WebNotifier - {0F0DF069-83D1-378D-A949-8DF9A883B627} + {BACF8377-AD61-3B07-9BD5-6AEFCB0EC754} WebNotifier Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - WebNotifierd - WebNotifierd - WebNotifierd - WebNotifier - WebNotifier - WebNotifier + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + WebNotifierd + WebNotifierd + WebNotifierd + WebNotifier + WebNotifier + WebNotifier - + Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true true @@ -135,14 +135,14 @@ MachineX64 - + Disabled OnlyExplicitInline true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -167,10 +167,10 @@ MachineX64 - + Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -197,14 +197,14 @@ MachineX64 - + Disabled OnlyExplicitInline true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded @@ -229,10 +229,10 @@ MachineX64 - + Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -259,14 +259,14 @@ MachineX64 - + Disabled OnlyExplicitInline true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL diff --git a/Data/samples/WebNotifier/WebNotifier_x64_vs100.vcxproj.filters b/Data/samples/WebNotifier/WebNotifier_x64_vs100.vcxproj.filters index 4219bc9c7..1d4ae26c6 100644 --- a/Data/samples/WebNotifier/WebNotifier_x64_vs100.vcxproj.filters +++ b/Data/samples/WebNotifier/WebNotifier_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {e632f5f6-92dc-4bd4-a2c0-792e900a14e3} + {ccb27745-29cf-420b-8568-61279b216b5e} - {6eda1939-2478-4c10-9ae7-a65a16b74db5} + {e09aece7-856c-4ec2-83e3-c2f9bcc71c7b} diff --git a/Data/samples/WebNotifier/WebNotifier_x64_vs110.vcxproj b/Data/samples/WebNotifier/WebNotifier_x64_vs110.vcxproj index b06a48ff3..a965f8fd1 100644 --- a/Data/samples/WebNotifier/WebNotifier_x64_vs110.vcxproj +++ b/Data/samples/WebNotifier/WebNotifier_x64_vs110.vcxproj @@ -1,4 +1,4 @@ - + @@ -28,11 +28,11 @@ WebNotifier - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15} + {BACF8377-AD61-3B07-9BD5-6AEFCB0EC754} WebNotifier Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v110 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 WebNotifierd WebNotifierd WebNotifierd @@ -111,10 +93,40 @@ WebNotifier WebNotifier + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true true @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -148,7 +159,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -176,7 +186,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -210,7 +219,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -238,7 +246,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,7 +279,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Data/samples/WebNotifier/WebNotifier_x64_vs110.vcxproj.filters b/Data/samples/WebNotifier/WebNotifier_x64_vs110.vcxproj.filters index 1b1b70731..00d786e58 100644 --- a/Data/samples/WebNotifier/WebNotifier_x64_vs110.vcxproj.filters +++ b/Data/samples/WebNotifier/WebNotifier_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {7a2bddf7-0f40-4466-9bea-5a7d428406a4} + {a41c19a6-0238-407f-84aa-108ad067f325} - {74e010a0-6275-41f8-aeaa-21cec3ec3a64} + {1eea21b6-ff39-48ad-bfdd-198815f3ef1f} diff --git a/Data/samples/WebNotifier/WebNotifier_x64_vs120.vcxproj b/Data/samples/WebNotifier/WebNotifier_x64_vs120.vcxproj index 1d1ebd5e2..a944c028b 100644 --- a/Data/samples/WebNotifier/WebNotifier_x64_vs120.vcxproj +++ b/Data/samples/WebNotifier/WebNotifier_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -28,11 +28,11 @@ WebNotifier - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15} + {BACF8377-AD61-3B07-9BD5-6AEFCB0EC754} WebNotifier Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 WebNotifierd WebNotifierd WebNotifierd @@ -111,10 +93,40 @@ WebNotifier WebNotifier + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true true @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -148,7 +159,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -176,7 +186,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -210,7 +219,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -238,7 +246,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,7 +279,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Data/samples/WebNotifier/WebNotifier_x64_vs120.vcxproj.filters b/Data/samples/WebNotifier/WebNotifier_x64_vs120.vcxproj.filters index 1b1b70731..b51b97f0f 100644 --- a/Data/samples/WebNotifier/WebNotifier_x64_vs120.vcxproj.filters +++ b/Data/samples/WebNotifier/WebNotifier_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {7a2bddf7-0f40-4466-9bea-5a7d428406a4} + {5be7bbfb-3afa-4ac1-94f7-6a6c0bc43a03} - {74e010a0-6275-41f8-aeaa-21cec3ec3a64} + {d027bd63-28be-4435-a083-6b10a4cfa91f} diff --git a/Data/samples/samples_vs110.sln b/Data/samples/samples_vs110.sln index ae1125a75..27ca82e63 100644 --- a/Data/samples/samples_vs110.sln +++ b/Data/samples/samples_vs110.sln @@ -10,120 +10,106 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Tuple", "Tuple\Tuple_vs110. EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TypeHandler", "TypeHandler\TypeHandler_vs110.vcxproj", "{65A12348-CA20-324E-9F5E-7F82753C2C65}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WebNotifier", "WebNotifier\WebNotifier_vs110.vcxproj", "{90B19F28-5258-4618-873A-AF8470B7D91B}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|Win32.Build.0 = debug_shared|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|Win32.ActiveCfg = release_shared|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|Win32.Build.0 = release_shared|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|Win32.Build.0 = debug_shared|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|Win32.ActiveCfg = release_shared|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|Win32.Build.0 = release_shared|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|Win32.Build.0 = debug_shared|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|Win32.ActiveCfg = release_shared|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|Win32.Build.0 = release_shared|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|Win32.Build.0 = debug_shared|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|Win32.ActiveCfg = release_shared|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|Win32.Build.0 = release_shared|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|Win32.Build.0 = debug_shared|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|Win32.ActiveCfg = release_shared|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|Win32.Build.0 = release_shared|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.release_shared|Win32.ActiveCfg = release_shared|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.release_shared|Win32.Build.0 = release_shared|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Data/samples/samples_vs120.sln b/Data/samples/samples_vs120.sln index bfec6397c..ed346dbf4 100644 --- a/Data/samples/samples_vs120.sln +++ b/Data/samples/samples_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Binding", "Binding\Binding_vs120.vcxproj", "{0F0DF069-83D1-378D-A949-8DF9A883B627}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RecordSet", "RecordSet\RecordSet_vs120.vcxproj", "{FEE20DCE-B9E3-30AB-A40C-B6A324997328}" @@ -10,120 +10,106 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Tuple", "Tuple\Tuple_vs120. EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TypeHandler", "TypeHandler\TypeHandler_vs120.vcxproj", "{65A12348-CA20-324E-9F5E-7F82753C2C65}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WebNotifier", "WebNotifier\WebNotifier_vs120.vcxproj", "{90B19F28-5258-4618-873A-AF8470B7D91B}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|Win32.Build.0 = debug_shared|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|Win32.ActiveCfg = release_shared|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|Win32.Build.0 = release_shared|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|Win32.Build.0 = debug_shared|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|Win32.ActiveCfg = release_shared|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|Win32.Build.0 = release_shared|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|Win32.Build.0 = debug_shared|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|Win32.ActiveCfg = release_shared|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|Win32.Build.0 = release_shared|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|Win32.Build.0 = debug_shared|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|Win32.ActiveCfg = release_shared|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|Win32.Build.0 = release_shared|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|Win32.Build.0 = debug_shared|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|Win32.ActiveCfg = release_shared|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|Win32.Build.0 = release_shared|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.release_shared|Win32.ActiveCfg = release_shared|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.release_shared|Win32.Build.0 = release_shared|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 - {90B19F28-5258-4618-873A-AF8470B7D91B}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Data/samples/samples_x64_vs110.sln b/Data/samples/samples_x64_vs110.sln index 510b574f6..822f27a0c 100644 --- a/Data/samples/samples_x64_vs110.sln +++ b/Data/samples/samples_x64_vs110.sln @@ -10,120 +10,106 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Tuple", "Tuple\Tuple_x64_vs EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TypeHandler", "TypeHandler\TypeHandler_x64_vs110.vcxproj", "{65A12348-CA20-324E-9F5E-7F82753C2C65}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WebNotifier", "WebNotifier\WebNotifier_x64_vs110.vcxproj", "{D6EB2EAD-55B6-4504-958D-DC7F52D22B15}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|x64.ActiveCfg = debug_shared|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|x64.Build.0 = debug_shared|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|x64.Deploy.0 = debug_shared|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|x64.ActiveCfg = release_shared|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|x64.Build.0 = release_shared|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|x64.Deploy.0 = release_shared|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|x64.Build.0 = release_static_md|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|x64.Deploy.0 = release_static_md|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|x64.Build.0 = release_static_mt|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|x64.Build.0 = release_static_md|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|x64.Deploy.0 = release_static_md|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|x64.ActiveCfg = debug_shared|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|x64.Build.0 = debug_shared|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|x64.Deploy.0 = debug_shared|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|x64.ActiveCfg = release_shared|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|x64.Build.0 = release_shared|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|x64.Deploy.0 = release_shared|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|x64.Build.0 = release_static_md|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|x64.Deploy.0 = release_static_md|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|x64.Build.0 = release_static_mt|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|x64.Build.0 = release_static_md|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|x64.Deploy.0 = release_static_md|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|x64.ActiveCfg = debug_shared|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|x64.Build.0 = debug_shared|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|x64.Deploy.0 = debug_shared|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|x64.ActiveCfg = release_shared|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|x64.Build.0 = release_shared|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|x64.Deploy.0 = release_shared|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|x64.Build.0 = release_static_md|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|x64.Deploy.0 = release_static_md|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|x64.Build.0 = release_static_mt|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|x64.Build.0 = release_static_md|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|x64.Deploy.0 = release_static_md|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|x64.ActiveCfg = debug_shared|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|x64.Build.0 = debug_shared|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|x64.Deploy.0 = debug_shared|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|x64.ActiveCfg = release_shared|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|x64.Build.0 = release_shared|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|x64.Deploy.0 = release_shared|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|x64.Build.0 = release_static_md|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|x64.Deploy.0 = release_static_md|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|x64.Build.0 = release_static_mt|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|x64.Build.0 = release_static_md|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|x64.Deploy.0 = release_static_md|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|x64.ActiveCfg = debug_shared|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|x64.Build.0 = debug_shared|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|x64.Deploy.0 = debug_shared|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|x64.ActiveCfg = release_shared|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|x64.Build.0 = release_shared|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|x64.Deploy.0 = release_shared|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|x64.Build.0 = release_static_md|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|x64.Deploy.0 = release_static_md|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|x64.Build.0 = release_static_mt|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.debug_shared|x64.ActiveCfg = debug_shared|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.debug_shared|x64.Build.0 = debug_shared|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.release_shared|x64.ActiveCfg = release_shared|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.release_shared|x64.Build.0 = release_shared|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.release_static_md|x64.Build.0 = release_static_md|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|x64.Build.0 = release_static_md|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Data/samples/samples_x64_vs120.sln b/Data/samples/samples_x64_vs120.sln index 76e2ece7c..d4f26f6eb 100644 --- a/Data/samples/samples_x64_vs120.sln +++ b/Data/samples/samples_x64_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Binding", "Binding\Binding_x64_vs120.vcxproj", "{0F0DF069-83D1-378D-A949-8DF9A883B627}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RecordSet", "RecordSet\RecordSet_x64_vs120.vcxproj", "{FEE20DCE-B9E3-30AB-A40C-B6A324997328}" @@ -10,120 +10,106 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Tuple", "Tuple\Tuple_x64_vs EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TypeHandler", "TypeHandler\TypeHandler_x64_vs120.vcxproj", "{65A12348-CA20-324E-9F5E-7F82753C2C65}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WebNotifier", "WebNotifier\WebNotifier_x64_vs120.vcxproj", "{D6EB2EAD-55B6-4504-958D-DC7F52D22B15}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|x64.ActiveCfg = debug_shared|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|x64.Build.0 = debug_shared|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|x64.Deploy.0 = debug_shared|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|x64.ActiveCfg = release_shared|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|x64.Build.0 = release_shared|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|x64.Deploy.0 = release_shared|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|x64.Build.0 = release_static_md|x64 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|x64.Deploy.0 = release_static_md|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|x64.Build.0 = release_static_mt|x64 {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|x64.Build.0 = release_static_md|x64 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|x64.Deploy.0 = release_static_md|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|x64.ActiveCfg = debug_shared|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|x64.Build.0 = debug_shared|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|x64.Deploy.0 = debug_shared|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|x64.ActiveCfg = release_shared|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|x64.Build.0 = release_shared|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|x64.Deploy.0 = release_shared|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|x64.Build.0 = release_static_md|x64 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|x64.Deploy.0 = release_static_md|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|x64.Build.0 = release_static_mt|x64 {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|x64.Build.0 = release_static_md|x64 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|x64.Deploy.0 = release_static_md|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|x64.ActiveCfg = debug_shared|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|x64.Build.0 = debug_shared|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|x64.Deploy.0 = debug_shared|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|x64.ActiveCfg = release_shared|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|x64.Build.0 = release_shared|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|x64.Deploy.0 = release_shared|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|x64.Build.0 = release_static_md|x64 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|x64.Deploy.0 = release_static_md|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|x64.Build.0 = release_static_mt|x64 {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|x64.Build.0 = release_static_md|x64 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|x64.Deploy.0 = release_static_md|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|x64.ActiveCfg = debug_shared|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|x64.Build.0 = debug_shared|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|x64.Deploy.0 = debug_shared|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|x64.ActiveCfg = release_shared|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|x64.Build.0 = release_shared|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|x64.Deploy.0 = release_shared|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|x64.Build.0 = release_static_md|x64 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|x64.Deploy.0 = release_static_md|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|x64.Build.0 = release_static_mt|x64 {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|x64.Build.0 = release_static_md|x64 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|x64.Deploy.0 = release_static_md|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|x64.ActiveCfg = debug_shared|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|x64.Build.0 = debug_shared|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|x64.Deploy.0 = debug_shared|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|x64.ActiveCfg = release_shared|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|x64.Build.0 = release_shared|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|x64.Deploy.0 = release_shared|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|x64.Build.0 = release_static_md|x64 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|x64.Deploy.0 = release_static_md|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|x64.Build.0 = release_static_mt|x64 {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.debug_shared|x64.ActiveCfg = debug_shared|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.debug_shared|x64.Build.0 = debug_shared|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.release_shared|x64.ActiveCfg = release_shared|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.release_shared|x64.Build.0 = release_shared|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.release_static_md|x64.Build.0 = release_static_md|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 - {D6EB2EAD-55B6-4504-958D-DC7F52D22B15}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|x64.Build.0 = release_static_md|x64 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Data/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters b/Data/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters index 3083a40a1..715e6556f 100644 --- a/Data/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters +++ b/Data/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters @@ -2,46 +2,46 @@ - {f5898a34-b4d0-4405-8400-dc24189df146} + {5b0099da-249e-4211-b45d-df49eb446bfa} - {d9741368-8790-4483-b3c4-f12c18e17abb} + {d6dc14da-b3f4-4cb7-89c3-682d72233325} - {ef8442c3-6bc8-4068-bae8-8fa5cf77ac7e} + {15ef7064-eb19-4737-abe1-8bd630d0a93f} - {c48c6192-70f4-46b3-8364-8ef198710b49} + {35e6d8e7-382f-47bc-8e5d-08bc9cb9832b} - {eca75640-a056-42bf-9ea4-3415dd991aa8} + {754bcd57-bf11-4df2-913c-a471b3519f87} - {8e716a85-0bd1-415a-8dd8-c90f6b4eb0f2} + {bc0c8940-6638-4de4-b478-a0a15fc09bb0} - {bacd80f2-b183-4f10-b407-d0e0f28775f6} + {a103532d-9b22-4609-9e74-4359f60b71a4} - {353d45ac-6bc1-469a-9194-b66045c2603f} + {3209bcff-6e69-481a-bb01-435ca880a731} - {343e3182-2dc9-4374-9cbc-2aed41756efc} + {26a30626-8a1e-4cf9-a602-9fb737017ae2} - {091956cc-e84d-427f-b3f5-ec94af56be4e} + {13561c1b-2ef1-422a-864e-a6887843a1b9} - {c03a21c9-8eee-4da3-bf5c-516379c13058} + {41a7a3d4-c3ce-49ba-8187-b48ad97e2b77} - {913bec11-9fd8-4d7a-8ea5-17cb196a458b} + {6bdeda54-b31a-4e36-bae6-c8cb6d9b84d5} - {8218c686-0654-48fe-8690-a1ea9054bb67} + {bafc879e-fc20-46c9-bad5-6a9bc75f826f} - {548da0f8-3438-4a31-b98c-b00d53bfcda6} + {00d4642b-c0f9-469b-ab9a-43f7c94a0ca7} diff --git a/Data/testsuite/TestSuite_vs100.vcxproj b/Data/testsuite/TestSuite_vs100.vcxproj index 932b21cd1..bbd755612 100644 --- a/Data/testsuite/TestSuite_vs100.vcxproj +++ b/Data/testsuite/TestSuite_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Data/testsuite/TestSuite_vs100.vcxproj.filters b/Data/testsuite/TestSuite_vs100.vcxproj.filters index 447125b26..64289169f 100644 --- a/Data/testsuite/TestSuite_vs100.vcxproj.filters +++ b/Data/testsuite/TestSuite_vs100.vcxproj.filters @@ -2,46 +2,46 @@ - {58c3aca5-7b42-4a81-b39d-67d874e03cec} + {cb6b6aff-3308-485c-9021-e2f74956d707} - {7ffffcf5-5da7-4fbf-b79b-115339854644} + {0241db6a-90a6-40e4-9ef6-11fc51737b0c} - {1e1198b3-efe3-4956-8c16-325f78504e85} + {3ff38773-3060-47ea-b701-1a14a29de050} - {36682f1a-d786-4da1-9bd0-0cc8fc3cf063} + {28989eda-9714-4f59-98cd-45d50282a128} - {6d6ce6de-c638-4b07-8d2b-611e9e518a97} + {2b24d3ce-31f0-47cc-b033-efaf54d418f5} - {d3358e8a-cc03-458e-a933-d4cb3188680d} + {15413cf5-b43b-4c56-811d-0de55e4e9f8a} - {4aec2b01-db3c-49e9-bd69-3b78e791e363} + {8d704e15-a9be-41af-8866-d7788f0cc548} - {e731f8ff-a37c-414d-9558-0e738467064a} + {fef661e8-099e-4209-aa92-3bcb53c670f6} - {9895dd07-8ad1-4cd7-b2ac-dc878583f759} + {9f17b4b6-d504-4d5d-9b72-d0f4a22ffd92} - {dd19bb25-6cda-4b91-b4ba-0ae8c28cc3b6} + {499abde1-a1d9-4257-9b96-a29ed19b541d} - {eb1c9a6c-9d67-4919-9557-8cd9de261a87} + {e46b9df3-4a03-4f16-9d77-f07b1b2f5b04} - {f615e66c-0ae1-42ff-8d0f-be207e3ac432} + {6c4b76a1-2d20-42b3-9014-ddabd31ab1cb} - {0637a1c5-6bf1-4f78-9bf7-37eeeadab1b0} + {14e85bca-f3b3-4dcf-b9c9-0568dd36531e} - {fc195ab5-75c8-4c75-9703-8c0b4621f34f} + {38de723c-9bde-41c1-ae5b-a179a9517e79} diff --git a/Data/testsuite/TestSuite_vs110.vcxproj b/Data/testsuite/TestSuite_vs110.vcxproj index ac69702f5..1edfd7390 100644 --- a/Data/testsuite/TestSuite_vs110.vcxproj +++ b/Data/testsuite/TestSuite_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/Data/testsuite/TestSuite_vs110.vcxproj.filters b/Data/testsuite/TestSuite_vs110.vcxproj.filters index 9a24edbe9..4212868d8 100644 --- a/Data/testsuite/TestSuite_vs110.vcxproj.filters +++ b/Data/testsuite/TestSuite_vs110.vcxproj.filters @@ -2,46 +2,46 @@ - {b6a606b7-d76a-4dd4-8fb8-5bc9977f66c0} + {ce00e8ad-130b-4ad4-b7bd-24b37ce6ddfe} - {a13a6ee3-b806-4794-b03d-db373da8a792} + {7823b4e1-9b18-460f-8fc0-1539fea00834} - {4c5bd459-4f5f-40ff-852a-5e4797258f34} + {770de046-d93e-4836-9efd-514086ca8da4} - {fad528f2-a756-4e43-91af-b8b3a59de3c4} + {8ad61db3-54fb-4947-baa7-88979b5632bc} - {0fa95b86-f399-4e64-90cb-fd760f252cfd} + {6c9a2228-83ac-484a-a514-64a61dab3b13} - {c772945c-3320-4752-ae6f-38d332aec63d} + {d7e13cc5-77c3-4d6b-9771-5697be690d80} - {6f86fbc8-60ba-4e59-9081-d6ab5cfd4cfe} + {8b69dd56-9b13-450a-8bbc-c77f07d14aef} - {8d84a44e-d9ff-453c-aba0-341a9f20a14b} + {25d3e574-6350-4b77-845d-82b6631a6b8d} - {7ea5d1b7-bdb1-40e7-b2dc-bc95b6856baa} + {a626ce74-0def-487b-a91f-03c0066eb042} - {96605fcb-65c5-4376-8c64-0a29fa0bbbbf} + {afdeff72-e67c-4e14-b6a7-07fdd36b8381} - {ea1f7173-5975-4694-beec-ccdfa498b49e} + {bf86ea0f-4249-4b33-943d-58cf569a6885} - {98af87e1-2094-4782-a61e-b13f36889602} + {9481671c-b416-406e-88d5-4630296d36e1} - {c9be4e14-7f22-4b03-8609-000dc4ab62fb} + {61d574e0-03ba-4202-9037-5bc0edc873b9} - {b2976cee-98cb-47ff-ba1b-68c4f6666c35} + {e363de9c-5f4f-4ae6-aae3-f2195ad132b8} diff --git a/Data/testsuite/TestSuite_vs120.vcxproj b/Data/testsuite/TestSuite_vs120.vcxproj index 200595342..dc77b8303 100644 --- a/Data/testsuite/TestSuite_vs120.vcxproj +++ b/Data/testsuite/TestSuite_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Console + Windows MachineX86 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 @@ -192,21 +202,20 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Console + Windows MachineX86 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX86 @@ -256,20 +264,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Console + Windows MachineX86 @@ -288,46 +295,45 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 - - - - - - - - - + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Data/testsuite/TestSuite_vs120.vcxproj.filters b/Data/testsuite/TestSuite_vs120.vcxproj.filters index 4bdbde1f6..93005903c 100644 --- a/Data/testsuite/TestSuite_vs120.vcxproj.filters +++ b/Data/testsuite/TestSuite_vs120.vcxproj.filters @@ -2,46 +2,46 @@ - {b6a606b7-d76a-4dd4-8fb8-5bc9977f66c0} + {a09540f3-c629-4ef4-bb83-59e46253a617} - {a13a6ee3-b806-4794-b03d-db373da8a792} + {3bdc0885-17bc-4f19-85f1-6ba2c4c51d7e} - {4c5bd459-4f5f-40ff-852a-5e4797258f34} + {8193b48d-8774-49eb-874a-e775d9b116fd} - {fad528f2-a756-4e43-91af-b8b3a59de3c4} + {0f6e3fac-48e3-4c64-b838-717428d192ec} - {0fa95b86-f399-4e64-90cb-fd760f252cfd} + {5542d109-a330-48d7-adb9-e393f1a47637} - {c772945c-3320-4752-ae6f-38d332aec63d} + {5d32c90b-8d9f-49e2-a90b-b1843b3b389f} - {6f86fbc8-60ba-4e59-9081-d6ab5cfd4cfe} + {7618f248-0ac6-40fc-82a6-884f5086350f} - {8d84a44e-d9ff-453c-aba0-341a9f20a14b} + {73f01dce-8b92-48cc-a539-602df6c82146} - {7ea5d1b7-bdb1-40e7-b2dc-bc95b6856baa} + {de2f7001-b9b7-47c6-8082-f2a6497dae1c} - {96605fcb-65c5-4376-8c64-0a29fa0bbbbf} + {244b60fe-03fd-435a-b29e-ad27a59713d1} - {ea1f7173-5975-4694-beec-ccdfa498b49e} + {0eef08f2-6455-4331-9b8d-4cd95e5988de} - {98af87e1-2094-4782-a61e-b13f36889602} + {3e1b1c59-6758-4ab8-b320-1cae3e5031c1} - {c9be4e14-7f22-4b03-8609-000dc4ab62fb} + {901b6a37-4a56-4615-9b26-8edb89e74903} - {b2976cee-98cb-47ff-ba1b-68c4f6666c35} + {752f017d-95dd-4d56-a008-a94dc0975d1f} @@ -80,6 +80,9 @@ _Suite\Source Files + + _Driver\Source Files + TestSession\Source Files @@ -101,8 +104,5 @@ SessionPooling\Source Files - - _Driver\Source Files - \ No newline at end of file diff --git a/Data/testsuite/TestSuite_x64_vs100.vcxproj b/Data/testsuite/TestSuite_x64_vs100.vcxproj index 820e647d9..9ce0ede7c 100644 --- a/Data/testsuite/TestSuite_x64_vs100.vcxproj +++ b/Data/testsuite/TestSuite_x64_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Data/testsuite/TestSuite_x64_vs100.vcxproj.filters b/Data/testsuite/TestSuite_x64_vs100.vcxproj.filters index 8f85a8220..c2ff6fde0 100644 --- a/Data/testsuite/TestSuite_x64_vs100.vcxproj.filters +++ b/Data/testsuite/TestSuite_x64_vs100.vcxproj.filters @@ -2,46 +2,46 @@ - {1129a876-76fa-423a-bb0b-0f6cc78c4c40} + {c32e458b-6c44-434d-bb94-b7570173f4cc} - {cdaa1b41-fe42-4061-9d79-0aae45c5ece7} + {0779411e-650a-4b3f-932e-ebe0a18c864a} - {cf7d69f0-719d-48dc-94da-e207221c087f} + {6c6c8bd5-3641-487b-8cf2-6e3adddef71c} - {6603b5ee-9384-4028-a823-6c7c71836f49} + {a9af3d63-2c61-49d7-928f-23e65a15b541} - {550f410a-8610-422e-855c-5e5ccfccd3f3} + {5755f338-027e-4e23-b53c-faa4f51ddc07} - {517e4750-f794-43f8-940b-e183562ff19d} + {4c4a4575-5ee2-4e92-8a80-b65e4931b1b2} - {cf9304f4-3ac1-4a77-905b-33d0b1f5926d} + {12c3141d-d85a-4117-9539-fd093bb0aa23} - {074b0d40-ce06-46ad-991d-86f2c9b7ad06} + {8f89650e-44b9-4be9-8225-106e59057fe3} - {a9c885b8-8ab1-46c2-add0-bea5d28167d8} + {e8f2b7ab-5105-4c63-a05d-192cecc1e586} - {524aac38-86f7-4710-a57a-14a4c6655f67} + {f05f8843-fd3e-4740-b37e-10b96f9370bd} - {1932e125-c6c8-4bb4-8dc5-00f676aa9f50} + {c070f9c5-9665-4ec2-93ac-1c63e8dc142b} - {88c5fc9b-57d4-4536-bbad-b96dc583ad38} + {ca284bb8-b2a5-4ba6-b8c5-97f1899951b9} - {0a40f4da-b80c-4d73-8297-9e36fa6c0923} + {a3e06b26-e46c-419a-afa5-099ed1fa71c0} - {c8a552e8-10c7-471f-97a4-96ffb042a9a6} + {9cf1f8a4-2d90-4c0b-a684-804de7824878} diff --git a/Data/testsuite/TestSuite_x64_vs110.vcxproj b/Data/testsuite/TestSuite_x64_vs110.vcxproj index ebaa776f3..6d76814dd 100644 --- a/Data/testsuite/TestSuite_x64_vs110.vcxproj +++ b/Data/testsuite/TestSuite_x64_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/Data/testsuite/TestSuite_x64_vs110.vcxproj.filters b/Data/testsuite/TestSuite_x64_vs110.vcxproj.filters index 1f7b66834..580a5492f 100644 --- a/Data/testsuite/TestSuite_x64_vs110.vcxproj.filters +++ b/Data/testsuite/TestSuite_x64_vs110.vcxproj.filters @@ -2,46 +2,46 @@ - {90062465-3658-42e7-873e-d7526c270e6f} + {376b6b75-1952-480c-ad14-a4732bb75bc2} - {a227d0aa-ae5d-42b7-9df6-ed84dce2415e} + {740b0f3d-e8ec-4833-b247-7e5110d7dead} - {9ad7a195-9bf4-43b6-8e1d-62325ca7ab5e} + {f2a26f41-88ac-4c4b-8c45-4d20a92599ac} - {0fd8deef-f352-49ae-9812-59494ff515fd} + {faef7e9e-54b5-49a9-a7e8-fb75c6ad423a} - {90cb4826-b273-485c-b067-a69d9474b8a0} + {544399c0-4147-41d9-b68c-cd66ef28df22} - {27742860-d29f-4015-8f23-b454ecf27745} + {9f8deaf6-ae17-4396-b4bc-12ff6f40edac} - {fe4ffff5-0306-4000-be40-3da1a349dc24} + {4698de55-15f1-43ff-b097-e51f2322e996} - {9ec0498a-0df8-4baa-8fb0-14cb72e9c140} + {69596961-3908-4a92-afe0-a4d95ff66774} - {47ba482b-728d-4ba6-bffd-185546366331} + {b90d9238-eef4-4ddc-929a-bb6bd93e9897} - {44672c03-80bc-4325-a23a-814f2667bb41} + {e66ba7d7-32c5-4b49-9d27-1ba7892cbf97} - {1c856e10-8fdf-4c53-bbc1-bf1764d7283e} + {9ce36b17-e7e4-4727-9a65-ac2c2767a3ef} - {dc37ee7b-1e02-4c64-ab33-bc989eb3c047} + {89ab338e-110a-4036-82ac-088fcf17eac9} - {062d01b1-7066-48d5-a643-94d28094b354} + {365d8c05-c699-4746-a330-379878d3e0ab} - {88fc1b2f-6be8-4ead-b79b-14ee46f6b8aa} + {473a79ee-7cd0-4207-ae38-6eb644538cb1} diff --git a/Data/testsuite/TestSuite_x64_vs120.vcxproj b/Data/testsuite/TestSuite_x64_vs120.vcxproj index d426b9192..734477857 100644 --- a/Data/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Data/testsuite/TestSuite_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Console + Windows MachineX64 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 @@ -192,21 +202,20 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Console + Windows MachineX64 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX64 @@ -256,20 +264,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Console + Windows MachineX64 @@ -288,46 +295,45 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 - - - - - - - - - + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Data/testsuite/TestSuite_x64_vs120.vcxproj.filters b/Data/testsuite/TestSuite_x64_vs120.vcxproj.filters index 013712a5b..f90fd3745 100644 --- a/Data/testsuite/TestSuite_x64_vs120.vcxproj.filters +++ b/Data/testsuite/TestSuite_x64_vs120.vcxproj.filters @@ -2,46 +2,46 @@ - {90062465-3658-42e7-873e-d7526c270e6f} + {7c39a5a6-5979-46b1-9882-414772df0712} - {a227d0aa-ae5d-42b7-9df6-ed84dce2415e} + {965c5774-6534-460b-b6a7-33511f282052} - {9ad7a195-9bf4-43b6-8e1d-62325ca7ab5e} + {b7ab9eaa-6aba-4ad0-aeee-64d38254a3c0} - {0fd8deef-f352-49ae-9812-59494ff515fd} + {59aa440d-3f1e-4355-b963-99f648b7a2cf} - {90cb4826-b273-485c-b067-a69d9474b8a0} + {b135c206-6c49-4422-893f-4d2789dfc8cb} - {27742860-d29f-4015-8f23-b454ecf27745} + {43ed7ec3-8da9-4216-bad4-36ebfc009ca1} - {fe4ffff5-0306-4000-be40-3da1a349dc24} + {4ec02b2a-8e08-42f2-8768-09a074e74c71} - {9ec0498a-0df8-4baa-8fb0-14cb72e9c140} + {6fe39cde-7f5f-46be-9368-a9d504239f64} - {47ba482b-728d-4ba6-bffd-185546366331} + {144cdddd-1a58-4de0-808b-e1d0f299b2c6} - {44672c03-80bc-4325-a23a-814f2667bb41} + {04dc3969-a0ff-4b25-8554-0904a33dd7d2} - {1c856e10-8fdf-4c53-bbc1-bf1764d7283e} + {7ac72a5a-2655-47f7-bb7b-73f02d5affc5} - {dc37ee7b-1e02-4c64-ab33-bc989eb3c047} + {21b3416e-e857-4af8-96f6-02f6436ba34b} - {062d01b1-7066-48d5-a643-94d28094b354} + {9ac20c06-fafe-443e-913e-a79941248cb3} - {88fc1b2f-6be8-4ead-b79b-14ee46f6b8aa} + {2c042d18-22a1-4cee-9a66-86eb47739eb1} @@ -80,6 +80,9 @@ _Suite\Source Files + + _Driver\Source Files + TestSession\Source Files @@ -101,8 +104,5 @@ SessionPooling\Source Files - - _Driver\Source Files - \ No newline at end of file diff --git a/Foundation/samples/ActiveMethod/ActiveMethod_WEC2013_vs110.vcxproj.filters b/Foundation/samples/ActiveMethod/ActiveMethod_WEC2013_vs110.vcxproj.filters index b10c89d47..db6095c1c 100644 --- a/Foundation/samples/ActiveMethod/ActiveMethod_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/ActiveMethod/ActiveMethod_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {b61eebf7-bf8b-40d5-9d24-a4261dd7217a} + {13d16c65-d39e-43c8-8162-b46c073f7919} - {f9ef049e-ef86-49f6-89a4-be5f66137177} + {71a3eefd-e533-40be-8e24-1761267dabef} diff --git a/Foundation/samples/ActiveMethod/ActiveMethod_vs100.vcxproj b/Foundation/samples/ActiveMethod/ActiveMethod_vs100.vcxproj index 9823504b7..f616c6864 100644 --- a/Foundation/samples/ActiveMethod/ActiveMethod_vs100.vcxproj +++ b/Foundation/samples/ActiveMethod/ActiveMethod_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - ActiveMethodd - ActiveMethodd - ActiveMethodd - ActiveMethod - ActiveMethod - ActiveMethod + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + ActiveMethodd + ActiveMethodd + ActiveMethodd + ActiveMethod + ActiveMethod + ActiveMethod - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/ActiveMethod/ActiveMethod_vs100.vcxproj.filters b/Foundation/samples/ActiveMethod/ActiveMethod_vs100.vcxproj.filters index 962d98683..a20428257 100644 --- a/Foundation/samples/ActiveMethod/ActiveMethod_vs100.vcxproj.filters +++ b/Foundation/samples/ActiveMethod/ActiveMethod_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {dde1005e-ed4e-4ef2-8c41-ff8022256b43} + {a688b593-d354-48f1-b9ad-684c5d19deba} - {95dd7d3c-935e-445b-8b83-c66b833f2004} + {7fee33a4-6973-4a5a-8c62-7e49c62bd333} diff --git a/Foundation/samples/ActiveMethod/ActiveMethod_vs110.vcxproj b/Foundation/samples/ActiveMethod/ActiveMethod_vs110.vcxproj index 2a216edb6..97785d408 100644 --- a/Foundation/samples/ActiveMethod/ActiveMethod_vs110.vcxproj +++ b/Foundation/samples/ActiveMethod/ActiveMethod_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - ActiveMethodd - ActiveMethodd - ActiveMethodd - ActiveMethod - ActiveMethod - ActiveMethod + <_ProjectFileVersion>11.0.61030.0 + ActiveMethodd + ActiveMethodd + ActiveMethodd + ActiveMethod + ActiveMethod + ActiveMethod - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/ActiveMethod/ActiveMethod_vs110.vcxproj.filters b/Foundation/samples/ActiveMethod/ActiveMethod_vs110.vcxproj.filters index e1549f940..d0db94e0f 100644 --- a/Foundation/samples/ActiveMethod/ActiveMethod_vs110.vcxproj.filters +++ b/Foundation/samples/ActiveMethod/ActiveMethod_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {c902a85a-f127-4d0f-ac2f-8f55fcec4d8b} + {f01138e4-c233-4a37-89b5-501b9368a94c} - {27fb7ad6-093a-406c-8712-db94ec9a246f} + {b376cbd9-06e9-4311-84c1-867eacaf60e8} diff --git a/Foundation/samples/ActiveMethod/ActiveMethod_vs120.vcxproj b/Foundation/samples/ActiveMethod/ActiveMethod_vs120.vcxproj index 324491d69..49d9f2d40 100644 --- a/Foundation/samples/ActiveMethod/ActiveMethod_vs120.vcxproj +++ b/Foundation/samples/ActiveMethod/ActiveMethod_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ ActiveMethod Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 ActiveMethodd ActiveMethodd ActiveMethodd @@ -111,6 +93,36 @@ ActiveMethod ActiveMethod + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/ActiveMethod/ActiveMethod_vs120.vcxproj.filters b/Foundation/samples/ActiveMethod/ActiveMethod_vs120.vcxproj.filters index e1549f940..e4e03cf0c 100644 --- a/Foundation/samples/ActiveMethod/ActiveMethod_vs120.vcxproj.filters +++ b/Foundation/samples/ActiveMethod/ActiveMethod_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {c902a85a-f127-4d0f-ac2f-8f55fcec4d8b} + {94a5d7a8-2f20-444a-892b-c3f00a295d5f} - {27fb7ad6-093a-406c-8712-db94ec9a246f} + {fbf1667f-f79f-4b5e-a9fd-d8ed56b3502d} diff --git a/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs100.vcxproj b/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs100.vcxproj index 74fa5f265..b84650bdf 100644 --- a/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs100.vcxproj +++ b/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - ActiveMethodd - ActiveMethodd - ActiveMethodd - ActiveMethod - ActiveMethod - ActiveMethod + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + ActiveMethodd + ActiveMethodd + ActiveMethodd + ActiveMethod + ActiveMethod + ActiveMethod - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs100.vcxproj.filters b/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs100.vcxproj.filters index e86b5f5b4..b528bd06c 100644 --- a/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs100.vcxproj.filters +++ b/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {d37fabb4-1ea9-447c-a7fb-82766c4c93b2} + {c0aa1760-aae4-4bf1-8052-1ba3509f77e2} - {6fb1f868-4404-41df-ad64-0f75ac119ae8} + {14d05df6-f753-407f-a65d-de1417422c87} diff --git a/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs110.vcxproj b/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs110.vcxproj index 118f8170e..898c5b760 100644 --- a/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs110.vcxproj +++ b/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - ActiveMethodd - ActiveMethodd - ActiveMethodd - ActiveMethod - ActiveMethod - ActiveMethod + <_ProjectFileVersion>11.0.61030.0 + ActiveMethodd + ActiveMethodd + ActiveMethodd + ActiveMethod + ActiveMethod + ActiveMethod - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs110.vcxproj.filters b/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs110.vcxproj.filters index d019cbf40..276d31411 100644 --- a/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs110.vcxproj.filters +++ b/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {ff630302-74af-4565-b9e2-3a5acdf034d8} + {2c70bfc5-54d5-4a9b-99f3-8eae8228e90d} - {e8800c7d-04d9-45eb-b9b1-9ec52cf4b6e8} + {4b801c8d-7fa0-46ac-9957-1bc6983ad845} diff --git a/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs120.vcxproj b/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs120.vcxproj index 783a8eb48..bffe91b20 100644 --- a/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs120.vcxproj +++ b/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ ActiveMethod Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 ActiveMethodd ActiveMethodd ActiveMethodd @@ -111,6 +93,36 @@ ActiveMethod ActiveMethod + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs120.vcxproj.filters b/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs120.vcxproj.filters index d019cbf40..a3eba0135 100644 --- a/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs120.vcxproj.filters +++ b/Foundation/samples/ActiveMethod/ActiveMethod_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {ff630302-74af-4565-b9e2-3a5acdf034d8} + {10ffc27d-33c7-47a3-9eb5-db54231ac0f9} - {e8800c7d-04d9-45eb-b9b1-9ec52cf4b6e8} + {cdb93132-ee56-4603-8d5d-5f2a32dd7df7} diff --git a/Foundation/samples/Activity/Activity_WEC2013_vs110.vcxproj.filters b/Foundation/samples/Activity/Activity_WEC2013_vs110.vcxproj.filters index baa41c537..b1c5f6c32 100644 --- a/Foundation/samples/Activity/Activity_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/Activity/Activity_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {ba8aa28e-7589-40eb-a45c-68ad1255d285} + {22ab70b0-f286-4e28-abe2-33c85bc5a39a} - {7e615080-97d6-4c25-94a8-baeed7a58034} + {4e92ceaf-9dd7-4bad-a977-0f0e01b5289a} diff --git a/Foundation/samples/Activity/Activity_vs100.vcxproj b/Foundation/samples/Activity/Activity_vs100.vcxproj index eca450a39..d40919ff3 100644 --- a/Foundation/samples/Activity/Activity_vs100.vcxproj +++ b/Foundation/samples/Activity/Activity_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Activityd - Activityd - Activityd - Activity - Activity - Activity + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + Activityd + Activityd + Activityd + Activity + Activity + Activity - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/Activity/Activity_vs100.vcxproj.filters b/Foundation/samples/Activity/Activity_vs100.vcxproj.filters index 140080590..e4ab1c431 100644 --- a/Foundation/samples/Activity/Activity_vs100.vcxproj.filters +++ b/Foundation/samples/Activity/Activity_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {dab25b73-f203-4431-b124-3b2904c0dc9f} + {d1c48623-f8a9-4a44-9954-0449813f148a} - {730562fa-1c25-4174-95bb-c4448bb3bd83} + {c1081b5a-b3b2-497c-aafa-ded760dac489} diff --git a/Foundation/samples/Activity/Activity_vs110.vcxproj b/Foundation/samples/Activity/Activity_vs110.vcxproj index 49eb8d195..77f8bc779 100644 --- a/Foundation/samples/Activity/Activity_vs110.vcxproj +++ b/Foundation/samples/Activity/Activity_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Activityd - Activityd - Activityd - Activity - Activity - Activity + <_ProjectFileVersion>11.0.61030.0 + Activityd + Activityd + Activityd + Activity + Activity + Activity - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/Activity/Activity_vs110.vcxproj.filters b/Foundation/samples/Activity/Activity_vs110.vcxproj.filters index 725fc679c..df1e3e517 100644 --- a/Foundation/samples/Activity/Activity_vs110.vcxproj.filters +++ b/Foundation/samples/Activity/Activity_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {19ace6d0-0d43-4474-a4af-3db3f56f29c5} + {b8fe0c67-77b2-45f8-97b3-26fc8475aad1} - {6d30d137-5086-4a59-8f44-34f50b11ab15} + {17c3c82e-45fb-40de-a716-bc97c4a5b298} diff --git a/Foundation/samples/Activity/Activity_vs120.vcxproj b/Foundation/samples/Activity/Activity_vs120.vcxproj index 873620981..34a6eb4b4 100644 --- a/Foundation/samples/Activity/Activity_vs120.vcxproj +++ b/Foundation/samples/Activity/Activity_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Activity Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Activityd Activityd Activityd @@ -111,6 +93,36 @@ Activity Activity + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/Activity/Activity_vs120.vcxproj.filters b/Foundation/samples/Activity/Activity_vs120.vcxproj.filters index 725fc679c..b24ba2f31 100644 --- a/Foundation/samples/Activity/Activity_vs120.vcxproj.filters +++ b/Foundation/samples/Activity/Activity_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {19ace6d0-0d43-4474-a4af-3db3f56f29c5} + {5d3ab6a6-9fbc-48f5-8103-06b7d15be031} - {6d30d137-5086-4a59-8f44-34f50b11ab15} + {82ded1db-be6c-4190-ba7c-4ff39c61094d} diff --git a/Foundation/samples/Activity/Activity_x64_vs100.vcxproj b/Foundation/samples/Activity/Activity_x64_vs100.vcxproj index 067090017..c5e021a16 100644 --- a/Foundation/samples/Activity/Activity_x64_vs100.vcxproj +++ b/Foundation/samples/Activity/Activity_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Activityd - Activityd - Activityd - Activity - Activity - Activity + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + Activityd + Activityd + Activityd + Activity + Activity + Activity - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/Activity/Activity_x64_vs100.vcxproj.filters b/Foundation/samples/Activity/Activity_x64_vs100.vcxproj.filters index ab9d83e51..2ff58dbfa 100644 --- a/Foundation/samples/Activity/Activity_x64_vs100.vcxproj.filters +++ b/Foundation/samples/Activity/Activity_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {2f201052-5b2d-40c4-a65c-f22f5aa59a93} + {0739d7f2-a124-4957-aad1-8cfa3f6db07f} - {903fd442-ccde-4f7b-8462-c94e6fb5228c} + {0357855a-a385-4e47-8a98-6ba41617ffd7} diff --git a/Foundation/samples/Activity/Activity_x64_vs110.vcxproj b/Foundation/samples/Activity/Activity_x64_vs110.vcxproj index 5ac5110fd..005c2cb28 100644 --- a/Foundation/samples/Activity/Activity_x64_vs110.vcxproj +++ b/Foundation/samples/Activity/Activity_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Activityd - Activityd - Activityd - Activity - Activity - Activity + <_ProjectFileVersion>11.0.61030.0 + Activityd + Activityd + Activityd + Activity + Activity + Activity - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/Activity/Activity_x64_vs110.vcxproj.filters b/Foundation/samples/Activity/Activity_x64_vs110.vcxproj.filters index ae37bf18e..03c70aa25 100644 --- a/Foundation/samples/Activity/Activity_x64_vs110.vcxproj.filters +++ b/Foundation/samples/Activity/Activity_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {fb5e20f9-7186-4a2b-9bd3-83cd379c88ae} + {963428e6-e1d2-47d7-9448-ecb8b48e8463} - {98a0a7cd-f69f-4ec6-aeca-e8fbe1dde55f} + {8ba5df23-ccb2-46b3-af6e-91777b56d49b} diff --git a/Foundation/samples/Activity/Activity_x64_vs120.vcxproj b/Foundation/samples/Activity/Activity_x64_vs120.vcxproj index 0d7a79506..b6a9ab279 100644 --- a/Foundation/samples/Activity/Activity_x64_vs120.vcxproj +++ b/Foundation/samples/Activity/Activity_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Activity Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Activityd Activityd Activityd @@ -111,6 +93,36 @@ Activity Activity + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/Activity/Activity_x64_vs120.vcxproj.filters b/Foundation/samples/Activity/Activity_x64_vs120.vcxproj.filters index ae37bf18e..8e7ff9148 100644 --- a/Foundation/samples/Activity/Activity_x64_vs120.vcxproj.filters +++ b/Foundation/samples/Activity/Activity_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {fb5e20f9-7186-4a2b-9bd3-83cd379c88ae} + {336b90fe-f8ca-44b0-a677-73892dc689c7} - {98a0a7cd-f69f-4ec6-aeca-e8fbe1dde55f} + {268ed852-3e62-4c55-a5d8-d450531ea712} diff --git a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_WEC2013_vs110.vcxproj.filters b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_WEC2013_vs110.vcxproj.filters index 2d32123b0..cba2ed8b5 100644 --- a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {08ee0960-5931-4a04-a009-3ab137a1accd} + {535a788f-7244-42e9-b693-f70c6361ac16} - {02eef0e9-1749-4c3b-906c-1a6c50734cc6} + {04e36f2c-7ff1-4596-9470-2f1d7e163057} diff --git a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs100.vcxproj b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs100.vcxproj index 78c03ec1c..719782e74 100644 --- a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs100.vcxproj +++ b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - BinaryReaderWriterd - BinaryReaderWriterd - BinaryReaderWriterd - BinaryReaderWriter - BinaryReaderWriter - BinaryReaderWriter + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + BinaryReaderWriterd + BinaryReaderWriterd + BinaryReaderWriterd + BinaryReaderWriter + BinaryReaderWriter + BinaryReaderWriter - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs100.vcxproj.filters b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs100.vcxproj.filters index ee40f5c68..da59b63af 100644 --- a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs100.vcxproj.filters +++ b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {61e6441a-9d99-405e-a050-f3d02f8564af} + {718be3a4-de1e-4ad7-81e2-433a1843c127} - {9b2186b9-2a15-476b-9a2c-4b6ae18610a0} + {07bbf795-8d17-46c1-80e5-6f1bb25c3b95} diff --git a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs110.vcxproj b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs110.vcxproj index 6fd118e7b..fa659539b 100644 --- a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs110.vcxproj +++ b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - BinaryReaderWriterd - BinaryReaderWriterd - BinaryReaderWriterd - BinaryReaderWriter - BinaryReaderWriter - BinaryReaderWriter + <_ProjectFileVersion>11.0.61030.0 + BinaryReaderWriterd + BinaryReaderWriterd + BinaryReaderWriterd + BinaryReaderWriter + BinaryReaderWriter + BinaryReaderWriter - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs110.vcxproj.filters b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs110.vcxproj.filters index 163627863..88191ebb9 100644 --- a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs110.vcxproj.filters +++ b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {b2132eb3-6313-4ef6-93d6-ae2a3c64edc2} + {faa7611b-90a3-4a8d-93e0-096fcb989df5} - {46fa54a5-42c5-4eee-b470-a1bea25b3de0} + {57cdaf73-2a12-4ec7-9a9e-8661f8c1ed95} diff --git a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs120.vcxproj b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs120.vcxproj index d6b4ca9c0..80cfd6c28 100644 --- a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs120.vcxproj +++ b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ BinaryReaderWriter Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 BinaryReaderWriterd BinaryReaderWriterd BinaryReaderWriterd @@ -111,6 +93,36 @@ BinaryReaderWriter BinaryReaderWriter + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs120.vcxproj.filters b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs120.vcxproj.filters index 163627863..dd5c73da6 100644 --- a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs120.vcxproj.filters +++ b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {b2132eb3-6313-4ef6-93d6-ae2a3c64edc2} + {25418888-163f-48ed-a395-f9e0f825ba54} - {46fa54a5-42c5-4eee-b470-a1bea25b3de0} + {4e5c36d1-3682-4e2f-9a71-c067d7200b7b} diff --git a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs100.vcxproj b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs100.vcxproj index 9a41ceefb..87642c384 100644 --- a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs100.vcxproj +++ b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - BinaryReaderWriterd - BinaryReaderWriterd - BinaryReaderWriterd - BinaryReaderWriter - BinaryReaderWriter - BinaryReaderWriter + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + BinaryReaderWriterd + BinaryReaderWriterd + BinaryReaderWriterd + BinaryReaderWriter + BinaryReaderWriter + BinaryReaderWriter - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs100.vcxproj.filters b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs100.vcxproj.filters index 8276937ba..7e04fdd0f 100644 --- a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs100.vcxproj.filters +++ b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {e8d4b68a-aa93-49a3-90c1-2b73d69c8ad2} + {f1f441b1-ebb4-42ac-aec9-9cda51ed691c} - {374ce076-f8c1-476a-8789-60268cb23c93} + {67304a7b-972b-4f44-8247-429e2c4b0d03} diff --git a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs110.vcxproj b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs110.vcxproj index 1633dd9f3..bbf04180f 100644 --- a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs110.vcxproj +++ b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - BinaryReaderWriterd - BinaryReaderWriterd - BinaryReaderWriterd - BinaryReaderWriter - BinaryReaderWriter - BinaryReaderWriter + <_ProjectFileVersion>11.0.61030.0 + BinaryReaderWriterd + BinaryReaderWriterd + BinaryReaderWriterd + BinaryReaderWriter + BinaryReaderWriter + BinaryReaderWriter - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs110.vcxproj.filters b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs110.vcxproj.filters index 907ac1e58..95b38baa8 100644 --- a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs110.vcxproj.filters +++ b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {19bad183-12e9-47fb-b2ed-5a5ce4fa41b9} + {76bedee8-97d9-48e4-8df7-f1e6945dcef2} - {97c35ad3-23e9-4ef8-b797-780c2b083a2f} + {9a6ec673-731c-4c75-bbfe-ba1966f9bf47} diff --git a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs120.vcxproj b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs120.vcxproj index 63fde7012..684c1a5c5 100644 --- a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs120.vcxproj +++ b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ BinaryReaderWriter Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 BinaryReaderWriterd BinaryReaderWriterd BinaryReaderWriterd @@ -111,6 +93,36 @@ BinaryReaderWriter BinaryReaderWriter + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs120.vcxproj.filters b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs120.vcxproj.filters index 907ac1e58..1c9d33e77 100644 --- a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs120.vcxproj.filters +++ b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {19bad183-12e9-47fb-b2ed-5a5ce4fa41b9} + {1b1e2508-4e16-4b65-8f09-10021afbdf63} - {97c35ad3-23e9-4ef8-b797-780c2b083a2f} + {490c66f8-3b90-4aa7-8161-61c324221bae} diff --git a/Foundation/samples/DateTime/DateTime_WEC2013_vs110.vcxproj.filters b/Foundation/samples/DateTime/DateTime_WEC2013_vs110.vcxproj.filters index 3e8122d4a..ac0a7f428 100644 --- a/Foundation/samples/DateTime/DateTime_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/DateTime/DateTime_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {afea31c6-0803-427b-b200-4ca382a54cb9} + {3a4c31f7-62c5-4882-910b-5b5ef80f0eac} - {a1cfabb0-2721-41c6-8226-2e0d283e40f4} + {faf85b5c-29f8-4699-9a3b-b598e4ebb6a2} diff --git a/Foundation/samples/DateTime/DateTime_vs100.vcxproj b/Foundation/samples/DateTime/DateTime_vs100.vcxproj index d2f811cae..d95fc8dae 100644 --- a/Foundation/samples/DateTime/DateTime_vs100.vcxproj +++ b/Foundation/samples/DateTime/DateTime_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - DateTimed - DateTimed - DateTimed - DateTime - DateTime - DateTime + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + DateTimed + DateTimed + DateTimed + DateTime + DateTime + DateTime - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/DateTime/DateTime_vs100.vcxproj.filters b/Foundation/samples/DateTime/DateTime_vs100.vcxproj.filters index 8c5d8be66..063abc017 100644 --- a/Foundation/samples/DateTime/DateTime_vs100.vcxproj.filters +++ b/Foundation/samples/DateTime/DateTime_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {341da1d2-abaa-45fc-9e18-8fdf83b40735} + {4cdec6e2-656c-4acd-bab4-f7bdd0d6162e} - {d7098836-18d0-4f86-8119-db2eb9b1224d} + {4e68893c-4d6f-4e9a-a684-60ce861bd5fc} diff --git a/Foundation/samples/DateTime/DateTime_vs110.vcxproj b/Foundation/samples/DateTime/DateTime_vs110.vcxproj index 9940bab0d..3725c504a 100644 --- a/Foundation/samples/DateTime/DateTime_vs110.vcxproj +++ b/Foundation/samples/DateTime/DateTime_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - DateTimed - DateTimed - DateTimed - DateTime - DateTime - DateTime + <_ProjectFileVersion>11.0.61030.0 + DateTimed + DateTimed + DateTimed + DateTime + DateTime + DateTime - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/DateTime/DateTime_vs110.vcxproj.filters b/Foundation/samples/DateTime/DateTime_vs110.vcxproj.filters index 675287be2..dd15623df 100644 --- a/Foundation/samples/DateTime/DateTime_vs110.vcxproj.filters +++ b/Foundation/samples/DateTime/DateTime_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {24664851-7a98-4a4f-8ce3-c4130920c39a} + {a7d6ff5f-8289-4ee6-8c96-177648b522ec} - {9cdca097-8087-4104-891a-efb776ccd106} + {f587178e-8dbf-4e05-977d-ab825dd60c04} diff --git a/Foundation/samples/DateTime/DateTime_vs120.vcxproj b/Foundation/samples/DateTime/DateTime_vs120.vcxproj index 54a6bb504..357240593 100644 --- a/Foundation/samples/DateTime/DateTime_vs120.vcxproj +++ b/Foundation/samples/DateTime/DateTime_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ DateTime Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 DateTimed DateTimed DateTimed @@ -111,6 +93,36 @@ DateTime DateTime + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/DateTime/DateTime_vs120.vcxproj.filters b/Foundation/samples/DateTime/DateTime_vs120.vcxproj.filters index 675287be2..4e872364d 100644 --- a/Foundation/samples/DateTime/DateTime_vs120.vcxproj.filters +++ b/Foundation/samples/DateTime/DateTime_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {24664851-7a98-4a4f-8ce3-c4130920c39a} + {a9c95733-074a-49ee-8724-2ce3a3a9f37f} - {9cdca097-8087-4104-891a-efb776ccd106} + {4ba44d90-7ac5-459d-bce9-5e7212c2d1ce} diff --git a/Foundation/samples/DateTime/DateTime_x64_vs100.vcxproj b/Foundation/samples/DateTime/DateTime_x64_vs100.vcxproj index f4e34a504..b876d1374 100644 --- a/Foundation/samples/DateTime/DateTime_x64_vs100.vcxproj +++ b/Foundation/samples/DateTime/DateTime_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - DateTimed - DateTimed - DateTimed - DateTime - DateTime - DateTime + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + DateTimed + DateTimed + DateTimed + DateTime + DateTime + DateTime - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/DateTime/DateTime_x64_vs100.vcxproj.filters b/Foundation/samples/DateTime/DateTime_x64_vs100.vcxproj.filters index 1b1680a7d..e82ae738c 100644 --- a/Foundation/samples/DateTime/DateTime_x64_vs100.vcxproj.filters +++ b/Foundation/samples/DateTime/DateTime_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {12c1d34c-cc2e-4ce6-b5e3-339b453893da} + {c96d64f4-db34-4551-9fc3-c510ef93ed6b} - {0198ddf0-755a-466e-881f-799058a85b35} + {ce6fc096-06c5-4356-8907-3257f07c16c7} diff --git a/Foundation/samples/DateTime/DateTime_x64_vs110.vcxproj b/Foundation/samples/DateTime/DateTime_x64_vs110.vcxproj index acc0000bc..8229d5db9 100644 --- a/Foundation/samples/DateTime/DateTime_x64_vs110.vcxproj +++ b/Foundation/samples/DateTime/DateTime_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - DateTimed - DateTimed - DateTimed - DateTime - DateTime - DateTime + <_ProjectFileVersion>11.0.61030.0 + DateTimed + DateTimed + DateTimed + DateTime + DateTime + DateTime - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/DateTime/DateTime_x64_vs110.vcxproj.filters b/Foundation/samples/DateTime/DateTime_x64_vs110.vcxproj.filters index 82e90bafa..473a77e94 100644 --- a/Foundation/samples/DateTime/DateTime_x64_vs110.vcxproj.filters +++ b/Foundation/samples/DateTime/DateTime_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {47dcd178-2cdd-457e-b633-83d3b56fd211} + {8cb7fefa-727f-4129-949b-7a0171a57281} - {75918116-f4dc-4d2f-a8a0-096112f62511} + {a69a81e3-e04f-41e1-9c6e-cbf91c257ec9} diff --git a/Foundation/samples/DateTime/DateTime_x64_vs120.vcxproj b/Foundation/samples/DateTime/DateTime_x64_vs120.vcxproj index 9547f9b02..751ec3657 100644 --- a/Foundation/samples/DateTime/DateTime_x64_vs120.vcxproj +++ b/Foundation/samples/DateTime/DateTime_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ DateTime Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 DateTimed DateTimed DateTimed @@ -111,6 +93,36 @@ DateTime DateTime + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/DateTime/DateTime_x64_vs120.vcxproj.filters b/Foundation/samples/DateTime/DateTime_x64_vs120.vcxproj.filters index 82e90bafa..b316cfa88 100644 --- a/Foundation/samples/DateTime/DateTime_x64_vs120.vcxproj.filters +++ b/Foundation/samples/DateTime/DateTime_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {47dcd178-2cdd-457e-b633-83d3b56fd211} + {57f4a0da-ae5a-4f04-b441-4460528f22a1} - {75918116-f4dc-4d2f-a8a0-096112f62511} + {27721ad8-4e20-43e2-9d03-6bc9d021e6bf} diff --git a/Foundation/samples/LineEndingConverter/LineEndingConverter_vs100.vcxproj b/Foundation/samples/LineEndingConverter/LineEndingConverter_vs100.vcxproj index 619107ac8..07ddb4fe2 100644 --- a/Foundation/samples/LineEndingConverter/LineEndingConverter_vs100.vcxproj +++ b/Foundation/samples/LineEndingConverter/LineEndingConverter_vs100.vcxproj @@ -1,4 +1,4 @@ - + @@ -28,11 +28,11 @@ LineEndingConverter - {DE6C0663-A10A-4C85-85FD-C64897E84DA7} + {354BBE76-D088-3931-940C-797F514D2E40} LineEndingConverter Win32Proj - + Application MultiByte @@ -57,29 +57,29 @@ Application MultiByte - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.30319.1 + <_ProjectFileVersion>10.0.40219.1 bin\ obj\$(Configuration)\ true @@ -118,7 +118,7 @@ true true true - + Level3 EditAndContinue Default @@ -150,9 +150,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -180,7 +180,7 @@ true true true - + Level3 EditAndContinue Default @@ -212,9 +212,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -242,7 +242,7 @@ true true true - + Level3 EditAndContinue Default @@ -274,9 +274,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -292,8 +292,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/LineEndingConverter/LineEndingConverter_vs100.vcxproj.filters b/Foundation/samples/LineEndingConverter/LineEndingConverter_vs100.vcxproj.filters index 90d74cc30..9cd537c3f 100644 --- a/Foundation/samples/LineEndingConverter/LineEndingConverter_vs100.vcxproj.filters +++ b/Foundation/samples/LineEndingConverter/LineEndingConverter_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {61e6441a-9d99-405e-a050-f3d02f8564af} + {b14800b9-e3f7-4172-a6f5-bf98c349ed5d} - {9b2186b9-2a15-476b-9a2c-4b6ae18610a0} + {da013ec4-4ecb-4598-ad7d-51d47c36ed60} diff --git a/Foundation/samples/LineEndingConverter/LineEndingConverter_vs110.vcxproj b/Foundation/samples/LineEndingConverter/LineEndingConverter_vs110.vcxproj index 75e52c05b..34a43fbfe 100644 --- a/Foundation/samples/LineEndingConverter/LineEndingConverter_vs110.vcxproj +++ b/Foundation/samples/LineEndingConverter/LineEndingConverter_vs110.vcxproj @@ -28,90 +28,102 @@ LineEndingConverter - {A5639B95-211B-36F1-994E-F05361C18EBF} + {354BBE76-D088-3931-940C-797F514D2E40} LineEndingConverter Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - LineEndingConverterd - LineEndingConverterd - LineEndingConverterd - LineEndingConverter - LineEndingConverter - LineEndingConverter + <_ProjectFileVersion>11.0.61030.0 + LineEndingConverterd + LineEndingConverterd + LineEndingConverterd + LineEndingConverter + LineEndingConverter + LineEndingConverter - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/LineEndingConverter/LineEndingConverter_vs110.vcxproj.filters b/Foundation/samples/LineEndingConverter/LineEndingConverter_vs110.vcxproj.filters index 1963525a8..316bbf7be 100644 --- a/Foundation/samples/LineEndingConverter/LineEndingConverter_vs110.vcxproj.filters +++ b/Foundation/samples/LineEndingConverter/LineEndingConverter_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {b2132eb3-6313-4ef6-93d6-ae2a3c64edc2} + {f3c9bd7d-7efe-45f0-8750-7b781b50b155} - {46fa54a5-42c5-4eee-b470-a1bea25b3de0} + {3774b195-6de8-49ed-ad08-830795ef290b} diff --git a/Foundation/samples/LineEndingConverter/LineEndingConverter_vs120.vcxproj b/Foundation/samples/LineEndingConverter/LineEndingConverter_vs120.vcxproj index 75e52c05b..264dcb2f5 100644 --- a/Foundation/samples/LineEndingConverter/LineEndingConverter_vs120.vcxproj +++ b/Foundation/samples/LineEndingConverter/LineEndingConverter_vs120.vcxproj @@ -28,90 +28,102 @@ LineEndingConverter - {A5639B95-211B-36F1-994E-F05361C18EBF} + {354BBE76-D088-3931-940C-797F514D2E40} LineEndingConverter Win32Proj - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - LineEndingConverterd - LineEndingConverterd - LineEndingConverterd - LineEndingConverter - LineEndingConverter - LineEndingConverter + <_ProjectFileVersion>11.0.61030.0 + LineEndingConverterd + LineEndingConverterd + LineEndingConverterd + LineEndingConverter + LineEndingConverter + LineEndingConverter - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/LineEndingConverter/LineEndingConverter_vs120.vcxproj.filters b/Foundation/samples/LineEndingConverter/LineEndingConverter_vs120.vcxproj.filters index 1963525a8..5caad80b9 100644 --- a/Foundation/samples/LineEndingConverter/LineEndingConverter_vs120.vcxproj.filters +++ b/Foundation/samples/LineEndingConverter/LineEndingConverter_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {b2132eb3-6313-4ef6-93d6-ae2a3c64edc2} + {8bc7b391-9e18-4f04-bd51-3de506235eff} - {46fa54a5-42c5-4eee-b470-a1bea25b3de0} + {cf24b110-e9d7-4a9b-adcd-a6e3f4e08b75} diff --git a/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs100.vcxproj b/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs100.vcxproj index faf086940..687e851f9 100644 --- a/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs100.vcxproj +++ b/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs100.vcxproj @@ -28,84 +28,84 @@ LineEndingConverter - {A5639B95-211B-36F1-994E-F05361C18EBF} + {354BBE76-D088-3931-940C-797F514D2E40} LineEndingConverter Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - LineEndingConverterd - LineEndingConverterd - LineEndingConverterd - LineEndingConverter - LineEndingConverter - LineEndingConverter + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + LineEndingConverterd + LineEndingConverterd + LineEndingConverterd + LineEndingConverter + LineEndingConverter + LineEndingConverter - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs100.vcxproj.filters b/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs100.vcxproj.filters index 846dee33f..5d1630313 100644 --- a/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs100.vcxproj.filters +++ b/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {e8d4b68a-aa93-49a3-90c1-2b73d69c8ad2} + {65b0d201-febc-48c8-9b1b-7277cbfee2f2} - {374ce076-f8c1-476a-8789-60268cb23c93} + {19daed3d-cf2c-492c-b25e-99488fb43de4} diff --git a/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs110.vcxproj b/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs110.vcxproj index 751aaab04..25c6d3269 100644 --- a/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs110.vcxproj +++ b/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs110.vcxproj @@ -28,90 +28,102 @@ LineEndingConverter - {A5639B95-211B-36F1-994E-F05361C18EBF} + {354BBE76-D088-3931-940C-797F514D2E40} LineEndingConverter Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - LineEndingConverterd - LineEndingConverterd - LineEndingConverterd - LineEndingConverter - LineEndingConverter - LineEndingConverter + <_ProjectFileVersion>11.0.61030.0 + LineEndingConverterd + LineEndingConverterd + LineEndingConverterd + LineEndingConverter + LineEndingConverter + LineEndingConverter - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs110.vcxproj.filters b/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs110.vcxproj.filters index 9a3dbf6eb..dedfb5add 100644 --- a/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs110.vcxproj.filters +++ b/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {19bad183-12e9-47fb-b2ed-5a5ce4fa41b9} + {830f3b67-be12-4a30-8cfa-e7a7984502d8} - {97c35ad3-23e9-4ef8-b797-780c2b083a2f} + {f48a3939-1196-4379-a28c-527a4ed5f1a8} diff --git a/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs120.vcxproj b/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs120.vcxproj index 751aaab04..6c747f4e8 100644 --- a/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs120.vcxproj +++ b/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs120.vcxproj @@ -28,90 +28,102 @@ LineEndingConverter - {A5639B95-211B-36F1-994E-F05361C18EBF} + {354BBE76-D088-3931-940C-797F514D2E40} LineEndingConverter Win32Proj - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - LineEndingConverterd - LineEndingConverterd - LineEndingConverterd - LineEndingConverter - LineEndingConverter - LineEndingConverter + <_ProjectFileVersion>11.0.61030.0 + LineEndingConverterd + LineEndingConverterd + LineEndingConverterd + LineEndingConverter + LineEndingConverter + LineEndingConverter - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs120.vcxproj.filters b/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs120.vcxproj.filters index 9a3dbf6eb..52410a585 100644 --- a/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs120.vcxproj.filters +++ b/Foundation/samples/LineEndingConverter/LineEndingConverter_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {19bad183-12e9-47fb-b2ed-5a5ce4fa41b9} + {9220a2dd-aa4e-4857-a4d0-0545ab04aed6} - {97c35ad3-23e9-4ef8-b797-780c2b083a2f} + {8f3ff95d-fbe9-42b1-96d5-82f0b799a01f} diff --git a/Foundation/samples/LogRotation/LogRotation_WEC2013_vs110.vcxproj.filters b/Foundation/samples/LogRotation/LogRotation_WEC2013_vs110.vcxproj.filters index 3b309c944..58fa7bd03 100644 --- a/Foundation/samples/LogRotation/LogRotation_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/LogRotation/LogRotation_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {5b9e6055-20c5-4eac-a151-379acb62804b} + {4191009c-85ca-444e-a7e4-a4628927b42f} - {58ebed78-e2c5-46b6-b16f-354aa59b1768} + {9e010c39-fe9d-46e3-8043-f125051e8168} diff --git a/Foundation/samples/LogRotation/LogRotation_vs100.vcxproj b/Foundation/samples/LogRotation/LogRotation_vs100.vcxproj index 6f9527748..cd2aad23f 100644 --- a/Foundation/samples/LogRotation/LogRotation_vs100.vcxproj +++ b/Foundation/samples/LogRotation/LogRotation_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - LogRotationd - LogRotationd - LogRotationd - LogRotation - LogRotation - LogRotation + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + LogRotationd + LogRotationd + LogRotationd + LogRotation + LogRotation + LogRotation - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/LogRotation/LogRotation_vs100.vcxproj.filters b/Foundation/samples/LogRotation/LogRotation_vs100.vcxproj.filters index 04e98f3a2..21f6aaef2 100644 --- a/Foundation/samples/LogRotation/LogRotation_vs100.vcxproj.filters +++ b/Foundation/samples/LogRotation/LogRotation_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {bbf997d8-088f-4f76-add1-07a9d36ae69f} + {4df10ff8-f281-4887-8c99-9d78d593161a} - {c853f608-8cbe-4444-9a34-0b12990b0cb4} + {a040d90a-ca03-4dac-88a7-c0bfe94fab39} diff --git a/Foundation/samples/LogRotation/LogRotation_vs110.vcxproj b/Foundation/samples/LogRotation/LogRotation_vs110.vcxproj index e844dfad4..59d370b3a 100644 --- a/Foundation/samples/LogRotation/LogRotation_vs110.vcxproj +++ b/Foundation/samples/LogRotation/LogRotation_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - LogRotationd - LogRotationd - LogRotationd - LogRotation - LogRotation - LogRotation + <_ProjectFileVersion>11.0.61030.0 + LogRotationd + LogRotationd + LogRotationd + LogRotation + LogRotation + LogRotation - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/LogRotation/LogRotation_vs110.vcxproj.filters b/Foundation/samples/LogRotation/LogRotation_vs110.vcxproj.filters index 420362633..fa24edbc1 100644 --- a/Foundation/samples/LogRotation/LogRotation_vs110.vcxproj.filters +++ b/Foundation/samples/LogRotation/LogRotation_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {111d99c6-8d8c-4326-a4f6-f7c64402349f} + {98d6dacf-7427-4696-b678-f7b17701a254} - {b6856cac-fee9-49da-a368-9822a9ce1c35} + {8cfc9d07-aa0b-4880-9464-4996d7d2f0b5} diff --git a/Foundation/samples/LogRotation/LogRotation_vs120.vcxproj b/Foundation/samples/LogRotation/LogRotation_vs120.vcxproj index 681c67b5c..f1fdbe856 100644 --- a/Foundation/samples/LogRotation/LogRotation_vs120.vcxproj +++ b/Foundation/samples/LogRotation/LogRotation_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ LogRotation Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 LogRotationd LogRotationd LogRotationd @@ -111,6 +93,36 @@ LogRotation LogRotation + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/LogRotation/LogRotation_vs120.vcxproj.filters b/Foundation/samples/LogRotation/LogRotation_vs120.vcxproj.filters index 420362633..227ea6767 100644 --- a/Foundation/samples/LogRotation/LogRotation_vs120.vcxproj.filters +++ b/Foundation/samples/LogRotation/LogRotation_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {111d99c6-8d8c-4326-a4f6-f7c64402349f} + {054adb40-f8e1-45ca-8c80-184cf1c3c302} - {b6856cac-fee9-49da-a368-9822a9ce1c35} + {3e6ba963-346c-47d6-a02e-99394af5a481} diff --git a/Foundation/samples/LogRotation/LogRotation_x64_vs100.vcxproj b/Foundation/samples/LogRotation/LogRotation_x64_vs100.vcxproj index b94247898..2a6a0699e 100644 --- a/Foundation/samples/LogRotation/LogRotation_x64_vs100.vcxproj +++ b/Foundation/samples/LogRotation/LogRotation_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - LogRotationd - LogRotationd - LogRotationd - LogRotation - LogRotation - LogRotation + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + LogRotationd + LogRotationd + LogRotationd + LogRotation + LogRotation + LogRotation - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/LogRotation/LogRotation_x64_vs100.vcxproj.filters b/Foundation/samples/LogRotation/LogRotation_x64_vs100.vcxproj.filters index cd9045c1f..882257f80 100644 --- a/Foundation/samples/LogRotation/LogRotation_x64_vs100.vcxproj.filters +++ b/Foundation/samples/LogRotation/LogRotation_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {de88b4a1-7fee-48f1-ac92-226e971edd32} + {1640356e-3918-4b23-b17d-d8e79274cebc} - {5b6cead1-9b21-4546-9307-f142d96d2c18} + {480aebe7-3be1-4f3b-8504-17015ad0fd13} diff --git a/Foundation/samples/LogRotation/LogRotation_x64_vs110.vcxproj b/Foundation/samples/LogRotation/LogRotation_x64_vs110.vcxproj index 5ddfd5513..750fd02a5 100644 --- a/Foundation/samples/LogRotation/LogRotation_x64_vs110.vcxproj +++ b/Foundation/samples/LogRotation/LogRotation_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - LogRotationd - LogRotationd - LogRotationd - LogRotation - LogRotation - LogRotation + <_ProjectFileVersion>11.0.61030.0 + LogRotationd + LogRotationd + LogRotationd + LogRotation + LogRotation + LogRotation - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/LogRotation/LogRotation_x64_vs110.vcxproj.filters b/Foundation/samples/LogRotation/LogRotation_x64_vs110.vcxproj.filters index 1e756d6a5..8d7723e31 100644 --- a/Foundation/samples/LogRotation/LogRotation_x64_vs110.vcxproj.filters +++ b/Foundation/samples/LogRotation/LogRotation_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {cd22bc28-7b73-4ee4-88ed-a5ec2da22bce} + {1f98e023-9eb7-433c-92ea-6f089b95dc0b} - {47d04652-d17f-4e86-a04a-5a58ba76c207} + {2c847719-33eb-4740-a600-6d4ada336b0f} diff --git a/Foundation/samples/LogRotation/LogRotation_x64_vs120.vcxproj b/Foundation/samples/LogRotation/LogRotation_x64_vs120.vcxproj index 51d17d840..285bad7f1 100644 --- a/Foundation/samples/LogRotation/LogRotation_x64_vs120.vcxproj +++ b/Foundation/samples/LogRotation/LogRotation_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ LogRotation Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 LogRotationd LogRotationd LogRotationd @@ -111,6 +93,36 @@ LogRotation LogRotation + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/LogRotation/LogRotation_x64_vs120.vcxproj.filters b/Foundation/samples/LogRotation/LogRotation_x64_vs120.vcxproj.filters index 1e756d6a5..ee5414a28 100644 --- a/Foundation/samples/LogRotation/LogRotation_x64_vs120.vcxproj.filters +++ b/Foundation/samples/LogRotation/LogRotation_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {cd22bc28-7b73-4ee4-88ed-a5ec2da22bce} + {2e87d99b-a76d-4295-b48c-497c6e282a96} - {47d04652-d17f-4e86-a04a-5a58ba76c207} + {1390a6ce-b949-485f-bfa7-7f669a6d4114} diff --git a/Foundation/samples/Logger/Logger_WEC2013_vs110.vcxproj.filters b/Foundation/samples/Logger/Logger_WEC2013_vs110.vcxproj.filters index 9c46b97f0..297313a05 100644 --- a/Foundation/samples/Logger/Logger_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/Logger/Logger_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {20aa4b0f-624c-4437-9ebf-91d9f1105277} + {cffdafd9-99f9-4f1d-99ac-e448128bedbb} - {f98b1675-2d7b-494a-9550-cef006e34c77} + {f25dca44-745c-454c-8f84-5a113ce3bfbc} diff --git a/Foundation/samples/Logger/Logger_vs100.vcxproj b/Foundation/samples/Logger/Logger_vs100.vcxproj index 21eea3dce..bbfe15be3 100644 --- a/Foundation/samples/Logger/Logger_vs100.vcxproj +++ b/Foundation/samples/Logger/Logger_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Loggerd - Loggerd - Loggerd - Logger - Logger - Logger + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + Loggerd + Loggerd + Loggerd + Logger + Logger + Logger - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/Logger/Logger_vs100.vcxproj.filters b/Foundation/samples/Logger/Logger_vs100.vcxproj.filters index a8b8c16a2..b37210481 100644 --- a/Foundation/samples/Logger/Logger_vs100.vcxproj.filters +++ b/Foundation/samples/Logger/Logger_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {d8e9888e-71d1-4abc-b963-32171d6e7cc8} + {bd257fd0-72f1-478a-aac5-b1fc101a2cb2} - {9eb50b1b-01f9-4deb-8de2-f9a35322bcf4} + {c6618494-cfec-474e-b3cc-b71a565ebbff} diff --git a/Foundation/samples/Logger/Logger_vs110.vcxproj b/Foundation/samples/Logger/Logger_vs110.vcxproj index e03f9d3a6..506b799d2 100644 --- a/Foundation/samples/Logger/Logger_vs110.vcxproj +++ b/Foundation/samples/Logger/Logger_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Loggerd - Loggerd - Loggerd - Logger - Logger - Logger + <_ProjectFileVersion>11.0.61030.0 + Loggerd + Loggerd + Loggerd + Logger + Logger + Logger - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/Logger/Logger_vs110.vcxproj.filters b/Foundation/samples/Logger/Logger_vs110.vcxproj.filters index bb748c14d..2f1220ffa 100644 --- a/Foundation/samples/Logger/Logger_vs110.vcxproj.filters +++ b/Foundation/samples/Logger/Logger_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {f8095aee-5754-4440-ac04-0893984771ac} + {492ec904-8967-44af-8f6d-762d640cb438} - {834269be-9c2b-4f25-b61d-f179e1022803} + {8f76fbe5-0b54-4c63-9634-1e64dfebabeb} diff --git a/Foundation/samples/Logger/Logger_vs120.vcxproj b/Foundation/samples/Logger/Logger_vs120.vcxproj index 201e2b509..25b4a2611 100644 --- a/Foundation/samples/Logger/Logger_vs120.vcxproj +++ b/Foundation/samples/Logger/Logger_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Logger Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Loggerd Loggerd Loggerd @@ -111,6 +93,36 @@ Logger Logger + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/Logger/Logger_vs120.vcxproj.filters b/Foundation/samples/Logger/Logger_vs120.vcxproj.filters index bb748c14d..64e7ccc3b 100644 --- a/Foundation/samples/Logger/Logger_vs120.vcxproj.filters +++ b/Foundation/samples/Logger/Logger_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {f8095aee-5754-4440-ac04-0893984771ac} + {9eb549d3-e3f3-43c8-bb16-aa566f1f23ee} - {834269be-9c2b-4f25-b61d-f179e1022803} + {44d9d3ed-c07a-4bd6-8924-d446de03272a} diff --git a/Foundation/samples/Logger/Logger_x64_vs100.vcxproj b/Foundation/samples/Logger/Logger_x64_vs100.vcxproj index 082ecffc2..715b5f042 100644 --- a/Foundation/samples/Logger/Logger_x64_vs100.vcxproj +++ b/Foundation/samples/Logger/Logger_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Loggerd - Loggerd - Loggerd - Logger - Logger - Logger + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + Loggerd + Loggerd + Loggerd + Logger + Logger + Logger - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/Logger/Logger_x64_vs100.vcxproj.filters b/Foundation/samples/Logger/Logger_x64_vs100.vcxproj.filters index 9c1ae1936..ddf4fca1b 100644 --- a/Foundation/samples/Logger/Logger_x64_vs100.vcxproj.filters +++ b/Foundation/samples/Logger/Logger_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {5e1ac961-8520-46eb-91e6-2bd28d395644} + {044f3b18-1886-4842-b798-100a58308543} - {7c476ddd-d339-410c-ae08-26e60a64984c} + {b661d702-5564-4c7c-aeeb-c5ccbdd7f240} diff --git a/Foundation/samples/Logger/Logger_x64_vs110.vcxproj b/Foundation/samples/Logger/Logger_x64_vs110.vcxproj index c7a5de5dd..2a1e02dc0 100644 --- a/Foundation/samples/Logger/Logger_x64_vs110.vcxproj +++ b/Foundation/samples/Logger/Logger_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Loggerd - Loggerd - Loggerd - Logger - Logger - Logger + <_ProjectFileVersion>11.0.61030.0 + Loggerd + Loggerd + Loggerd + Logger + Logger + Logger - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/Logger/Logger_x64_vs110.vcxproj.filters b/Foundation/samples/Logger/Logger_x64_vs110.vcxproj.filters index d39c05e80..581ca6521 100644 --- a/Foundation/samples/Logger/Logger_x64_vs110.vcxproj.filters +++ b/Foundation/samples/Logger/Logger_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {7b8f278f-8e90-443f-b1b3-11bd551b0961} + {2cdf1f09-20da-4f3f-b0c9-d5f8757a9e86} - {aa998d7f-760f-4888-b906-a086e1c93d1f} + {db9feb49-fab5-4e9b-9342-a9f3e1789e13} diff --git a/Foundation/samples/Logger/Logger_x64_vs120.vcxproj b/Foundation/samples/Logger/Logger_x64_vs120.vcxproj index 579eda0f4..aff08c9ff 100644 --- a/Foundation/samples/Logger/Logger_x64_vs120.vcxproj +++ b/Foundation/samples/Logger/Logger_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Logger Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Loggerd Loggerd Loggerd @@ -111,6 +93,36 @@ Logger Logger + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/Logger/Logger_x64_vs120.vcxproj.filters b/Foundation/samples/Logger/Logger_x64_vs120.vcxproj.filters index d39c05e80..c07623937 100644 --- a/Foundation/samples/Logger/Logger_x64_vs120.vcxproj.filters +++ b/Foundation/samples/Logger/Logger_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {7b8f278f-8e90-443f-b1b3-11bd551b0961} + {099c673f-212f-4f2d-824f-6705cefaba99} - {aa998d7f-760f-4888-b906-a086e1c93d1f} + {47d9aca0-4130-45d2-bb75-ae2138c9ece6} diff --git a/Foundation/samples/NotificationQueue/NotificationQueue_WEC2013_vs110.vcxproj.filters b/Foundation/samples/NotificationQueue/NotificationQueue_WEC2013_vs110.vcxproj.filters index b7a62f702..48636eeb1 100644 --- a/Foundation/samples/NotificationQueue/NotificationQueue_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/NotificationQueue/NotificationQueue_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {c908926c-10b7-47ea-8f56-49b357530dd1} + {80b4e6d9-5360-4028-8512-97f688ba2c7b} - {e088a93c-6a00-4c16-adf6-6f7c2fd203c4} + {2be31c41-88f4-432c-98ec-8cea4c5561fd} diff --git a/Foundation/samples/NotificationQueue/NotificationQueue_vs100.vcxproj b/Foundation/samples/NotificationQueue/NotificationQueue_vs100.vcxproj index 15a75fd2e..2e5cebd58 100644 --- a/Foundation/samples/NotificationQueue/NotificationQueue_vs100.vcxproj +++ b/Foundation/samples/NotificationQueue/NotificationQueue_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - NotificationQueued - NotificationQueued - NotificationQueued - NotificationQueue - NotificationQueue - NotificationQueue + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + NotificationQueued + NotificationQueued + NotificationQueued + NotificationQueue + NotificationQueue + NotificationQueue - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/NotificationQueue/NotificationQueue_vs100.vcxproj.filters b/Foundation/samples/NotificationQueue/NotificationQueue_vs100.vcxproj.filters index 629f1ea44..f43cb3311 100644 --- a/Foundation/samples/NotificationQueue/NotificationQueue_vs100.vcxproj.filters +++ b/Foundation/samples/NotificationQueue/NotificationQueue_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {5628ac24-2560-4db2-9e41-fc06564749e3} + {25d2f7d2-ea3f-4a46-9e45-82cec28fdc3a} - {030027fa-1093-4aac-b844-ddb2c8561df0} + {95a9e8d7-89a5-4da0-a80d-5becf239ec6c} diff --git a/Foundation/samples/NotificationQueue/NotificationQueue_vs110.vcxproj b/Foundation/samples/NotificationQueue/NotificationQueue_vs110.vcxproj index ed35e0a7e..584070e82 100644 --- a/Foundation/samples/NotificationQueue/NotificationQueue_vs110.vcxproj +++ b/Foundation/samples/NotificationQueue/NotificationQueue_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - NotificationQueued - NotificationQueued - NotificationQueued - NotificationQueue - NotificationQueue - NotificationQueue + <_ProjectFileVersion>11.0.61030.0 + NotificationQueued + NotificationQueued + NotificationQueued + NotificationQueue + NotificationQueue + NotificationQueue - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/NotificationQueue/NotificationQueue_vs110.vcxproj.filters b/Foundation/samples/NotificationQueue/NotificationQueue_vs110.vcxproj.filters index b5369857a..037e5c404 100644 --- a/Foundation/samples/NotificationQueue/NotificationQueue_vs110.vcxproj.filters +++ b/Foundation/samples/NotificationQueue/NotificationQueue_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {578c0be1-8a5a-43b7-8036-e0d539e45f18} + {fa7838c7-d068-4dcc-8fd8-74af50f57bc7} - {24dcd269-216e-4db2-b3a4-d723788766bf} + {2d34177f-3235-4cf7-9c0c-6a0e9359f7ab} diff --git a/Foundation/samples/NotificationQueue/NotificationQueue_vs120.vcxproj b/Foundation/samples/NotificationQueue/NotificationQueue_vs120.vcxproj index 027a5e3b4..884aa6996 100644 --- a/Foundation/samples/NotificationQueue/NotificationQueue_vs120.vcxproj +++ b/Foundation/samples/NotificationQueue/NotificationQueue_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ NotificationQueue Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 NotificationQueued NotificationQueued NotificationQueued @@ -111,6 +93,36 @@ NotificationQueue NotificationQueue + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/NotificationQueue/NotificationQueue_vs120.vcxproj.filters b/Foundation/samples/NotificationQueue/NotificationQueue_vs120.vcxproj.filters index b5369857a..96d989cd9 100644 --- a/Foundation/samples/NotificationQueue/NotificationQueue_vs120.vcxproj.filters +++ b/Foundation/samples/NotificationQueue/NotificationQueue_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {578c0be1-8a5a-43b7-8036-e0d539e45f18} + {d251dd64-e5ca-4431-9c27-249aa045975e} - {24dcd269-216e-4db2-b3a4-d723788766bf} + {e441e99a-c135-46a0-a932-d2a91f000ed7} diff --git a/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs100.vcxproj b/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs100.vcxproj index f3d2d3d34..66d4d8b69 100644 --- a/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs100.vcxproj +++ b/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - NotificationQueued - NotificationQueued - NotificationQueued - NotificationQueue - NotificationQueue - NotificationQueue + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + NotificationQueued + NotificationQueued + NotificationQueued + NotificationQueue + NotificationQueue + NotificationQueue - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs100.vcxproj.filters b/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs100.vcxproj.filters index 795e4c2eb..871c87e01 100644 --- a/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs100.vcxproj.filters +++ b/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {8e952ac6-8443-4222-b660-34e71c818b48} + {c56e33e2-8161-4d11-9bc2-693da7866669} - {9d971fac-af12-49b8-b6ad-fae1d966349b} + {b3b9b4b7-7ee5-41fa-a5fd-1ce9c080d9f7} diff --git a/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs110.vcxproj b/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs110.vcxproj index d29b8bd7e..b64cbb12b 100644 --- a/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs110.vcxproj +++ b/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - NotificationQueued - NotificationQueued - NotificationQueued - NotificationQueue - NotificationQueue - NotificationQueue + <_ProjectFileVersion>11.0.61030.0 + NotificationQueued + NotificationQueued + NotificationQueued + NotificationQueue + NotificationQueue + NotificationQueue - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs110.vcxproj.filters b/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs110.vcxproj.filters index 8eb4c2045..4de125b91 100644 --- a/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs110.vcxproj.filters +++ b/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {16aaecf7-7f84-49b8-ac95-d28b7cf450ca} + {7050435b-1779-4e4a-a58f-74b580273856} - {723a3ed8-65ee-4cf6-a5ab-7fda562caa21} + {a2864e84-a321-4dbd-a08a-4310448ec7f8} diff --git a/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs120.vcxproj b/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs120.vcxproj index 872c04b52..a315bc1f7 100644 --- a/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs120.vcxproj +++ b/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ NotificationQueue Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 NotificationQueued NotificationQueued NotificationQueued @@ -111,6 +93,36 @@ NotificationQueue NotificationQueue + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs120.vcxproj.filters b/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs120.vcxproj.filters index 8eb4c2045..438cb8dba 100644 --- a/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs120.vcxproj.filters +++ b/Foundation/samples/NotificationQueue/NotificationQueue_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {16aaecf7-7f84-49b8-ac95-d28b7cf450ca} + {a5cb15b8-47ca-4be5-9ee5-28f0d8118e6b} - {723a3ed8-65ee-4cf6-a5ab-7fda562caa21} + {6f96e4a1-790d-4a96-9a12-21f974f4a2c5} diff --git a/Foundation/samples/StringTokenizer/StringTokenizer_WEC2013_vs110.vcxproj.filters b/Foundation/samples/StringTokenizer/StringTokenizer_WEC2013_vs110.vcxproj.filters index e8b1e24fc..8c08ee0a3 100644 --- a/Foundation/samples/StringTokenizer/StringTokenizer_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/StringTokenizer/StringTokenizer_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {daaddf66-8d86-4e52-acc2-15268406ac9c} + {0b92dea0-76b8-42a9-86cc-8eec6ac79ba2} - {8e1a1b54-5d3b-4d19-8b5d-90f1f21cfdfb} + {f1cab198-145a-4802-8c05-4ddf2a35d779} diff --git a/Foundation/samples/StringTokenizer/StringTokenizer_vs100.vcxproj b/Foundation/samples/StringTokenizer/StringTokenizer_vs100.vcxproj index 7ab7ae362..651e8d319 100644 --- a/Foundation/samples/StringTokenizer/StringTokenizer_vs100.vcxproj +++ b/Foundation/samples/StringTokenizer/StringTokenizer_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - StringTokenizerd - StringTokenizerd - StringTokenizerd - StringTokenizer - StringTokenizer - StringTokenizer + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + StringTokenizerd + StringTokenizerd + StringTokenizerd + StringTokenizer + StringTokenizer + StringTokenizer - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/StringTokenizer/StringTokenizer_vs100.vcxproj.filters b/Foundation/samples/StringTokenizer/StringTokenizer_vs100.vcxproj.filters index 45a07a650..26beb1cdb 100644 --- a/Foundation/samples/StringTokenizer/StringTokenizer_vs100.vcxproj.filters +++ b/Foundation/samples/StringTokenizer/StringTokenizer_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {afe95c2d-6e8c-43a3-abdb-f6a2e066f1f5} + {fd3fe834-d1e6-4ceb-905c-bece33140028} - {a5cac467-157f-4eab-84c6-694969d25aed} + {a61ad2b2-f39b-4398-9855-f960a6a6cb9f} diff --git a/Foundation/samples/StringTokenizer/StringTokenizer_vs110.vcxproj b/Foundation/samples/StringTokenizer/StringTokenizer_vs110.vcxproj index c1b60d747..1b1cb19e1 100644 --- a/Foundation/samples/StringTokenizer/StringTokenizer_vs110.vcxproj +++ b/Foundation/samples/StringTokenizer/StringTokenizer_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - StringTokenizerd - StringTokenizerd - StringTokenizerd - StringTokenizer - StringTokenizer - StringTokenizer + <_ProjectFileVersion>11.0.61030.0 + StringTokenizerd + StringTokenizerd + StringTokenizerd + StringTokenizer + StringTokenizer + StringTokenizer - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/StringTokenizer/StringTokenizer_vs110.vcxproj.filters b/Foundation/samples/StringTokenizer/StringTokenizer_vs110.vcxproj.filters index 0f1db949a..e40962a40 100644 --- a/Foundation/samples/StringTokenizer/StringTokenizer_vs110.vcxproj.filters +++ b/Foundation/samples/StringTokenizer/StringTokenizer_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {872c24e4-2d84-4c0d-99f1-963364f9eb96} + {a57a38da-65aa-48ae-9324-d02d6b389ae0} - {8ca8b5ea-de3b-4188-bb01-929bcb2f0e35} + {4d8f78ee-7c9e-4aa6-b780-31c0a36ca574} diff --git a/Foundation/samples/StringTokenizer/StringTokenizer_vs120.vcxproj b/Foundation/samples/StringTokenizer/StringTokenizer_vs120.vcxproj index e418791f3..ca61d96a4 100644 --- a/Foundation/samples/StringTokenizer/StringTokenizer_vs120.vcxproj +++ b/Foundation/samples/StringTokenizer/StringTokenizer_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ StringTokenizer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 StringTokenizerd StringTokenizerd StringTokenizerd @@ -111,6 +93,36 @@ StringTokenizer StringTokenizer + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/StringTokenizer/StringTokenizer_vs120.vcxproj.filters b/Foundation/samples/StringTokenizer/StringTokenizer_vs120.vcxproj.filters index 0f1db949a..2030f5fa1 100644 --- a/Foundation/samples/StringTokenizer/StringTokenizer_vs120.vcxproj.filters +++ b/Foundation/samples/StringTokenizer/StringTokenizer_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {872c24e4-2d84-4c0d-99f1-963364f9eb96} + {aa1d6fc9-a126-4b9d-86e4-b5e09e21ae95} - {8ca8b5ea-de3b-4188-bb01-929bcb2f0e35} + {de671dc2-9d56-463f-8747-c6b70917bbbe} diff --git a/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs100.vcxproj b/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs100.vcxproj index d27b04bde..fa829dd2b 100644 --- a/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs100.vcxproj +++ b/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - StringTokenizerd - StringTokenizerd - StringTokenizerd - StringTokenizer - StringTokenizer - StringTokenizer + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + StringTokenizerd + StringTokenizerd + StringTokenizerd + StringTokenizer + StringTokenizer + StringTokenizer - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs100.vcxproj.filters b/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs100.vcxproj.filters index 31c39d092..01d03e67a 100644 --- a/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs100.vcxproj.filters +++ b/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {7a535dff-74ca-402d-97a2-563daca483ca} + {cd5c9255-6b45-4c63-9851-85794be40829} - {21b9dfc1-18a9-4658-9419-554e48a8d5e6} + {78f07176-03e9-439e-8b4f-85b3e61d09a0} diff --git a/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs110.vcxproj b/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs110.vcxproj index 81d34d0d4..2bfd6ce0e 100644 --- a/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs110.vcxproj +++ b/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - StringTokenizerd - StringTokenizerd - StringTokenizerd - StringTokenizer - StringTokenizer - StringTokenizer + <_ProjectFileVersion>11.0.61030.0 + StringTokenizerd + StringTokenizerd + StringTokenizerd + StringTokenizer + StringTokenizer + StringTokenizer - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs110.vcxproj.filters b/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs110.vcxproj.filters index 30d4a488d..ce8c5ca4b 100644 --- a/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs110.vcxproj.filters +++ b/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {8ed696f7-36ad-49d8-8b28-e23b75e75199} + {eb971473-c82c-430f-a0a1-2883ac987e5c} - {05902943-d794-44f0-a006-b8384376017d} + {2da5bbc7-458e-4328-905c-c3060d5c481f} diff --git a/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs120.vcxproj b/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs120.vcxproj index f54ebdb77..1644b25ba 100644 --- a/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs120.vcxproj +++ b/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ StringTokenizer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 StringTokenizerd StringTokenizerd StringTokenizerd @@ -111,6 +93,36 @@ StringTokenizer StringTokenizer + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs120.vcxproj.filters b/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs120.vcxproj.filters index 30d4a488d..19ba186de 100644 --- a/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs120.vcxproj.filters +++ b/Foundation/samples/StringTokenizer/StringTokenizer_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {8ed696f7-36ad-49d8-8b28-e23b75e75199} + {878274c0-f1c6-4657-96ea-5d96e267722d} - {05902943-d794-44f0-a006-b8384376017d} + {19b42bac-cbd4-49de-9ccc-e1c6a82265e2} diff --git a/Foundation/samples/Timer/Timer_WEC2013_vs110.vcxproj.filters b/Foundation/samples/Timer/Timer_WEC2013_vs110.vcxproj.filters index c00b1e7a6..bdf2431a1 100644 --- a/Foundation/samples/Timer/Timer_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/Timer/Timer_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {362f69d0-1cf5-4eec-baf2-e0e99feb319e} + {543866f1-8d34-4d0e-ace6-0a6206862855} - {9ab064d4-8674-488b-a5d3-31bd3a70e1c1} + {9c5e1278-1b54-4333-b2ef-3eee40647d4c} diff --git a/Foundation/samples/Timer/Timer_vs100.vcxproj b/Foundation/samples/Timer/Timer_vs100.vcxproj index 1d8d03f76..0dd007a1d 100644 --- a/Foundation/samples/Timer/Timer_vs100.vcxproj +++ b/Foundation/samples/Timer/Timer_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Timerd - Timerd - Timerd - Timer - Timer - Timer + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + Timerd + Timerd + Timerd + Timer + Timer + Timer - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/Timer/Timer_vs100.vcxproj.filters b/Foundation/samples/Timer/Timer_vs100.vcxproj.filters index 6bfd284d2..98f33b689 100644 --- a/Foundation/samples/Timer/Timer_vs100.vcxproj.filters +++ b/Foundation/samples/Timer/Timer_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {5232fe0d-6419-4322-b12e-c1230ac545ee} + {4b56ae06-e6bb-4004-9825-243222730901} - {64cd73ad-a19f-4483-860b-abbedbf46b94} + {1a2c4c0d-7298-4d9e-bcca-2f3599dd71d1} diff --git a/Foundation/samples/Timer/Timer_vs110.vcxproj b/Foundation/samples/Timer/Timer_vs110.vcxproj index 63a72763f..9e47f1ae7 100644 --- a/Foundation/samples/Timer/Timer_vs110.vcxproj +++ b/Foundation/samples/Timer/Timer_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Timerd - Timerd - Timerd - Timer - Timer - Timer + <_ProjectFileVersion>11.0.61030.0 + Timerd + Timerd + Timerd + Timer + Timer + Timer - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/Timer/Timer_vs110.vcxproj.filters b/Foundation/samples/Timer/Timer_vs110.vcxproj.filters index 377bc027c..c63eb8f78 100644 --- a/Foundation/samples/Timer/Timer_vs110.vcxproj.filters +++ b/Foundation/samples/Timer/Timer_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {22bc7c13-f7cb-4dab-aa8c-33b4a14cf738} + {d7f71718-ab4e-4984-85df-b27bf495a364} - {f5b0f8e0-cdae-4e2e-9694-4b9e349d14b7} + {569e2613-7df4-4e02-8dc3-fc5dd5bbe70c} diff --git a/Foundation/samples/Timer/Timer_vs120.vcxproj b/Foundation/samples/Timer/Timer_vs120.vcxproj index 3a71c4cfe..75ebf022b 100644 --- a/Foundation/samples/Timer/Timer_vs120.vcxproj +++ b/Foundation/samples/Timer/Timer_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Timer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Timerd Timerd Timerd @@ -111,6 +93,36 @@ Timer Timer + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/Timer/Timer_vs120.vcxproj.filters b/Foundation/samples/Timer/Timer_vs120.vcxproj.filters index 377bc027c..cb291db4f 100644 --- a/Foundation/samples/Timer/Timer_vs120.vcxproj.filters +++ b/Foundation/samples/Timer/Timer_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {22bc7c13-f7cb-4dab-aa8c-33b4a14cf738} + {3fc66b66-85a3-49d7-8c8d-7a2b18846cd5} - {f5b0f8e0-cdae-4e2e-9694-4b9e349d14b7} + {ad0c4450-5ba0-4540-9f25-c4f801d191c1} diff --git a/Foundation/samples/Timer/Timer_x64_vs100.vcxproj b/Foundation/samples/Timer/Timer_x64_vs100.vcxproj index 55d4548b6..712561755 100644 --- a/Foundation/samples/Timer/Timer_x64_vs100.vcxproj +++ b/Foundation/samples/Timer/Timer_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Timerd - Timerd - Timerd - Timer - Timer - Timer + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + Timerd + Timerd + Timerd + Timer + Timer + Timer - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/Timer/Timer_x64_vs100.vcxproj.filters b/Foundation/samples/Timer/Timer_x64_vs100.vcxproj.filters index 71d247399..90f00e445 100644 --- a/Foundation/samples/Timer/Timer_x64_vs100.vcxproj.filters +++ b/Foundation/samples/Timer/Timer_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {29014ebd-168d-454f-aa18-ecd49db31f6a} + {8841b266-37b7-44ad-bc87-c9ffa23cad7e} - {47d0a8f9-6994-4073-b9b5-5c2c2e7e4354} + {2e3dee57-616a-4025-8755-b67ca299b143} diff --git a/Foundation/samples/Timer/Timer_x64_vs110.vcxproj b/Foundation/samples/Timer/Timer_x64_vs110.vcxproj index e4248f54a..416f3808d 100644 --- a/Foundation/samples/Timer/Timer_x64_vs110.vcxproj +++ b/Foundation/samples/Timer/Timer_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Timerd - Timerd - Timerd - Timer - Timer - Timer + <_ProjectFileVersion>11.0.61030.0 + Timerd + Timerd + Timerd + Timer + Timer + Timer - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/Timer/Timer_x64_vs110.vcxproj.filters b/Foundation/samples/Timer/Timer_x64_vs110.vcxproj.filters index e150f1d8f..2c63977af 100644 --- a/Foundation/samples/Timer/Timer_x64_vs110.vcxproj.filters +++ b/Foundation/samples/Timer/Timer_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {9eb6404c-0cf8-43af-b39e-44e02097cbce} + {567bca99-8e09-47df-95bd-9e5906ded043} - {db8afee4-f082-41e8-9bff-98db6c9e87d8} + {3db998b9-a900-49eb-84e1-2c45ec089316} diff --git a/Foundation/samples/Timer/Timer_x64_vs120.vcxproj b/Foundation/samples/Timer/Timer_x64_vs120.vcxproj index 3388416dc..9cab5cd39 100644 --- a/Foundation/samples/Timer/Timer_x64_vs120.vcxproj +++ b/Foundation/samples/Timer/Timer_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Timer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Timerd Timerd Timerd @@ -111,6 +93,36 @@ Timer Timer + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/Timer/Timer_x64_vs120.vcxproj.filters b/Foundation/samples/Timer/Timer_x64_vs120.vcxproj.filters index e150f1d8f..4f5a18cec 100644 --- a/Foundation/samples/Timer/Timer_x64_vs120.vcxproj.filters +++ b/Foundation/samples/Timer/Timer_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {9eb6404c-0cf8-43af-b39e-44e02097cbce} + {23037a50-7e7f-44e5-a952-42b52d4e031a} - {db8afee4-f082-41e8-9bff-98db6c9e87d8} + {13dc8191-7fe7-43fa-9a2f-efe1640aff2e} diff --git a/Foundation/samples/URI/URI_WEC2013_vs110.vcxproj.filters b/Foundation/samples/URI/URI_WEC2013_vs110.vcxproj.filters index 3481a3b7b..604257ba4 100644 --- a/Foundation/samples/URI/URI_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/URI/URI_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {39a305eb-7856-483d-9078-3471258a4985} + {e24a4339-f062-487d-95bb-a96a2db05ff2} - {163e06bf-db8c-4100-b905-b42b9cd4291e} + {821ad237-1691-4f33-baa0-d1b1f73bee8a} diff --git a/Foundation/samples/URI/URI_vs100.vcxproj b/Foundation/samples/URI/URI_vs100.vcxproj index 0efdcbecc..7923779d7 100644 --- a/Foundation/samples/URI/URI_vs100.vcxproj +++ b/Foundation/samples/URI/URI_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - URId - URId - URId - URI - URI - URI + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + URId + URId + URId + URI + URI + URI - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/URI/URI_vs100.vcxproj.filters b/Foundation/samples/URI/URI_vs100.vcxproj.filters index 0de37284d..c73fea724 100644 --- a/Foundation/samples/URI/URI_vs100.vcxproj.filters +++ b/Foundation/samples/URI/URI_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {fb2dc211-d4cc-422d-b49a-2f1994c7d6a5} + {6fc9179b-7e7a-4499-9d3e-82de76436c5d} - {2238f556-f6ff-42b8-8533-5f70f5c0bece} + {a741ff9a-2567-4fb7-b2da-bdcd8836054b} diff --git a/Foundation/samples/URI/URI_vs110.vcxproj b/Foundation/samples/URI/URI_vs110.vcxproj index 62afff31c..2ac2f687b 100644 --- a/Foundation/samples/URI/URI_vs110.vcxproj +++ b/Foundation/samples/URI/URI_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - URId - URId - URId - URI - URI - URI + <_ProjectFileVersion>11.0.61030.0 + URId + URId + URId + URI + URI + URI - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/URI/URI_vs110.vcxproj.filters b/Foundation/samples/URI/URI_vs110.vcxproj.filters index dfe662d5b..29853b089 100644 --- a/Foundation/samples/URI/URI_vs110.vcxproj.filters +++ b/Foundation/samples/URI/URI_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {2c990979-20d2-43da-ad84-ccc59bf25baf} + {f591dce8-f105-49dc-93f4-79f7f10d64e0} - {735cbf23-e1a1-48f4-ac7d-2aa168e57f70} + {7c7180ff-2b2a-410a-805e-8de6e2bfdb93} diff --git a/Foundation/samples/URI/URI_vs120.vcxproj b/Foundation/samples/URI/URI_vs120.vcxproj index 447b9d753..8dea0e6d6 100644 --- a/Foundation/samples/URI/URI_vs120.vcxproj +++ b/Foundation/samples/URI/URI_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ URI Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 URId URId URId @@ -111,6 +93,36 @@ URI URI + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/URI/URI_vs120.vcxproj.filters b/Foundation/samples/URI/URI_vs120.vcxproj.filters index dfe662d5b..37920e466 100644 --- a/Foundation/samples/URI/URI_vs120.vcxproj.filters +++ b/Foundation/samples/URI/URI_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {2c990979-20d2-43da-ad84-ccc59bf25baf} + {0ee2ba5c-602b-4184-90a9-d1f611837654} - {735cbf23-e1a1-48f4-ac7d-2aa168e57f70} + {4bd359e6-fc8c-4c3a-bb5f-e49face481e2} diff --git a/Foundation/samples/URI/URI_x64_vs100.vcxproj b/Foundation/samples/URI/URI_x64_vs100.vcxproj index 53bae199c..46ad29e9d 100644 --- a/Foundation/samples/URI/URI_x64_vs100.vcxproj +++ b/Foundation/samples/URI/URI_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - URId - URId - URId - URI - URI - URI + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + URId + URId + URId + URI + URI + URI - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/URI/URI_x64_vs100.vcxproj.filters b/Foundation/samples/URI/URI_x64_vs100.vcxproj.filters index 5ee732034..f4aff31e8 100644 --- a/Foundation/samples/URI/URI_x64_vs100.vcxproj.filters +++ b/Foundation/samples/URI/URI_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {f02b6ccb-857a-418e-85e7-d661be9059db} + {f400640f-a3ee-425f-add2-5773d036918a} - {0c76b004-e33a-44d7-9c6c-e4832586327c} + {eeec594b-d18f-42b5-afb7-8f69f616ea55} diff --git a/Foundation/samples/URI/URI_x64_vs110.vcxproj b/Foundation/samples/URI/URI_x64_vs110.vcxproj index 4ddb395d2..0c497faf0 100644 --- a/Foundation/samples/URI/URI_x64_vs110.vcxproj +++ b/Foundation/samples/URI/URI_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - URId - URId - URId - URI - URI - URI + <_ProjectFileVersion>11.0.61030.0 + URId + URId + URId + URI + URI + URI - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/URI/URI_x64_vs110.vcxproj.filters b/Foundation/samples/URI/URI_x64_vs110.vcxproj.filters index 54b87b6d1..93c3e7fbb 100644 --- a/Foundation/samples/URI/URI_x64_vs110.vcxproj.filters +++ b/Foundation/samples/URI/URI_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {af9ef064-1328-42fd-8548-51bbfb20b3e6} + {83f922fc-5e22-44bf-8487-75192a592c3f} - {d8b00ff9-93c6-4133-9831-a40dd118936d} + {d0f4e1bb-b040-4efd-ada9-d36a471edff7} diff --git a/Foundation/samples/URI/URI_x64_vs120.vcxproj b/Foundation/samples/URI/URI_x64_vs120.vcxproj index b49c9ae27..87c5f85bd 100644 --- a/Foundation/samples/URI/URI_x64_vs120.vcxproj +++ b/Foundation/samples/URI/URI_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ URI Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 URId URId URId @@ -111,6 +93,36 @@ URI URI + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/URI/URI_x64_vs120.vcxproj.filters b/Foundation/samples/URI/URI_x64_vs120.vcxproj.filters index 54b87b6d1..21762185e 100644 --- a/Foundation/samples/URI/URI_x64_vs120.vcxproj.filters +++ b/Foundation/samples/URI/URI_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {af9ef064-1328-42fd-8548-51bbfb20b3e6} + {d4ab5bb6-bd5c-479e-8fd1-51de8977c2b3} - {d8b00ff9-93c6-4133-9831-a40dd118936d} + {3db0b980-c6c6-4221-93df-6f03bfeadce4} diff --git a/Foundation/samples/base64decode/base64decode_WEC2013_vs110.vcxproj.filters b/Foundation/samples/base64decode/base64decode_WEC2013_vs110.vcxproj.filters index 6599da172..90625048d 100644 --- a/Foundation/samples/base64decode/base64decode_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/base64decode/base64decode_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {ef6275e0-e99d-439b-9934-698cd5ecce04} + {61e339b9-8c15-4ccd-8bb1-fb4961bc684f} - {3c0cc35d-849b-495c-af36-361cf72b2ebe} + {ffc09786-4a74-488b-b294-38e057886420} diff --git a/Foundation/samples/base64decode/base64decode_vs100.vcxproj b/Foundation/samples/base64decode/base64decode_vs100.vcxproj index ee81ab257..49e665982 100644 --- a/Foundation/samples/base64decode/base64decode_vs100.vcxproj +++ b/Foundation/samples/base64decode/base64decode_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - base64decoded - base64decoded - base64decoded - base64decode - base64decode - base64decode + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + base64decoded + base64decoded + base64decoded + base64decode + base64decode + base64decode - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/base64decode/base64decode_vs100.vcxproj.filters b/Foundation/samples/base64decode/base64decode_vs100.vcxproj.filters index 965f95897..a72e47008 100644 --- a/Foundation/samples/base64decode/base64decode_vs100.vcxproj.filters +++ b/Foundation/samples/base64decode/base64decode_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {0166a44e-c5e1-4ba0-b71e-1532208278fe} + {0267088b-c834-4db8-8547-d2bb6605b978} - {5104d6c6-eeda-4caa-bd14-7fc01d79aa8c} + {e7536d04-1d67-47d7-9361-d14aea851a5c} diff --git a/Foundation/samples/base64decode/base64decode_vs110.vcxproj b/Foundation/samples/base64decode/base64decode_vs110.vcxproj index 9815c4806..6597c60b9 100644 --- a/Foundation/samples/base64decode/base64decode_vs110.vcxproj +++ b/Foundation/samples/base64decode/base64decode_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - base64decoded - base64decoded - base64decoded - base64decode - base64decode - base64decode + <_ProjectFileVersion>11.0.61030.0 + base64decoded + base64decoded + base64decoded + base64decode + base64decode + base64decode - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/base64decode/base64decode_vs110.vcxproj.filters b/Foundation/samples/base64decode/base64decode_vs110.vcxproj.filters index b41f85d42..5f021aae4 100644 --- a/Foundation/samples/base64decode/base64decode_vs110.vcxproj.filters +++ b/Foundation/samples/base64decode/base64decode_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {87e362c0-5369-48d1-85df-1861d23f294b} + {f03b1a94-171c-48aa-b5b8-a6ad01d4eea9} - {a09fb005-e2f8-4186-812a-3d4477433b58} + {4c14b4bb-b5c8-49c8-885b-63cabdff0448} diff --git a/Foundation/samples/base64decode/base64decode_vs120.vcxproj b/Foundation/samples/base64decode/base64decode_vs120.vcxproj index 642f43106..2389598c7 100644 --- a/Foundation/samples/base64decode/base64decode_vs120.vcxproj +++ b/Foundation/samples/base64decode/base64decode_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ base64decode Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 base64decoded base64decoded base64decoded @@ -111,6 +93,36 @@ base64decode base64decode + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/base64decode/base64decode_vs120.vcxproj.filters b/Foundation/samples/base64decode/base64decode_vs120.vcxproj.filters index b41f85d42..d5bb454c7 100644 --- a/Foundation/samples/base64decode/base64decode_vs120.vcxproj.filters +++ b/Foundation/samples/base64decode/base64decode_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {87e362c0-5369-48d1-85df-1861d23f294b} + {4775ae07-19f5-459d-be6b-de01ae9c5fdc} - {a09fb005-e2f8-4186-812a-3d4477433b58} + {c7dc4867-33f5-4f52-b8a2-20047c8d5924} diff --git a/Foundation/samples/base64decode/base64decode_x64_vs100.vcxproj b/Foundation/samples/base64decode/base64decode_x64_vs100.vcxproj index 9c5a4aec7..fdbbad430 100644 --- a/Foundation/samples/base64decode/base64decode_x64_vs100.vcxproj +++ b/Foundation/samples/base64decode/base64decode_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - base64decoded - base64decoded - base64decoded - base64decode - base64decode - base64decode + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + base64decoded + base64decoded + base64decoded + base64decode + base64decode + base64decode - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/base64decode/base64decode_x64_vs100.vcxproj.filters b/Foundation/samples/base64decode/base64decode_x64_vs100.vcxproj.filters index ccd3a74f0..b88418cef 100644 --- a/Foundation/samples/base64decode/base64decode_x64_vs100.vcxproj.filters +++ b/Foundation/samples/base64decode/base64decode_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {f158b3e7-24b1-4453-88fe-2984530a6bcb} + {0f62ddfc-394a-48e4-8440-3ec6cd66766e} - {80f00fb6-cc0f-4a1b-a6eb-ae3103d15933} + {716a7fa5-01cb-474b-ab57-44b30fa2515d} diff --git a/Foundation/samples/base64decode/base64decode_x64_vs110.vcxproj b/Foundation/samples/base64decode/base64decode_x64_vs110.vcxproj index 20befbfcc..2f32cda85 100644 --- a/Foundation/samples/base64decode/base64decode_x64_vs110.vcxproj +++ b/Foundation/samples/base64decode/base64decode_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - base64decoded - base64decoded - base64decoded - base64decode - base64decode - base64decode + <_ProjectFileVersion>11.0.61030.0 + base64decoded + base64decoded + base64decoded + base64decode + base64decode + base64decode - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/base64decode/base64decode_x64_vs110.vcxproj.filters b/Foundation/samples/base64decode/base64decode_x64_vs110.vcxproj.filters index c84e12f1d..1ce7b4da3 100644 --- a/Foundation/samples/base64decode/base64decode_x64_vs110.vcxproj.filters +++ b/Foundation/samples/base64decode/base64decode_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {98beda37-cde7-4199-8f38-79102d0f1ab9} + {d444b586-76a1-4f71-9f98-4a419486d6fc} - {06affaa7-68aa-49ef-8fbc-578f18355c9f} + {1182da18-3fc8-437f-b4d2-77993038a144} diff --git a/Foundation/samples/base64decode/base64decode_x64_vs120.vcxproj b/Foundation/samples/base64decode/base64decode_x64_vs120.vcxproj index f583a8b91..8f313075b 100644 --- a/Foundation/samples/base64decode/base64decode_x64_vs120.vcxproj +++ b/Foundation/samples/base64decode/base64decode_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ base64decode Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 base64decoded base64decoded base64decoded @@ -111,6 +93,36 @@ base64decode base64decode + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/base64decode/base64decode_x64_vs120.vcxproj.filters b/Foundation/samples/base64decode/base64decode_x64_vs120.vcxproj.filters index c84e12f1d..4428f79f2 100644 --- a/Foundation/samples/base64decode/base64decode_x64_vs120.vcxproj.filters +++ b/Foundation/samples/base64decode/base64decode_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {98beda37-cde7-4199-8f38-79102d0f1ab9} + {a69d2e86-e7b7-476f-802a-a1ff795693ce} - {06affaa7-68aa-49ef-8fbc-578f18355c9f} + {fb69b8eb-a4ac-46b4-b69c-e9b934df6bfe} diff --git a/Foundation/samples/base64encode/base64encode_WEC2013_vs110.vcxproj.filters b/Foundation/samples/base64encode/base64encode_WEC2013_vs110.vcxproj.filters index 06dadc12a..3b46b76c5 100644 --- a/Foundation/samples/base64encode/base64encode_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/base64encode/base64encode_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {e7a81bd5-37a7-4bf5-b4d8-37070954b43f} + {f69aabe4-640e-4aa8-9c50-3f68cfe7f870} - {d5874bfb-0c28-4d8c-aa94-b64bb0aee34d} + {b15aa8b9-84db-4b15-a29c-e191ead9325b} diff --git a/Foundation/samples/base64encode/base64encode_vs100.vcxproj b/Foundation/samples/base64encode/base64encode_vs100.vcxproj index 6a6acae28..6b50f9667 100644 --- a/Foundation/samples/base64encode/base64encode_vs100.vcxproj +++ b/Foundation/samples/base64encode/base64encode_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - base64encoded - base64encoded - base64encoded - base64encode - base64encode - base64encode + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + base64encoded + base64encoded + base64encoded + base64encode + base64encode + base64encode - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/base64encode/base64encode_vs100.vcxproj.filters b/Foundation/samples/base64encode/base64encode_vs100.vcxproj.filters index fc5bda6c2..a8adf857b 100644 --- a/Foundation/samples/base64encode/base64encode_vs100.vcxproj.filters +++ b/Foundation/samples/base64encode/base64encode_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {daf55d4e-5a9d-4f08-863f-014d78db02ce} + {9812c4b1-3992-4da8-884c-5dc6a34b448e} - {055bb23c-7ffc-46ca-a8a4-3fea311e2014} + {3bc539ed-a635-4c62-a555-155aaa8b64dc} diff --git a/Foundation/samples/base64encode/base64encode_vs110.vcxproj b/Foundation/samples/base64encode/base64encode_vs110.vcxproj index 788cfc45c..91286a909 100644 --- a/Foundation/samples/base64encode/base64encode_vs110.vcxproj +++ b/Foundation/samples/base64encode/base64encode_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - base64encoded - base64encoded - base64encoded - base64encode - base64encode - base64encode + <_ProjectFileVersion>11.0.61030.0 + base64encoded + base64encoded + base64encoded + base64encode + base64encode + base64encode - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/base64encode/base64encode_vs110.vcxproj.filters b/Foundation/samples/base64encode/base64encode_vs110.vcxproj.filters index e236102ec..f4fa636ef 100644 --- a/Foundation/samples/base64encode/base64encode_vs110.vcxproj.filters +++ b/Foundation/samples/base64encode/base64encode_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {a9f360ca-e778-47dd-a4fb-ad367e0d4420} + {cf92b503-6ae0-4fad-b23d-8376633645e6} - {29a6d1ff-f44b-4dee-be3e-64b42b7bc9a2} + {dd56508c-1587-4b27-b1c1-d36438febd5d} diff --git a/Foundation/samples/base64encode/base64encode_vs120.vcxproj b/Foundation/samples/base64encode/base64encode_vs120.vcxproj index a2be0110b..cdc9bcbd6 100644 --- a/Foundation/samples/base64encode/base64encode_vs120.vcxproj +++ b/Foundation/samples/base64encode/base64encode_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ base64encode Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 base64encoded base64encoded base64encoded @@ -111,6 +93,36 @@ base64encode base64encode + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/base64encode/base64encode_vs120.vcxproj.filters b/Foundation/samples/base64encode/base64encode_vs120.vcxproj.filters index e236102ec..e28676dba 100644 --- a/Foundation/samples/base64encode/base64encode_vs120.vcxproj.filters +++ b/Foundation/samples/base64encode/base64encode_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {a9f360ca-e778-47dd-a4fb-ad367e0d4420} + {eb0dc0cb-3146-41f9-9a5e-2fdf076df1d4} - {29a6d1ff-f44b-4dee-be3e-64b42b7bc9a2} + {39fd4a43-a4e1-4e98-855b-2549716793c9} diff --git a/Foundation/samples/base64encode/base64encode_x64_vs100.vcxproj b/Foundation/samples/base64encode/base64encode_x64_vs100.vcxproj index e6724854c..2c7b41d61 100644 --- a/Foundation/samples/base64encode/base64encode_x64_vs100.vcxproj +++ b/Foundation/samples/base64encode/base64encode_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - base64encoded - base64encoded - base64encoded - base64encode - base64encode - base64encode + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + base64encoded + base64encoded + base64encoded + base64encode + base64encode + base64encode - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/base64encode/base64encode_x64_vs100.vcxproj.filters b/Foundation/samples/base64encode/base64encode_x64_vs100.vcxproj.filters index f52b86452..2a770aa1b 100644 --- a/Foundation/samples/base64encode/base64encode_x64_vs100.vcxproj.filters +++ b/Foundation/samples/base64encode/base64encode_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {29e1fcc7-7f4d-49fd-8c01-71513bb20aac} + {61b5212b-d743-4cbc-95ae-1573b4a75137} - {bd58008f-7386-4a69-b509-c6d13ca62cae} + {43efe653-85ec-478f-9510-3cc3d44032fa} diff --git a/Foundation/samples/base64encode/base64encode_x64_vs110.vcxproj b/Foundation/samples/base64encode/base64encode_x64_vs110.vcxproj index 856655288..2c5ecece5 100644 --- a/Foundation/samples/base64encode/base64encode_x64_vs110.vcxproj +++ b/Foundation/samples/base64encode/base64encode_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - base64encoded - base64encoded - base64encoded - base64encode - base64encode - base64encode + <_ProjectFileVersion>11.0.61030.0 + base64encoded + base64encoded + base64encoded + base64encode + base64encode + base64encode - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/base64encode/base64encode_x64_vs110.vcxproj.filters b/Foundation/samples/base64encode/base64encode_x64_vs110.vcxproj.filters index 5d95122c0..4a030bcdc 100644 --- a/Foundation/samples/base64encode/base64encode_x64_vs110.vcxproj.filters +++ b/Foundation/samples/base64encode/base64encode_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {ee2edf11-0ed9-4c58-8e02-27ae4b183d30} + {f6f52fac-84d9-425b-89b9-21b0fa12725d} - {a607ccbc-1cd9-4cc9-b83d-54d37f09f904} + {2f7c40e6-a384-4b55-afff-ead80ffad3c9} diff --git a/Foundation/samples/base64encode/base64encode_x64_vs120.vcxproj b/Foundation/samples/base64encode/base64encode_x64_vs120.vcxproj index b9631473a..af1cc8f0b 100644 --- a/Foundation/samples/base64encode/base64encode_x64_vs120.vcxproj +++ b/Foundation/samples/base64encode/base64encode_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ base64encode Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 base64encoded base64encoded base64encoded @@ -111,6 +93,36 @@ base64encode base64encode + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/base64encode/base64encode_x64_vs120.vcxproj.filters b/Foundation/samples/base64encode/base64encode_x64_vs120.vcxproj.filters index 5d95122c0..3d73df29b 100644 --- a/Foundation/samples/base64encode/base64encode_x64_vs120.vcxproj.filters +++ b/Foundation/samples/base64encode/base64encode_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {ee2edf11-0ed9-4c58-8e02-27ae4b183d30} + {6c6df52e-0e48-463b-878e-34d1444ee703} - {a607ccbc-1cd9-4cc9-b83d-54d37f09f904} + {f469e15d-e1dd-4f3a-8e4a-bc1ca19392f1} diff --git a/Foundation/samples/deflate/deflate_WEC2013_vs110.vcxproj.filters b/Foundation/samples/deflate/deflate_WEC2013_vs110.vcxproj.filters index d7bb55760..d1ade33e7 100644 --- a/Foundation/samples/deflate/deflate_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/deflate/deflate_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {a6e143e6-986d-4aab-9e1e-99bc00920313} + {554b98fb-d73f-4dfd-8599-8ebde264fbfd} - {0f094070-77bb-4d0c-b70c-a049496da092} + {eb819a23-47b0-4ed5-bb39-96b96d2cdb23} diff --git a/Foundation/samples/deflate/deflate_vs100.vcxproj b/Foundation/samples/deflate/deflate_vs100.vcxproj index 9fe3fabb3..c8228846f 100644 --- a/Foundation/samples/deflate/deflate_vs100.vcxproj +++ b/Foundation/samples/deflate/deflate_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - deflated - deflated - deflated - deflate - deflate - deflate + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + deflated + deflated + deflated + deflate + deflate + deflate - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/deflate/deflate_vs100.vcxproj.filters b/Foundation/samples/deflate/deflate_vs100.vcxproj.filters index e2c0f2500..51ea6a2a7 100644 --- a/Foundation/samples/deflate/deflate_vs100.vcxproj.filters +++ b/Foundation/samples/deflate/deflate_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {d42017c2-1a3d-467a-9865-82dc558278b7} + {96f855d8-1094-45e8-814b-1486bc064267} - {aa14fc08-abe8-48be-a21d-35ce1ae1c48d} + {bd66e93e-a7b5-4b10-9628-f1ba10f5fd60} diff --git a/Foundation/samples/deflate/deflate_vs110.vcxproj b/Foundation/samples/deflate/deflate_vs110.vcxproj index 93d1e04bc..a3047d8b5 100644 --- a/Foundation/samples/deflate/deflate_vs110.vcxproj +++ b/Foundation/samples/deflate/deflate_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - deflated - deflated - deflated - deflate - deflate - deflate + <_ProjectFileVersion>11.0.61030.0 + deflated + deflated + deflated + deflate + deflate + deflate - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/deflate/deflate_vs110.vcxproj.filters b/Foundation/samples/deflate/deflate_vs110.vcxproj.filters index d6ea2e423..ab34c845f 100644 --- a/Foundation/samples/deflate/deflate_vs110.vcxproj.filters +++ b/Foundation/samples/deflate/deflate_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {b671ae0c-85a2-460d-bc28-c0e00f92c459} + {c8bfcf9c-986a-4780-a8d0-62301c866388} - {5491d7fc-67d8-4991-b0cc-34b388a2157b} + {19695a43-74c7-4bf1-9424-29efb676bc15} diff --git a/Foundation/samples/deflate/deflate_vs120.vcxproj b/Foundation/samples/deflate/deflate_vs120.vcxproj index eaf508938..2c9939db2 100644 --- a/Foundation/samples/deflate/deflate_vs120.vcxproj +++ b/Foundation/samples/deflate/deflate_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ deflate Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 deflated deflated deflated @@ -111,6 +93,36 @@ deflate deflate + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/deflate/deflate_vs120.vcxproj.filters b/Foundation/samples/deflate/deflate_vs120.vcxproj.filters index d6ea2e423..aa70b8868 100644 --- a/Foundation/samples/deflate/deflate_vs120.vcxproj.filters +++ b/Foundation/samples/deflate/deflate_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {b671ae0c-85a2-460d-bc28-c0e00f92c459} + {a83ef504-251d-4788-8d30-386af9fdbce5} - {5491d7fc-67d8-4991-b0cc-34b388a2157b} + {4b617e59-b4bc-4197-add6-e186218b31e8} diff --git a/Foundation/samples/deflate/deflate_x64_vs100.vcxproj b/Foundation/samples/deflate/deflate_x64_vs100.vcxproj index 26cf05d73..b7368ce60 100644 --- a/Foundation/samples/deflate/deflate_x64_vs100.vcxproj +++ b/Foundation/samples/deflate/deflate_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - deflated - deflated - deflated - deflate - deflate - deflate + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + deflated + deflated + deflated + deflate + deflate + deflate - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/deflate/deflate_x64_vs100.vcxproj.filters b/Foundation/samples/deflate/deflate_x64_vs100.vcxproj.filters index 92ac9ca99..33f93f241 100644 --- a/Foundation/samples/deflate/deflate_x64_vs100.vcxproj.filters +++ b/Foundation/samples/deflate/deflate_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {b18dddab-dd12-4d24-b127-ae9aa92d36dd} + {1431d8f4-e921-4d62-8b7d-6bad3f07027e} - {b770e833-c2d3-4c4d-9756-085d0dbe78c9} + {25c6ba58-058e-474e-a1ad-6a4ac8836856} diff --git a/Foundation/samples/deflate/deflate_x64_vs110.vcxproj b/Foundation/samples/deflate/deflate_x64_vs110.vcxproj index 9d7ee83d9..d241a2445 100644 --- a/Foundation/samples/deflate/deflate_x64_vs110.vcxproj +++ b/Foundation/samples/deflate/deflate_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - deflated - deflated - deflated - deflate - deflate - deflate + <_ProjectFileVersion>11.0.61030.0 + deflated + deflated + deflated + deflate + deflate + deflate - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/deflate/deflate_x64_vs110.vcxproj.filters b/Foundation/samples/deflate/deflate_x64_vs110.vcxproj.filters index 8f1bfe8f3..c5c15cdba 100644 --- a/Foundation/samples/deflate/deflate_x64_vs110.vcxproj.filters +++ b/Foundation/samples/deflate/deflate_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {c0109da4-503a-4ab3-93fe-863df27f5b94} + {c1a7d356-ca05-4a9b-8a7b-b530d87a03c5} - {57cb2fe2-35e2-4217-a4a4-d439b938ac59} + {bfc18490-e64c-4cb7-ae80-71217a9c3777} diff --git a/Foundation/samples/deflate/deflate_x64_vs120.vcxproj b/Foundation/samples/deflate/deflate_x64_vs120.vcxproj index 5839e2207..75a783f3b 100644 --- a/Foundation/samples/deflate/deflate_x64_vs120.vcxproj +++ b/Foundation/samples/deflate/deflate_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ deflate Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 deflated deflated deflated @@ -111,6 +93,36 @@ deflate deflate + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/deflate/deflate_x64_vs120.vcxproj.filters b/Foundation/samples/deflate/deflate_x64_vs120.vcxproj.filters index 8f1bfe8f3..94d4a37d7 100644 --- a/Foundation/samples/deflate/deflate_x64_vs120.vcxproj.filters +++ b/Foundation/samples/deflate/deflate_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {c0109da4-503a-4ab3-93fe-863df27f5b94} + {91991b69-487c-4d43-a1e6-3f7490b3a277} - {57cb2fe2-35e2-4217-a4a4-d439b938ac59} + {327ead2d-f6ee-496d-be37-de42f69db565} diff --git a/Foundation/samples/dir/dir_WEC2013_vs110.vcxproj.filters b/Foundation/samples/dir/dir_WEC2013_vs110.vcxproj.filters index f032a028b..8980fb8ce 100644 --- a/Foundation/samples/dir/dir_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/dir/dir_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {8ae25c04-d5c7-4cbd-b64c-02ed14be364b} + {4855ae32-6f94-4b72-b0ad-7839216a9ecf} - {fb538fdc-a425-497b-bc05-2686ee709a98} + {5666c40a-d8fc-478c-90bd-c5b41823ab8d} diff --git a/Foundation/samples/dir/dir_vs100.vcxproj b/Foundation/samples/dir/dir_vs100.vcxproj index 9be9df5b8..a1b9e33e6 100644 --- a/Foundation/samples/dir/dir_vs100.vcxproj +++ b/Foundation/samples/dir/dir_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - dird - dird - dird - dir - dir - dir + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + dird + dird + dird + dir + dir + dir - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/dir/dir_vs100.vcxproj.filters b/Foundation/samples/dir/dir_vs100.vcxproj.filters index 0e2b885ec..28c077b80 100644 --- a/Foundation/samples/dir/dir_vs100.vcxproj.filters +++ b/Foundation/samples/dir/dir_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {70293e03-4303-4f0f-9f39-61efb93854d1} + {81cb1148-ed53-4d21-9e4e-40a1b8abb5d4} - {951c8361-3d4d-49c2-b8a6-88fd757c1adf} + {19b11bc7-0a39-4c4b-b3e6-d074f1cbc12f} diff --git a/Foundation/samples/dir/dir_vs110.vcxproj b/Foundation/samples/dir/dir_vs110.vcxproj index 7628d3cbf..ecc62db0c 100644 --- a/Foundation/samples/dir/dir_vs110.vcxproj +++ b/Foundation/samples/dir/dir_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - dird - dird - dird - dir - dir - dir + <_ProjectFileVersion>11.0.61030.0 + dird + dird + dird + dir + dir + dir - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/dir/dir_vs110.vcxproj.filters b/Foundation/samples/dir/dir_vs110.vcxproj.filters index 11fd746af..f6a21ceb3 100644 --- a/Foundation/samples/dir/dir_vs110.vcxproj.filters +++ b/Foundation/samples/dir/dir_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {32c2c2ce-66fd-4756-bb43-ad17871e2e59} + {245d6d2e-9a2c-4974-adc7-8a726a2a77e4} - {8a239fdd-ccc2-4510-aa78-80c969410431} + {c52d6313-e006-4513-a5bb-ec75cc2808e5} diff --git a/Foundation/samples/dir/dir_vs120.vcxproj b/Foundation/samples/dir/dir_vs120.vcxproj index cf51b4693..82663a0c0 100644 --- a/Foundation/samples/dir/dir_vs120.vcxproj +++ b/Foundation/samples/dir/dir_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ dir Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 dird dird dird @@ -111,6 +93,36 @@ dir dir + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/dir/dir_vs120.vcxproj.filters b/Foundation/samples/dir/dir_vs120.vcxproj.filters index 11fd746af..f56be1922 100644 --- a/Foundation/samples/dir/dir_vs120.vcxproj.filters +++ b/Foundation/samples/dir/dir_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {32c2c2ce-66fd-4756-bb43-ad17871e2e59} + {c19ee396-07e4-4ea6-ad0b-8b5d057012a8} - {8a239fdd-ccc2-4510-aa78-80c969410431} + {39e8c00e-289b-4ae9-aa93-5df8e70ac04b} diff --git a/Foundation/samples/dir/dir_x64_vs100.vcxproj b/Foundation/samples/dir/dir_x64_vs100.vcxproj index bbff335a1..6a0f33954 100644 --- a/Foundation/samples/dir/dir_x64_vs100.vcxproj +++ b/Foundation/samples/dir/dir_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - dird - dird - dird - dir - dir - dir + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + dird + dird + dird + dir + dir + dir - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/dir/dir_x64_vs100.vcxproj.filters b/Foundation/samples/dir/dir_x64_vs100.vcxproj.filters index 7c2034eec..bf3df0db0 100644 --- a/Foundation/samples/dir/dir_x64_vs100.vcxproj.filters +++ b/Foundation/samples/dir/dir_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {108d73ac-326f-45ae-a167-9a0f5835b570} + {304c186c-7add-4688-a83d-cc8e4f8ce2be} - {59c61d73-b08f-4b59-b6c6-a93285a28a55} + {ab99160d-3bab-4a91-aa77-b64fd6b26624} diff --git a/Foundation/samples/dir/dir_x64_vs110.vcxproj b/Foundation/samples/dir/dir_x64_vs110.vcxproj index d1260bc4e..f36aac8ca 100644 --- a/Foundation/samples/dir/dir_x64_vs110.vcxproj +++ b/Foundation/samples/dir/dir_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - dird - dird - dird - dir - dir - dir + <_ProjectFileVersion>11.0.61030.0 + dird + dird + dird + dir + dir + dir - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/dir/dir_x64_vs110.vcxproj.filters b/Foundation/samples/dir/dir_x64_vs110.vcxproj.filters index cb07b4db7..a08ae2d65 100644 --- a/Foundation/samples/dir/dir_x64_vs110.vcxproj.filters +++ b/Foundation/samples/dir/dir_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {0f9afb97-81c2-40d6-ae32-1f370e1998a6} + {9cf35aeb-1b3f-4f44-b984-29a5232e8f83} - {47707546-a667-4662-ae59-b5dcbf41f179} + {6d63ad8c-b8a5-46f4-92b4-3c1cf1952317} diff --git a/Foundation/samples/dir/dir_x64_vs120.vcxproj b/Foundation/samples/dir/dir_x64_vs120.vcxproj index 709ecd5d6..beb8dc243 100644 --- a/Foundation/samples/dir/dir_x64_vs120.vcxproj +++ b/Foundation/samples/dir/dir_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ dir Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 dird dird dird @@ -111,6 +93,36 @@ dir dir + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/dir/dir_x64_vs120.vcxproj.filters b/Foundation/samples/dir/dir_x64_vs120.vcxproj.filters index cb07b4db7..df5d4feba 100644 --- a/Foundation/samples/dir/dir_x64_vs120.vcxproj.filters +++ b/Foundation/samples/dir/dir_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {0f9afb97-81c2-40d6-ae32-1f370e1998a6} + {539a061d-7931-49b8-be1c-525f1e6f44f1} - {47707546-a667-4662-ae59-b5dcbf41f179} + {2fb1822c-ae41-475c-8fdc-9cdbf0d04578} diff --git a/Foundation/samples/grep/grep_WEC2013_vs110.vcxproj.filters b/Foundation/samples/grep/grep_WEC2013_vs110.vcxproj.filters index 73f49b1c9..1a36fa640 100644 --- a/Foundation/samples/grep/grep_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/grep/grep_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {ceccd7f0-7389-4afd-9ed2-43e50d861f1c} + {2e864d33-2574-40c2-b74c-d07a237fa6a7} - {15594010-f06e-4487-908d-3cf8e92ee4fd} + {4f0936ee-d81d-4503-8b98-a7d6dc6db14e} diff --git a/Foundation/samples/grep/grep_vs100.vcxproj b/Foundation/samples/grep/grep_vs100.vcxproj index 63b46970f..d1661ad92 100644 --- a/Foundation/samples/grep/grep_vs100.vcxproj +++ b/Foundation/samples/grep/grep_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - grepd - grepd - grepd - grep - grep - grep + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + grepd + grepd + grepd + grep + grep + grep - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/grep/grep_vs100.vcxproj.filters b/Foundation/samples/grep/grep_vs100.vcxproj.filters index 249aaea56..57b8dfe3c 100644 --- a/Foundation/samples/grep/grep_vs100.vcxproj.filters +++ b/Foundation/samples/grep/grep_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {8b2caeb2-6da9-4397-8fa4-11b9f32d9534} + {e18e3843-3a52-45b9-8403-a24b4d17db84} - {806c5211-0d59-4afe-8846-c1c95f74197c} + {b922f7c7-46c4-48af-85a4-a29a58da93d5} diff --git a/Foundation/samples/grep/grep_vs110.vcxproj b/Foundation/samples/grep/grep_vs110.vcxproj index 7b86412e9..f224eec6e 100644 --- a/Foundation/samples/grep/grep_vs110.vcxproj +++ b/Foundation/samples/grep/grep_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - grepd - grepd - grepd - grep - grep - grep + <_ProjectFileVersion>11.0.61030.0 + grepd + grepd + grepd + grep + grep + grep - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/grep/grep_vs110.vcxproj.filters b/Foundation/samples/grep/grep_vs110.vcxproj.filters index 29ba4fda6..fea7feeea 100644 --- a/Foundation/samples/grep/grep_vs110.vcxproj.filters +++ b/Foundation/samples/grep/grep_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {5ade1455-b2ad-4c75-b103-ca68281181a4} + {ecccf1d6-2079-429f-ad48-f28132f43ed5} - {4ce4c08e-b7d3-41a2-9d7f-65633b088bb4} + {1940183a-5195-447b-9513-4d6048c60907} diff --git a/Foundation/samples/grep/grep_vs120.vcxproj b/Foundation/samples/grep/grep_vs120.vcxproj index cd649c578..4103b7b03 100644 --- a/Foundation/samples/grep/grep_vs120.vcxproj +++ b/Foundation/samples/grep/grep_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ grep Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 grepd grepd grepd @@ -111,6 +93,36 @@ grep grep + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/grep/grep_vs120.vcxproj.filters b/Foundation/samples/grep/grep_vs120.vcxproj.filters index 29ba4fda6..6913661bc 100644 --- a/Foundation/samples/grep/grep_vs120.vcxproj.filters +++ b/Foundation/samples/grep/grep_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {5ade1455-b2ad-4c75-b103-ca68281181a4} + {f334c4c0-2f1d-4410-bea5-3c6b4646f539} - {4ce4c08e-b7d3-41a2-9d7f-65633b088bb4} + {13a51739-c93f-4a3e-a8fe-08833671bdb7} diff --git a/Foundation/samples/grep/grep_x64_vs100.vcxproj b/Foundation/samples/grep/grep_x64_vs100.vcxproj index 823a5bef8..a428e1b69 100644 --- a/Foundation/samples/grep/grep_x64_vs100.vcxproj +++ b/Foundation/samples/grep/grep_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - grepd - grepd - grepd - grep - grep - grep + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + grepd + grepd + grepd + grep + grep + grep - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/grep/grep_x64_vs100.vcxproj.filters b/Foundation/samples/grep/grep_x64_vs100.vcxproj.filters index 016d0800d..a772eabdf 100644 --- a/Foundation/samples/grep/grep_x64_vs100.vcxproj.filters +++ b/Foundation/samples/grep/grep_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {ce652b7b-011a-49ef-9d38-db7e8b1012d2} + {54e7f75a-95fb-4bd9-85e4-2f3f392b2e72} - {4e82e4ce-df62-490c-bd4f-c53cda0cc3be} + {1fdf5e52-52d5-4dc2-a08c-5f35f072240d} diff --git a/Foundation/samples/grep/grep_x64_vs110.vcxproj b/Foundation/samples/grep/grep_x64_vs110.vcxproj index 08117b635..7481cdd63 100644 --- a/Foundation/samples/grep/grep_x64_vs110.vcxproj +++ b/Foundation/samples/grep/grep_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - grepd - grepd - grepd - grep - grep - grep + <_ProjectFileVersion>11.0.61030.0 + grepd + grepd + grepd + grep + grep + grep - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/grep/grep_x64_vs110.vcxproj.filters b/Foundation/samples/grep/grep_x64_vs110.vcxproj.filters index 34b2a566c..8f07f2271 100644 --- a/Foundation/samples/grep/grep_x64_vs110.vcxproj.filters +++ b/Foundation/samples/grep/grep_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {68844475-4d45-4508-a759-4a93d30939fa} + {46eb718e-30cf-4bb5-b5d0-8c251b8ca35b} - {f88adbbc-e8ba-44b9-b6fd-1f962268c6e0} + {f9825e7b-6f1a-414a-96a0-f5ed08bf544d} diff --git a/Foundation/samples/grep/grep_x64_vs120.vcxproj b/Foundation/samples/grep/grep_x64_vs120.vcxproj index 5a215036c..a22f31fe1 100644 --- a/Foundation/samples/grep/grep_x64_vs120.vcxproj +++ b/Foundation/samples/grep/grep_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ grep Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 grepd grepd grepd @@ -111,6 +93,36 @@ grep grep + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/grep/grep_x64_vs120.vcxproj.filters b/Foundation/samples/grep/grep_x64_vs120.vcxproj.filters index 34b2a566c..c94e61d93 100644 --- a/Foundation/samples/grep/grep_x64_vs120.vcxproj.filters +++ b/Foundation/samples/grep/grep_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {68844475-4d45-4508-a759-4a93d30939fa} + {c3957831-2f62-4e0d-a757-de3984d3fe48} - {f88adbbc-e8ba-44b9-b6fd-1f962268c6e0} + {f784a77a-3821-41e7-bb13-a99ee9591279} diff --git a/Foundation/samples/hmacmd5/hmacmd5_WEC2013_vs110.vcxproj.filters b/Foundation/samples/hmacmd5/hmacmd5_WEC2013_vs110.vcxproj.filters index cac093ffe..6f1dfd1b7 100644 --- a/Foundation/samples/hmacmd5/hmacmd5_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/hmacmd5/hmacmd5_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {40dd6094-5302-4e36-a2a6-80fff5a7f8d4} + {67b9c55f-b99d-4ed9-bbcf-575667c5d887} - {f0df1417-fbc1-4ddc-8268-23bc9b606c20} + {9f0e2cd7-e64c-4aad-bddc-fdeebc9fc870} diff --git a/Foundation/samples/hmacmd5/hmacmd5_vs100.vcxproj b/Foundation/samples/hmacmd5/hmacmd5_vs100.vcxproj index f749b6ba0..fc43df5b2 100644 --- a/Foundation/samples/hmacmd5/hmacmd5_vs100.vcxproj +++ b/Foundation/samples/hmacmd5/hmacmd5_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - hmacmd5d - hmacmd5d - hmacmd5d - hmacmd5 - hmacmd5 - hmacmd5 + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + hmacmd5d + hmacmd5d + hmacmd5d + hmacmd5 + hmacmd5 + hmacmd5 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/hmacmd5/hmacmd5_vs100.vcxproj.filters b/Foundation/samples/hmacmd5/hmacmd5_vs100.vcxproj.filters index 173741896..e8a08b833 100644 --- a/Foundation/samples/hmacmd5/hmacmd5_vs100.vcxproj.filters +++ b/Foundation/samples/hmacmd5/hmacmd5_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {dd2e320b-ab30-4837-8067-88c43ef877b8} + {bad01389-fe96-42f9-a78f-ffa73669ccc1} - {933e1715-2d3f-49ab-ad24-431c9d1c1c11} + {90c1e1d4-5599-44db-bfab-38a7e4f2aa6f} diff --git a/Foundation/samples/hmacmd5/hmacmd5_vs110.vcxproj b/Foundation/samples/hmacmd5/hmacmd5_vs110.vcxproj index de182ffe9..adf6a4bc8 100644 --- a/Foundation/samples/hmacmd5/hmacmd5_vs110.vcxproj +++ b/Foundation/samples/hmacmd5/hmacmd5_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - hmacmd5d - hmacmd5d - hmacmd5d - hmacmd5 - hmacmd5 - hmacmd5 + <_ProjectFileVersion>11.0.61030.0 + hmacmd5d + hmacmd5d + hmacmd5d + hmacmd5 + hmacmd5 + hmacmd5 - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/hmacmd5/hmacmd5_vs110.vcxproj.filters b/Foundation/samples/hmacmd5/hmacmd5_vs110.vcxproj.filters index a584ca155..e8fa84bb1 100644 --- a/Foundation/samples/hmacmd5/hmacmd5_vs110.vcxproj.filters +++ b/Foundation/samples/hmacmd5/hmacmd5_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {31f52845-3e3c-4a6d-9d9d-d46e2b627019} + {5bdae405-56d2-4803-89b6-f21c075bf1fe} - {48554054-a3df-42cf-91dd-03839805a06a} + {6569f9a4-036d-4809-8196-0606e05bf42c} diff --git a/Foundation/samples/hmacmd5/hmacmd5_vs120.vcxproj b/Foundation/samples/hmacmd5/hmacmd5_vs120.vcxproj index 383fe8ddf..49f29a71d 100644 --- a/Foundation/samples/hmacmd5/hmacmd5_vs120.vcxproj +++ b/Foundation/samples/hmacmd5/hmacmd5_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ hmacmd5 Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 hmacmd5d hmacmd5d hmacmd5d @@ -111,6 +93,36 @@ hmacmd5 hmacmd5 + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/hmacmd5/hmacmd5_vs120.vcxproj.filters b/Foundation/samples/hmacmd5/hmacmd5_vs120.vcxproj.filters index a584ca155..c5d208875 100644 --- a/Foundation/samples/hmacmd5/hmacmd5_vs120.vcxproj.filters +++ b/Foundation/samples/hmacmd5/hmacmd5_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {31f52845-3e3c-4a6d-9d9d-d46e2b627019} + {8c446fb4-86fe-4384-a8a7-c77ead167467} - {48554054-a3df-42cf-91dd-03839805a06a} + {a70d0f40-f8fc-4558-9e39-7371f532fb0d} diff --git a/Foundation/samples/hmacmd5/hmacmd5_x64_vs100.vcxproj b/Foundation/samples/hmacmd5/hmacmd5_x64_vs100.vcxproj index be5e14d31..c97fe8d32 100644 --- a/Foundation/samples/hmacmd5/hmacmd5_x64_vs100.vcxproj +++ b/Foundation/samples/hmacmd5/hmacmd5_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - hmacmd5d - hmacmd5d - hmacmd5d - hmacmd5 - hmacmd5 - hmacmd5 + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + hmacmd5d + hmacmd5d + hmacmd5d + hmacmd5 + hmacmd5 + hmacmd5 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/hmacmd5/hmacmd5_x64_vs100.vcxproj.filters b/Foundation/samples/hmacmd5/hmacmd5_x64_vs100.vcxproj.filters index 862bb7a59..6de851a71 100644 --- a/Foundation/samples/hmacmd5/hmacmd5_x64_vs100.vcxproj.filters +++ b/Foundation/samples/hmacmd5/hmacmd5_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {2293a953-07a5-4f5c-b115-8bd876daea15} + {f833c468-de4b-4c56-ae86-3a7f6191a06f} - {562b9809-5062-4db2-a96d-c8f8587a6634} + {0f884f3c-58b6-4702-99fb-6760f95691b8} diff --git a/Foundation/samples/hmacmd5/hmacmd5_x64_vs110.vcxproj b/Foundation/samples/hmacmd5/hmacmd5_x64_vs110.vcxproj index fc78aa028..30ba3b077 100644 --- a/Foundation/samples/hmacmd5/hmacmd5_x64_vs110.vcxproj +++ b/Foundation/samples/hmacmd5/hmacmd5_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - hmacmd5d - hmacmd5d - hmacmd5d - hmacmd5 - hmacmd5 - hmacmd5 + <_ProjectFileVersion>11.0.61030.0 + hmacmd5d + hmacmd5d + hmacmd5d + hmacmd5 + hmacmd5 + hmacmd5 - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/hmacmd5/hmacmd5_x64_vs110.vcxproj.filters b/Foundation/samples/hmacmd5/hmacmd5_x64_vs110.vcxproj.filters index e22b9a540..7f4df3751 100644 --- a/Foundation/samples/hmacmd5/hmacmd5_x64_vs110.vcxproj.filters +++ b/Foundation/samples/hmacmd5/hmacmd5_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {d58aa996-af64-4a61-bf84-19d7a9d4dedb} + {089d0d41-66ee-4907-b330-e268b7660116} - {7f9c9178-b314-4c05-b5b5-82d53193e8c6} + {e85a8cbd-5298-40cf-9130-1cae1b70cc2f} diff --git a/Foundation/samples/hmacmd5/hmacmd5_x64_vs120.vcxproj b/Foundation/samples/hmacmd5/hmacmd5_x64_vs120.vcxproj index e7e5f4a0f..1009cedb6 100644 --- a/Foundation/samples/hmacmd5/hmacmd5_x64_vs120.vcxproj +++ b/Foundation/samples/hmacmd5/hmacmd5_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ hmacmd5 Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 hmacmd5d hmacmd5d hmacmd5d @@ -111,6 +93,36 @@ hmacmd5 hmacmd5 + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/hmacmd5/hmacmd5_x64_vs120.vcxproj.filters b/Foundation/samples/hmacmd5/hmacmd5_x64_vs120.vcxproj.filters index e22b9a540..04ed26bc1 100644 --- a/Foundation/samples/hmacmd5/hmacmd5_x64_vs120.vcxproj.filters +++ b/Foundation/samples/hmacmd5/hmacmd5_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {d58aa996-af64-4a61-bf84-19d7a9d4dedb} + {1ab856bc-60b8-44e6-a61b-35cb8f5a1565} - {7f9c9178-b314-4c05-b5b5-82d53193e8c6} + {e3101099-30bb-4b02-82fd-13b2ebd0fe62} diff --git a/Foundation/samples/inflate/inflate_WEC2013_vs110.vcxproj.filters b/Foundation/samples/inflate/inflate_WEC2013_vs110.vcxproj.filters index eaed0856a..c7399aa36 100644 --- a/Foundation/samples/inflate/inflate_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/inflate/inflate_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {79f3a084-5a18-4df4-ba3f-df69a172df68} + {849b49d1-d125-4f36-b5a9-3d9c77cfb6b8} - {d44314c5-172a-4787-9095-fe5b00799b04} + {e8eaf924-4f0f-4c2c-b9d4-f8a272da424b} diff --git a/Foundation/samples/inflate/inflate_vs100.vcxproj b/Foundation/samples/inflate/inflate_vs100.vcxproj index 00ae32065..5d7a9f7db 100644 --- a/Foundation/samples/inflate/inflate_vs100.vcxproj +++ b/Foundation/samples/inflate/inflate_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - inflated - inflated - inflated - inflate - inflate - inflate + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + inflated + inflated + inflated + inflate + inflate + inflate - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/inflate/inflate_vs100.vcxproj.filters b/Foundation/samples/inflate/inflate_vs100.vcxproj.filters index d09206aeb..2157574d1 100644 --- a/Foundation/samples/inflate/inflate_vs100.vcxproj.filters +++ b/Foundation/samples/inflate/inflate_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {a405ef46-0b18-478d-a861-3f5f184368d9} + {f73adb36-75bd-473d-a14f-05bda2d77937} - {ad3d3074-3ad7-4248-93bc-b1820d3c9e83} + {9657606d-b3dd-42fd-9208-a052b1f686bc} diff --git a/Foundation/samples/inflate/inflate_vs110.vcxproj b/Foundation/samples/inflate/inflate_vs110.vcxproj index 87aebcb8a..d99737205 100644 --- a/Foundation/samples/inflate/inflate_vs110.vcxproj +++ b/Foundation/samples/inflate/inflate_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - inflated - inflated - inflated - inflate - inflate - inflate + <_ProjectFileVersion>11.0.61030.0 + inflated + inflated + inflated + inflate + inflate + inflate - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/inflate/inflate_vs110.vcxproj.filters b/Foundation/samples/inflate/inflate_vs110.vcxproj.filters index 5f1e86727..3f316f40f 100644 --- a/Foundation/samples/inflate/inflate_vs110.vcxproj.filters +++ b/Foundation/samples/inflate/inflate_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {442c0cc3-7f64-417a-bd61-ec5cab184aa9} + {b4ad9262-8f6f-43c0-9d13-23e922ab9edd} - {07c7c7ec-9aa0-43b1-91ec-610d4073d6b8} + {ba87ce75-db8e-4da3-913d-918bdc79f458} diff --git a/Foundation/samples/inflate/inflate_vs120.vcxproj b/Foundation/samples/inflate/inflate_vs120.vcxproj index 856e8a813..387030d02 100644 --- a/Foundation/samples/inflate/inflate_vs120.vcxproj +++ b/Foundation/samples/inflate/inflate_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ inflate Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 inflated inflated inflated @@ -111,6 +93,36 @@ inflate inflate + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/inflate/inflate_vs120.vcxproj.filters b/Foundation/samples/inflate/inflate_vs120.vcxproj.filters index 5f1e86727..eb3c153d4 100644 --- a/Foundation/samples/inflate/inflate_vs120.vcxproj.filters +++ b/Foundation/samples/inflate/inflate_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {442c0cc3-7f64-417a-bd61-ec5cab184aa9} + {a99249c1-6636-4513-bc8c-3af663a66510} - {07c7c7ec-9aa0-43b1-91ec-610d4073d6b8} + {4084b3ee-4a62-41fe-a60f-4bb7e88ebcb0} diff --git a/Foundation/samples/inflate/inflate_x64_vs100.vcxproj b/Foundation/samples/inflate/inflate_x64_vs100.vcxproj index c192d1c35..276dcf097 100644 --- a/Foundation/samples/inflate/inflate_x64_vs100.vcxproj +++ b/Foundation/samples/inflate/inflate_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - inflated - inflated - inflated - inflate - inflate - inflate + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + inflated + inflated + inflated + inflate + inflate + inflate - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/inflate/inflate_x64_vs100.vcxproj.filters b/Foundation/samples/inflate/inflate_x64_vs100.vcxproj.filters index e5394d345..b4f143265 100644 --- a/Foundation/samples/inflate/inflate_x64_vs100.vcxproj.filters +++ b/Foundation/samples/inflate/inflate_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {cf0f35e6-fb5c-4c0c-a48b-d640c4aeb579} + {860f1ba9-edd3-463e-b6a0-398924a29689} - {6adcd364-5fae-4a77-99f0-3c8af9252975} + {6a2563fe-4d07-4d8a-a023-8af8b88e6b61} diff --git a/Foundation/samples/inflate/inflate_x64_vs110.vcxproj b/Foundation/samples/inflate/inflate_x64_vs110.vcxproj index 1c616181c..68f4d5e56 100644 --- a/Foundation/samples/inflate/inflate_x64_vs110.vcxproj +++ b/Foundation/samples/inflate/inflate_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - inflated - inflated - inflated - inflate - inflate - inflate + <_ProjectFileVersion>11.0.61030.0 + inflated + inflated + inflated + inflate + inflate + inflate - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/inflate/inflate_x64_vs110.vcxproj.filters b/Foundation/samples/inflate/inflate_x64_vs110.vcxproj.filters index 07156f4d9..000df5c42 100644 --- a/Foundation/samples/inflate/inflate_x64_vs110.vcxproj.filters +++ b/Foundation/samples/inflate/inflate_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {23abf4a5-ecf3-415c-9f6b-928d732f67a3} + {48766881-886c-4e47-9652-935b6cba3924} - {289aee9d-b672-4b55-b06e-8ff9ba5e8b6c} + {b20d8230-cb65-48d1-8838-659a2b4747a0} diff --git a/Foundation/samples/inflate/inflate_x64_vs120.vcxproj b/Foundation/samples/inflate/inflate_x64_vs120.vcxproj index 564c22b7f..62332a56c 100644 --- a/Foundation/samples/inflate/inflate_x64_vs120.vcxproj +++ b/Foundation/samples/inflate/inflate_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ inflate Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 inflated inflated inflated @@ -111,6 +93,36 @@ inflate inflate + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/inflate/inflate_x64_vs120.vcxproj.filters b/Foundation/samples/inflate/inflate_x64_vs120.vcxproj.filters index 07156f4d9..3b30bdd48 100644 --- a/Foundation/samples/inflate/inflate_x64_vs120.vcxproj.filters +++ b/Foundation/samples/inflate/inflate_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {23abf4a5-ecf3-415c-9f6b-928d732f67a3} + {0e1aa2f8-709a-4fa5-9c63-27a8403c341d} - {289aee9d-b672-4b55-b06e-8ff9ba5e8b6c} + {3935ad81-7d9e-4313-9167-258a0eff646f} diff --git a/Foundation/samples/md5/md5_WEC2013_vs110.vcxproj.filters b/Foundation/samples/md5/md5_WEC2013_vs110.vcxproj.filters index a3b29c641..68f527d92 100644 --- a/Foundation/samples/md5/md5_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/md5/md5_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {b201491b-a800-4489-8909-61395e36b76b} + {0e0aaac6-2501-4db0-8a90-df32259cbfb2} - {3a7b87d3-3429-4a14-9297-5cb98b64e30f} + {2fdd3fd6-12aa-4ddb-855d-dec7d953655b} diff --git a/Foundation/samples/md5/md5_vs100.vcxproj b/Foundation/samples/md5/md5_vs100.vcxproj index 3bf739141..7f6a853ca 100644 --- a/Foundation/samples/md5/md5_vs100.vcxproj +++ b/Foundation/samples/md5/md5_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - md5d - md5d - md5d - md5 - md5 - md5 + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + md5d + md5d + md5d + md5 + md5 + md5 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/md5/md5_vs100.vcxproj.filters b/Foundation/samples/md5/md5_vs100.vcxproj.filters index 3e503ce1b..54879e2e6 100644 --- a/Foundation/samples/md5/md5_vs100.vcxproj.filters +++ b/Foundation/samples/md5/md5_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {0d305de0-ebe5-44fe-bfac-6a7570b41347} + {325746d9-7084-431b-b0fb-2742eed51623} - {b6934fec-557f-4d73-a72c-f571451448e6} + {ff4815ae-3cc4-4af7-9a72-62f34ba06b5d} diff --git a/Foundation/samples/md5/md5_vs110.vcxproj b/Foundation/samples/md5/md5_vs110.vcxproj index 6bc850c44..abf21462f 100644 --- a/Foundation/samples/md5/md5_vs110.vcxproj +++ b/Foundation/samples/md5/md5_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - md5d - md5d - md5d - md5 - md5 - md5 + <_ProjectFileVersion>11.0.61030.0 + md5d + md5d + md5d + md5 + md5 + md5 - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/md5/md5_vs110.vcxproj.filters b/Foundation/samples/md5/md5_vs110.vcxproj.filters index b259ade94..1c8b43db0 100644 --- a/Foundation/samples/md5/md5_vs110.vcxproj.filters +++ b/Foundation/samples/md5/md5_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {bc709184-5e05-4c5a-a600-ccf941b99d67} + {4b6d2fb7-7000-4c55-9e0e-4b9f4d60ed41} - {c16350f6-3396-4dbf-a2db-d4f90f0c0839} + {0cb337bc-6161-45c8-8eb7-e7e2429ca326} diff --git a/Foundation/samples/md5/md5_vs120.vcxproj b/Foundation/samples/md5/md5_vs120.vcxproj index 4ad646949..10a4fe0d8 100644 --- a/Foundation/samples/md5/md5_vs120.vcxproj +++ b/Foundation/samples/md5/md5_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ md5 Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 md5d md5d md5d @@ -111,6 +93,36 @@ md5 md5 + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/md5/md5_vs120.vcxproj.filters b/Foundation/samples/md5/md5_vs120.vcxproj.filters index b259ade94..64592b563 100644 --- a/Foundation/samples/md5/md5_vs120.vcxproj.filters +++ b/Foundation/samples/md5/md5_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {bc709184-5e05-4c5a-a600-ccf941b99d67} + {8b5d4c92-8949-43e6-87f4-c01c839d35d9} - {c16350f6-3396-4dbf-a2db-d4f90f0c0839} + {a2346819-e613-4924-92e8-544b6272971b} diff --git a/Foundation/samples/md5/md5_x64_vs100.vcxproj b/Foundation/samples/md5/md5_x64_vs100.vcxproj index 76d757c7d..7097534e0 100644 --- a/Foundation/samples/md5/md5_x64_vs100.vcxproj +++ b/Foundation/samples/md5/md5_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - md5d - md5d - md5d - md5 - md5 - md5 + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + md5d + md5d + md5d + md5 + md5 + md5 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/md5/md5_x64_vs100.vcxproj.filters b/Foundation/samples/md5/md5_x64_vs100.vcxproj.filters index d24f49702..0126fbc36 100644 --- a/Foundation/samples/md5/md5_x64_vs100.vcxproj.filters +++ b/Foundation/samples/md5/md5_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {d7552e65-30cf-4c98-941c-dfdbebc2b9fe} + {3898abf8-2bdc-495b-920b-65aa5ec9b2ea} - {0627f996-8102-4764-946d-88d5e17d42b3} + {41cee968-66fc-4884-9a5f-a3da2392d6be} diff --git a/Foundation/samples/md5/md5_x64_vs110.vcxproj b/Foundation/samples/md5/md5_x64_vs110.vcxproj index e32c93808..b7b101f11 100644 --- a/Foundation/samples/md5/md5_x64_vs110.vcxproj +++ b/Foundation/samples/md5/md5_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - md5d - md5d - md5d - md5 - md5 - md5 + <_ProjectFileVersion>11.0.61030.0 + md5d + md5d + md5d + md5 + md5 + md5 - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/md5/md5_x64_vs110.vcxproj.filters b/Foundation/samples/md5/md5_x64_vs110.vcxproj.filters index ef84fa343..51d9a9570 100644 --- a/Foundation/samples/md5/md5_x64_vs110.vcxproj.filters +++ b/Foundation/samples/md5/md5_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {bfc08b11-a5d3-439b-a01e-5cd0f6667157} + {26a2e844-0350-4312-b6a7-6b8d734ad33d} - {448e9d94-00ff-43e8-8a06-2d864394ea19} + {79e8e1b2-bacb-462f-80bc-4137131769a3} diff --git a/Foundation/samples/md5/md5_x64_vs120.vcxproj b/Foundation/samples/md5/md5_x64_vs120.vcxproj index 1a5cd0919..675bda9f2 100644 --- a/Foundation/samples/md5/md5_x64_vs120.vcxproj +++ b/Foundation/samples/md5/md5_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ md5 Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 md5d md5d md5d @@ -111,6 +93,36 @@ md5 md5 + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/md5/md5_x64_vs120.vcxproj.filters b/Foundation/samples/md5/md5_x64_vs120.vcxproj.filters index ef84fa343..3b72c550a 100644 --- a/Foundation/samples/md5/md5_x64_vs120.vcxproj.filters +++ b/Foundation/samples/md5/md5_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {bfc08b11-a5d3-439b-a01e-5cd0f6667157} + {37e6db6c-90ee-430c-9402-6d645c4a09b9} - {448e9d94-00ff-43e8-8a06-2d864394ea19} + {a74b10c7-ec99-4a7e-b33f-34435fad5a17} diff --git a/Foundation/samples/samples_vs100.sln b/Foundation/samples/samples_vs100.sln index 2fdeccf71..c6e3633e7 100644 --- a/Foundation/samples/samples_vs100.sln +++ b/Foundation/samples/samples_vs100.sln @@ -38,372 +38,358 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "URI", "URI\URI_vs100.vcxpro EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "uuidgen", "uuidgen\uuidgen_vs100.vcxproj", "{5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LineEndingConverter", "LineEndingConverter\LineEndingConverter_vs100.vcxproj", "{DE6C0663-A10A-4C85-85FD-C64897E84DA7}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_shared|Win32.Build.0 = debug_shared|Win32 {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_shared|Win32.ActiveCfg = release_shared|Win32 {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_shared|Win32.Build.0 = release_shared|Win32 {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_shared|Win32.Build.0 = debug_shared|Win32 {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_shared|Win32.ActiveCfg = release_shared|Win32 {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_shared|Win32.Build.0 = release_shared|Win32 {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_shared|Win32.Build.0 = debug_shared|Win32 {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_shared|Win32.ActiveCfg = release_shared|Win32 {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_shared|Win32.Build.0 = release_shared|Win32 {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_shared|Win32.Build.0 = debug_shared|Win32 {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_shared|Win32.ActiveCfg = release_shared|Win32 {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_shared|Win32.Build.0 = release_shared|Win32 {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_shared|Win32.Build.0 = debug_shared|Win32 {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {A5639B95-211B-36F1-994E-F05361C18EBF}.release_shared|Win32.ActiveCfg = release_shared|Win32 {A5639B95-211B-36F1-994E-F05361C18EBF}.release_shared|Win32.Build.0 = release_shared|Win32 {A5639B95-211B-36F1-994E-F05361C18EBF}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_shared|Win32.Build.0 = debug_shared|Win32 {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_shared|Win32.ActiveCfg = release_shared|Win32 {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_shared|Win32.Build.0 = release_shared|Win32 {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_shared|Win32.Build.0 = debug_shared|Win32 {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_shared|Win32.ActiveCfg = release_shared|Win32 {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_shared|Win32.Build.0 = release_shared|Win32 {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_shared|Win32.Build.0 = debug_shared|Win32 {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_shared|Win32.ActiveCfg = release_shared|Win32 {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_shared|Win32.Build.0 = release_shared|Win32 {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_shared|Win32.Build.0 = debug_shared|Win32 {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_shared|Win32.ActiveCfg = release_shared|Win32 {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_shared|Win32.Build.0 = release_shared|Win32 {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_shared|Win32.Build.0 = debug_shared|Win32 {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_shared|Win32.ActiveCfg = release_shared|Win32 {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_shared|Win32.Build.0 = release_shared|Win32 {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_shared|Win32.Build.0 = debug_shared|Win32 {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_shared|Win32.ActiveCfg = release_shared|Win32 {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_shared|Win32.Build.0 = release_shared|Win32 {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_shared|Win32.Build.0 = debug_shared|Win32 {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_shared|Win32.ActiveCfg = release_shared|Win32 {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_shared|Win32.Build.0 = release_shared|Win32 {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_shared|Win32.Build.0 = debug_shared|Win32 {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_shared|Win32.ActiveCfg = release_shared|Win32 {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_shared|Win32.Build.0 = release_shared|Win32 {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_shared|Win32.Build.0 = debug_shared|Win32 {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_shared|Win32.ActiveCfg = release_shared|Win32 {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_shared|Win32.Build.0 = release_shared|Win32 {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_shared|Win32.Build.0 = debug_shared|Win32 {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_shared|Win32.ActiveCfg = release_shared|Win32 {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_shared|Win32.Build.0 = release_shared|Win32 {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_shared|Win32.Build.0 = debug_shared|Win32 {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_shared|Win32.ActiveCfg = release_shared|Win32 {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_shared|Win32.Build.0 = release_shared|Win32 {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_shared|Win32.Build.0 = debug_shared|Win32 {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_shared|Win32.ActiveCfg = release_shared|Win32 {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_shared|Win32.Build.0 = release_shared|Win32 {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_shared|Win32.Build.0 = debug_shared|Win32 {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_shared|Win32.ActiveCfg = release_shared|Win32 {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_shared|Win32.Build.0 = release_shared|Win32 {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_shared|Win32.Build.0 = debug_shared|Win32 {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_shared|Win32.ActiveCfg = release_shared|Win32 {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_shared|Win32.Build.0 = release_shared|Win32 {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 - {DE6C0663-A10A-4C85-85FD-C64897E84DA7}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 - {DE6C0663-A10A-4C85-85FD-C64897E84DA7}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {DE6C0663-A10A-4C85-85FD-C64897E84DA7}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {DE6C0663-A10A-4C85-85FD-C64897E84DA7}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {DE6C0663-A10A-4C85-85FD-C64897E84DA7}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {DE6C0663-A10A-4C85-85FD-C64897E84DA7}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {DE6C0663-A10A-4C85-85FD-C64897E84DA7}.release_shared|Win32.ActiveCfg = release_shared|Win32 - {DE6C0663-A10A-4C85-85FD-C64897E84DA7}.release_shared|Win32.Build.0 = release_shared|Win32 - {DE6C0663-A10A-4C85-85FD-C64897E84DA7}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {DE6C0663-A10A-4C85-85FD-C64897E84DA7}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {DE6C0663-A10A-4C85-85FD-C64897E84DA7}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 - {DE6C0663-A10A-4C85-85FD-C64897E84DA7}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Foundation/samples/samples_vs120.sln b/Foundation/samples/samples_vs120.sln index 10293da9a..7bffd8624 100644 --- a/Foundation/samples/samples_vs120.sln +++ b/Foundation/samples/samples_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ActiveMethod", "ActiveMethod\ActiveMethod_vs120.vcxproj", "{F8B51F16-52AE-3D43-B55B-BD62ED422C2F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Activity", "Activity\Activity_vs120.vcxproj", "{479B938E-57EA-3332-AFD3-E7285DE4EB28}" diff --git a/Foundation/samples/samples_x64_vs120.sln b/Foundation/samples/samples_x64_vs120.sln index 0bf19992e..02dacf48a 100644 --- a/Foundation/samples/samples_x64_vs120.sln +++ b/Foundation/samples/samples_x64_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ActiveMethod", "ActiveMethod\ActiveMethod_x64_vs120.vcxproj", "{F8B51F16-52AE-3D43-B55B-BD62ED422C2F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Activity", "Activity\Activity_x64_vs120.vcxproj", "{479B938E-57EA-3332-AFD3-E7285DE4EB28}" diff --git a/Foundation/samples/uuidgen/uuidgen_WEC2013_vs110.vcxproj.filters b/Foundation/samples/uuidgen/uuidgen_WEC2013_vs110.vcxproj.filters index 5675c8ad6..16ef1b3d5 100644 --- a/Foundation/samples/uuidgen/uuidgen_WEC2013_vs110.vcxproj.filters +++ b/Foundation/samples/uuidgen/uuidgen_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {4e8c9ae4-bd4e-4b11-bad6-c26504c94aa6} + {5e5ded8b-4846-4a38-9ad0-19a335d3d3e4} - {6e702ace-5758-4333-b172-ad4ebd13dd27} + {60e91ad1-0032-4df8-950a-72242ddd83c9} diff --git a/Foundation/samples/uuidgen/uuidgen_vs100.vcxproj b/Foundation/samples/uuidgen/uuidgen_vs100.vcxproj index 31043ad96..c66e03127 100644 --- a/Foundation/samples/uuidgen/uuidgen_vs100.vcxproj +++ b/Foundation/samples/uuidgen/uuidgen_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - uuidgend - uuidgend - uuidgend - uuidgen - uuidgen - uuidgen + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + uuidgend + uuidgend + uuidgend + uuidgen + uuidgen + uuidgen - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/uuidgen/uuidgen_vs100.vcxproj.filters b/Foundation/samples/uuidgen/uuidgen_vs100.vcxproj.filters index 734c0612e..5a219e6e2 100644 --- a/Foundation/samples/uuidgen/uuidgen_vs100.vcxproj.filters +++ b/Foundation/samples/uuidgen/uuidgen_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {eba2fef0-88c1-41b8-8581-baf4912d934d} + {c71ee659-a8f8-40be-b19a-c47ed00cc093} - {a491e599-548f-4e21-972c-07ee000ff79b} + {4cf132a6-6af5-4451-aa8d-31c943de9d9e} diff --git a/Foundation/samples/uuidgen/uuidgen_vs110.vcxproj b/Foundation/samples/uuidgen/uuidgen_vs110.vcxproj index 5fdfae94e..84808a4d3 100644 --- a/Foundation/samples/uuidgen/uuidgen_vs110.vcxproj +++ b/Foundation/samples/uuidgen/uuidgen_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - uuidgend - uuidgend - uuidgend - uuidgen - uuidgen - uuidgen + <_ProjectFileVersion>11.0.61030.0 + uuidgend + uuidgend + uuidgend + uuidgen + uuidgen + uuidgen - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/uuidgen/uuidgen_vs110.vcxproj.filters b/Foundation/samples/uuidgen/uuidgen_vs110.vcxproj.filters index 1b08ab0dc..2e878c5b3 100644 --- a/Foundation/samples/uuidgen/uuidgen_vs110.vcxproj.filters +++ b/Foundation/samples/uuidgen/uuidgen_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {79645128-98fe-42a6-9cf5-e299a7f358ad} + {a5bd6fe6-59fb-4ce3-a80c-92b24993c119} - {60753008-48eb-4d95-bc9f-0026da98edec} + {ebc6c98a-5a6e-46b0-8455-b0c028e4612b} diff --git a/Foundation/samples/uuidgen/uuidgen_vs120.vcxproj b/Foundation/samples/uuidgen/uuidgen_vs120.vcxproj index fd63c4382..4e5578122 100644 --- a/Foundation/samples/uuidgen/uuidgen_vs120.vcxproj +++ b/Foundation/samples/uuidgen/uuidgen_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ uuidgen Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 uuidgend uuidgend uuidgend @@ -111,6 +93,36 @@ uuidgen uuidgen + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/uuidgen/uuidgen_vs120.vcxproj.filters b/Foundation/samples/uuidgen/uuidgen_vs120.vcxproj.filters index 1b08ab0dc..9f07c48d0 100644 --- a/Foundation/samples/uuidgen/uuidgen_vs120.vcxproj.filters +++ b/Foundation/samples/uuidgen/uuidgen_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {79645128-98fe-42a6-9cf5-e299a7f358ad} + {d85c2d77-881e-4a2e-8660-c873975219a6} - {60753008-48eb-4d95-bc9f-0026da98edec} + {2fba92f0-1731-4edb-943c-fa141e4cf931} diff --git a/Foundation/samples/uuidgen/uuidgen_x64_vs100.vcxproj b/Foundation/samples/uuidgen/uuidgen_x64_vs100.vcxproj index 1db59de54..39fc2daea 100644 --- a/Foundation/samples/uuidgen/uuidgen_x64_vs100.vcxproj +++ b/Foundation/samples/uuidgen/uuidgen_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - uuidgend - uuidgend - uuidgend - uuidgen - uuidgen - uuidgen + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + uuidgend + uuidgend + uuidgend + uuidgen + uuidgen + uuidgen - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Foundation/samples/uuidgen/uuidgen_x64_vs100.vcxproj.filters b/Foundation/samples/uuidgen/uuidgen_x64_vs100.vcxproj.filters index 0d08ea1f7..cadde3765 100644 --- a/Foundation/samples/uuidgen/uuidgen_x64_vs100.vcxproj.filters +++ b/Foundation/samples/uuidgen/uuidgen_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {54ffe43f-8c62-4bc2-adb8-9a8a16aad1f9} + {f5abf226-2a10-4f2c-a966-1a4906c1e73b} - {6f9507f1-e046-4b0f-bb84-accf4a89e9bd} + {cafecbae-69de-4cfc-85cc-336fdff403d2} diff --git a/Foundation/samples/uuidgen/uuidgen_x64_vs110.vcxproj b/Foundation/samples/uuidgen/uuidgen_x64_vs110.vcxproj index eb1a0b8e1..61f2e1411 100644 --- a/Foundation/samples/uuidgen/uuidgen_x64_vs110.vcxproj +++ b/Foundation/samples/uuidgen/uuidgen_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - uuidgend - uuidgend - uuidgend - uuidgen - uuidgen - uuidgen + <_ProjectFileVersion>11.0.61030.0 + uuidgend + uuidgend + uuidgend + uuidgen + uuidgen + uuidgen - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Foundation/samples/uuidgen/uuidgen_x64_vs110.vcxproj.filters b/Foundation/samples/uuidgen/uuidgen_x64_vs110.vcxproj.filters index 4788335d3..013886d03 100644 --- a/Foundation/samples/uuidgen/uuidgen_x64_vs110.vcxproj.filters +++ b/Foundation/samples/uuidgen/uuidgen_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {db64f4ca-cf4d-406f-8371-3151b228bad6} + {c9016e8c-52ef-4321-9d3e-3c2b1de61691} - {0d79ad07-2223-44c0-bb04-f47c71e22fbf} + {f4596ea0-94b8-45d8-99ef-fda1b9f468d7} diff --git a/Foundation/samples/uuidgen/uuidgen_x64_vs120.vcxproj b/Foundation/samples/uuidgen/uuidgen_x64_vs120.vcxproj index 8a048f137..9f788b91a 100644 --- a/Foundation/samples/uuidgen/uuidgen_x64_vs120.vcxproj +++ b/Foundation/samples/uuidgen/uuidgen_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ uuidgen Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 uuidgend uuidgend uuidgend @@ -111,6 +93,36 @@ uuidgen uuidgen + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Foundation/samples/uuidgen/uuidgen_x64_vs120.vcxproj.filters b/Foundation/samples/uuidgen/uuidgen_x64_vs120.vcxproj.filters index 4788335d3..e98fe899d 100644 --- a/Foundation/samples/uuidgen/uuidgen_x64_vs120.vcxproj.filters +++ b/Foundation/samples/uuidgen/uuidgen_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {db64f4ca-cf4d-406f-8371-3151b228bad6} + {56f79308-bc87-497c-b19c-d55d8e955630} - {0d79ad07-2223-44c0-bb04-f47c71e22fbf} + {e929b0de-1286-438a-9052-62de5b21836e} diff --git a/JSON/JSON_WEC2013_vs110.vcxproj.filters b/JSON/JSON_WEC2013_vs110.vcxproj.filters index 6691186f3..2804833ec 100644 --- a/JSON/JSON_WEC2013_vs110.vcxproj.filters +++ b/JSON/JSON_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {2d594763-eb5f-4660-8ba3-38eb7e6da227} + {dfcabf6f-94dc-449e-9593-79d51e277482} - {a06db085-b9fe-4483-a39d-4d07f0d8a8b8} + {b6a8b505-ea9f-4137-a9a0-ea0e4d85abf8} diff --git a/JSON/JSON_vs100.vcxproj b/JSON/JSON_vs100.vcxproj index 393e1ce78..08ff799e5 100644 --- a/JSON/JSON_vs100.vcxproj +++ b/JSON/JSON_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoJSONd - PocoJSONmdd - PocoJSONmtd - PocoJSON - PocoJSONmd - PocoJSONmt + ..\bin\ + obj\$(Configuration)\ + true + ..\bin\ + obj\$(Configuration)\ + false + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + PocoJSONd + PocoJSONmdd + PocoJSONmtd + PocoJSON + PocoJSONmd + PocoJSONmt - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib\PocoJSONmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib\PocoJSONmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib\PocoJSONmdd.lib - + Disabled OnlyExplicitInline diff --git a/JSON/JSON_vs100.vcxproj.filters b/JSON/JSON_vs100.vcxproj.filters index b803976b5..22904fa00 100644 --- a/JSON/JSON_vs100.vcxproj.filters +++ b/JSON/JSON_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {d6978c58-71cf-428b-acc5-f3e692e3fdfd} + {dd559b4a-8469-4796-bdbf-5708f68a6bd4} - {57c36c2e-ac8c-4cf9-a6b1-c19882d9a3f1} + {bfc9a21a-0b9e-41a5-91d2-a57343199157} diff --git a/JSON/JSON_vs110.vcxproj b/JSON/JSON_vs110.vcxproj index a9d9d7eaf..08e2ad59c 100644 --- a/JSON/JSON_vs110.vcxproj +++ b/JSON/JSON_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoJSONd - PocoJSONmdd - PocoJSONmtd - PocoJSON - PocoJSONmd - PocoJSONmt + <_ProjectFileVersion>11.0.61030.0 + PocoJSONd + PocoJSONmdd + PocoJSONmtd + PocoJSON + PocoJSONmd + PocoJSONmt - + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -124,10 +136,8 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoJSONd.dll true true @@ -138,7 +148,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -157,10 +167,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoJSON.dll true false @@ -172,7 +180,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,13 +198,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoJSONmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +222,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib\PocoJSONmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,13 +245,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoJSONmdd.lib - + Disabled OnlyExplicitInline @@ -265,10 +270,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\lib\PocoJSONmd.lib diff --git a/JSON/JSON_vs110.vcxproj.filters b/JSON/JSON_vs110.vcxproj.filters index c30596b56..f768f52ba 100644 --- a/JSON/JSON_vs110.vcxproj.filters +++ b/JSON/JSON_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {fc0d158f-de64-49cd-93d3-2398c02fa6e8} + {0088b6cb-46bf-473d-8ef4-3e95becbb39e} - {c17f36c6-24ad-4d1b-b402-1529e083e263} + {dfe09d58-556a-4dd9-9667-bb22b1c47c09} diff --git a/JSON/JSON_vs120.sln b/JSON/JSON_vs120.sln index 899e0547c..6781b15da 100644 --- a/JSON/JSON_vs120.sln +++ b/JSON/JSON_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "JSON", "JSON_vs120.vcxproj", "{0E7FE914-0690-3EB4-9119-93A97CC97741}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_vs120.vcxproj", "{96CF3103-E49E-3F5E-A11D-6DBCDA043053}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_shared|Win32.ActiveCfg = release_shared|Win32 {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_shared|Win32.Build.0 = release_shared|Win32 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|Win32.ActiveCfg = release_shared|Win32 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|Win32.Build.0 = release_shared|Win32 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/JSON/JSON_vs120.vcxproj b/JSON/JSON_vs120.vcxproj index 6d4a9b16b..be5d7c6cf 100644 --- a/JSON/JSON_vs120.vcxproj +++ b/JSON/JSON_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ JSON Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoJSONd PocoJSONmdd PocoJSONmtd @@ -107,6 +93,32 @@ PocoJSONmd PocoJSONmt + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + Disabled @@ -120,14 +132,12 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoJSONd.dll true true @@ -153,14 +163,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoJSON.dll true false @@ -185,12 +193,11 @@ true true true - + ..\lib\PocoJSONmtd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoJSONmtd.lib @@ -211,11 +218,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib\PocoJSONmt.lib @@ -234,12 +240,11 @@ true true true - + ..\lib\PocoJSONmdd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoJSONmdd.lib @@ -260,45 +265,43 @@ true true true - + ..\lib\PocoJSONmd.pdb Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\lib\PocoJSONmd.lib - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/JSON/JSON_vs120.vcxproj.filters b/JSON/JSON_vs120.vcxproj.filters index 83dd77c9d..79225975f 100644 --- a/JSON/JSON_vs120.vcxproj.filters +++ b/JSON/JSON_vs120.vcxproj.filters @@ -2,16 +2,19 @@ - {f95002f7-ceed-402b-9692-6b79535cd94e} + {ae51e2dd-3ab9-4bba-b922-05da8e1e5288} - {8d7e2a37-888a-4254-8d0c-b7909d1348b1} + {c511c422-7019-4915-a37d-4c38b9ca22f1} Source Files + + Source Files + Source Files @@ -39,9 +42,6 @@ Source Files - - Source Files - @@ -62,6 +62,9 @@ Header Files + + Header Files + Header Files @@ -77,8 +80,5 @@ Header Files - - Header Files - \ No newline at end of file diff --git a/JSON/JSON_x64_vs100.vcxproj b/JSON/JSON_x64_vs100.vcxproj index 3dd5a90d4..827a7e06e 100644 --- a/JSON/JSON_x64_vs100.vcxproj +++ b/JSON/JSON_x64_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoJSON64d - PocoJSONmdd - PocoJSONmtd - PocoJSON64 - PocoJSONmd - PocoJSONmt + ..\bin64\ + obj64\$(Configuration)\ + true + ..\bin64\ + obj64\$(Configuration)\ + false + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + PocoJSON64d + PocoJSONmdd + PocoJSONmtd + PocoJSON64 + PocoJSONmd + PocoJSONmt - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib64\PocoJSONmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib64\PocoJSONmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib64\PocoJSONmdd.lib - + Disabled OnlyExplicitInline diff --git a/JSON/JSON_x64_vs100.vcxproj.filters b/JSON/JSON_x64_vs100.vcxproj.filters index 87ac60530..b03434dc9 100644 --- a/JSON/JSON_x64_vs100.vcxproj.filters +++ b/JSON/JSON_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {c4aab195-64bc-47b9-b251-a46342f4cfa7} + {3a2b1554-bc65-452b-ac8c-4ccb5971e100} - {6c8dcddd-4014-4e49-b339-a01e3993491c} + {e67bafca-0784-40ac-bf9c-8c579b5a6732} diff --git a/JSON/JSON_x64_vs110.vcxproj b/JSON/JSON_x64_vs110.vcxproj index 9fd84d660..4b2156290 100644 --- a/JSON/JSON_x64_vs110.vcxproj +++ b/JSON/JSON_x64_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoJSON64d - PocoJSONmdd - PocoJSONmtd - PocoJSON64 - PocoJSONmd - PocoJSONmt + <_ProjectFileVersion>11.0.61030.0 + PocoJSON64d + PocoJSONmdd + PocoJSONmtd + PocoJSON64 + PocoJSONmd + PocoJSONmt - + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -124,10 +136,8 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoJSON64d.dll true true @@ -138,7 +148,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -157,10 +167,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoJSON64.dll true false @@ -172,7 +180,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,13 +198,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoJSONmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +222,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoJSONmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,13 +245,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoJSONmdd.lib - + Disabled OnlyExplicitInline @@ -264,7 +269,6 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoJSONmd.lib diff --git a/JSON/JSON_x64_vs110.vcxproj.filters b/JSON/JSON_x64_vs110.vcxproj.filters index 3f78c2be5..5b55380fc 100644 --- a/JSON/JSON_x64_vs110.vcxproj.filters +++ b/JSON/JSON_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {ab13cbc8-5746-43db-ab62-4a1892e98be5} + {aab49947-2628-47bf-8302-df26f5c282e5} - {d8c3d9f0-5f39-442e-83d4-c48eb0258309} + {1247d8aa-5094-49f9-a010-d8be12392dcf} diff --git a/JSON/JSON_x64_vs120.sln b/JSON/JSON_x64_vs120.sln index f17be311b..725beadf6 100644 --- a/JSON/JSON_x64_vs120.sln +++ b/JSON/JSON_x64_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "JSON", "JSON_x64_vs120.vcxproj", "{0E7FE914-0690-3EB4-9119-93A97CC97741}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_x64_vs120.vcxproj", "{96CF3103-E49E-3F5E-A11D-6DBCDA043053}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_shared|x64.ActiveCfg = debug_shared|x64 {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_shared|x64.Build.0 = debug_shared|x64 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_shared|x64.Deploy.0 = debug_shared|x64 {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_shared|x64.ActiveCfg = release_shared|x64 {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_shared|x64.Build.0 = release_shared|x64 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|x64.Build.0 = release_static_md|x64 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_shared|x64.Deploy.0 = release_shared|x64 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|x64.Build.0 = release_static_md|x64 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|x64.Deploy.0 = release_static_md|x64 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|x64.ActiveCfg = debug_shared|x64 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|x64.Build.0 = debug_shared|x64 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|x64.Deploy.0 = debug_shared|x64 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|x64.ActiveCfg = release_shared|x64 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|x64.Build.0 = release_shared|x64 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|x64.Build.0 = release_static_md|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|x64.Deploy.0 = release_shared|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|x64.Build.0 = release_static_md|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/JSON/JSON_x64_vs120.vcxproj b/JSON/JSON_x64_vs120.vcxproj index fdc6f8b1c..6f9974de4 100644 --- a/JSON/JSON_x64_vs120.vcxproj +++ b/JSON/JSON_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ JSON Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoJSON64d PocoJSONmdd PocoJSONmtd @@ -107,6 +93,32 @@ PocoJSONmd PocoJSONmt + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + Disabled @@ -120,14 +132,12 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoJSON64d.dll true true @@ -153,14 +163,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoJSON64.dll true false @@ -185,12 +193,11 @@ true true true - + ..\lib64\PocoJSONmtd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoJSONmtd.lib @@ -211,11 +218,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoJSONmt.lib @@ -234,12 +240,11 @@ true true true - + ..\lib64\PocoJSONmdd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoJSONmdd.lib @@ -260,43 +265,42 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoJSONmd.lib - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/JSON/JSON_x64_vs120.vcxproj.filters b/JSON/JSON_x64_vs120.vcxproj.filters index ff841ce16..b16d53db1 100644 --- a/JSON/JSON_x64_vs120.vcxproj.filters +++ b/JSON/JSON_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {bff7a40f-9ccb-4289-b576-d3294eadedca} + {dc76c326-046e-4801-b01c-a5e0263e012c} - {437cb1ec-dde2-4fa8-a1cf-3fefdbd1c523} + {c417115b-9910-420a-8bbe-c130161e1d10} diff --git a/JSON/samples/Benchmark/Benchmark_WEC2013_vs110.vcxproj.filters b/JSON/samples/Benchmark/Benchmark_WEC2013_vs110.vcxproj.filters index f3320c95f..5b698e42e 100644 --- a/JSON/samples/Benchmark/Benchmark_WEC2013_vs110.vcxproj.filters +++ b/JSON/samples/Benchmark/Benchmark_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {bad52a49-b9e7-46bc-848f-eead8b92f392} + {4d757c63-6a9d-4b84-b36b-f818d8e2c937} - {c956a382-edd4-4122-ab50-60c64c1d11d3} + {e0e3e590-f5dd-4c41-99d4-fc5c6b29f89c} diff --git a/JSON/samples/Benchmark/Benchmark_vs100.vcxproj b/JSON/samples/Benchmark/Benchmark_vs100.vcxproj index fe39ea91c..075154567 100644 --- a/JSON/samples/Benchmark/Benchmark_vs100.vcxproj +++ b/JSON/samples/Benchmark/Benchmark_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Benchmarkd - Benchmarkd - Benchmarkd - Benchmark - Benchmark - Benchmark + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + Benchmarkd + Benchmarkd + Benchmarkd + Benchmark + Benchmark + Benchmark - + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -127,7 +127,7 @@ ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\Benchmarkd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\Benchmarkd.pdb @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -159,7 +159,7 @@ ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\Benchmark.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -189,7 +189,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Benchmarkd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_mt\Benchmarkd.pdb @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -221,7 +221,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Benchmark.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -251,7 +251,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Benchmarkd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\Benchmarkd.pdb @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -283,7 +283,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Benchmark.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true diff --git a/JSON/samples/Benchmark/Benchmark_vs100.vcxproj.filters b/JSON/samples/Benchmark/Benchmark_vs100.vcxproj.filters index bc19e05b2..ca20d9faf 100644 --- a/JSON/samples/Benchmark/Benchmark_vs100.vcxproj.filters +++ b/JSON/samples/Benchmark/Benchmark_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {62192b3f-9834-403b-87ba-897bc109ece3} + {05e1b715-a51f-4422-9db5-0fda928e05cd} - {9854b008-0364-4550-9fcf-f4aea5df7303} + {3216c131-2d81-48b8-81b2-3fd53343cc20} diff --git a/JSON/samples/Benchmark/Benchmark_vs110.vcxproj b/JSON/samples/Benchmark/Benchmark_vs110.vcxproj index 638a3936d..20723ac67 100644 --- a/JSON/samples/Benchmark/Benchmark_vs110.vcxproj +++ b/JSON/samples/Benchmark/Benchmark_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Benchmarkd - Benchmarkd - Benchmarkd - Benchmark - Benchmark - Benchmark + <_ProjectFileVersion>11.0.61030.0 + Benchmarkd + Benchmarkd + Benchmarkd + Benchmark + Benchmark + Benchmark - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -128,12 +140,11 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\Benchmarkd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\Benchmarkd.pdb @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,12 +171,11 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\Benchmark.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -190,12 +200,11 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Benchmarkd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_mt\Benchmarkd.pdb @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,12 +231,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\Benchmark.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -252,12 +260,11 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Benchmarkd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\Benchmarkd.pdb @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,12 +291,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\Benchmark.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true diff --git a/JSON/samples/Benchmark/Benchmark_vs110.vcxproj.filters b/JSON/samples/Benchmark/Benchmark_vs110.vcxproj.filters index 1ae3f8ae4..7f865ae86 100644 --- a/JSON/samples/Benchmark/Benchmark_vs110.vcxproj.filters +++ b/JSON/samples/Benchmark/Benchmark_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {81762f0a-dd9f-481f-a886-ae400647ec27} + {a005d5d9-0c5e-43aa-8df4-4130bc2992c2} - {e1677155-8482-4769-8d65-df3efec83ee7} + {eed4b041-0858-4357-a759-8fa63db41470} diff --git a/JSON/samples/Benchmark/Benchmark_vs120.vcxproj b/JSON/samples/Benchmark/Benchmark_vs120.vcxproj index 897685f67..c5f959bc5 100644 --- a/JSON/samples/Benchmark/Benchmark_vs120.vcxproj +++ b/JSON/samples/Benchmark/Benchmark_vs120.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Benchmarkd - Benchmarkd - Benchmarkd - Benchmark - Benchmark - Benchmark + <_ProjectFileVersion>11.0.61030.0 + Benchmarkd + Benchmarkd + Benchmarkd + Benchmark + Benchmark + Benchmark - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/JSON/samples/Benchmark/Benchmark_vs120.vcxproj.filters b/JSON/samples/Benchmark/Benchmark_vs120.vcxproj.filters index 0867eab1f..9601ac2f6 100644 --- a/JSON/samples/Benchmark/Benchmark_vs120.vcxproj.filters +++ b/JSON/samples/Benchmark/Benchmark_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {b3f6581f-1959-42f8-97d6-e15672a6034d} + {44482784-e813-473c-a3cb-88cdcc4001ac} - {de478574-1bf1-4c1b-ba7e-173b67973828} + {2059bc39-33f1-41ac-9f47-847c390256c3} diff --git a/JSON/samples/Benchmark/Benchmark_x64_vs100.vcxproj b/JSON/samples/Benchmark/Benchmark_x64_vs100.vcxproj index e1e65e8c5..b0fc7cc2e 100644 --- a/JSON/samples/Benchmark/Benchmark_x64_vs100.vcxproj +++ b/JSON/samples/Benchmark/Benchmark_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Benchmarkd - Benchmarkd - Benchmarkd - Benchmark - Benchmark - Benchmark + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + Benchmarkd + Benchmarkd + Benchmarkd + Benchmark + Benchmark + Benchmark - + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -127,7 +127,7 @@ ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\Benchmarkd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\Benchmarkd.pdb @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -159,7 +159,7 @@ ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\Benchmark.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -189,7 +189,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Benchmarkd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_mt\Benchmarkd.pdb @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -221,7 +221,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Benchmark.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -251,7 +251,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Benchmarkd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\Benchmarkd.pdb @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -283,7 +283,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Benchmark.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true diff --git a/JSON/samples/Benchmark/Benchmark_x64_vs100.vcxproj.filters b/JSON/samples/Benchmark/Benchmark_x64_vs100.vcxproj.filters index 07ec04baf..a5faf97bc 100644 --- a/JSON/samples/Benchmark/Benchmark_x64_vs100.vcxproj.filters +++ b/JSON/samples/Benchmark/Benchmark_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {fdbd5539-981d-44a2-acf3-22704425671f} + {854ed207-c22a-4de6-9556-66cc29432cfb} - {6e356ad2-3136-4c21-a459-63924b84e7c4} + {bfd87585-d6c1-4cdb-afb7-a2e634ade5bf} diff --git a/JSON/samples/Benchmark/Benchmark_x64_vs110.vcxproj b/JSON/samples/Benchmark/Benchmark_x64_vs110.vcxproj index e8240627d..5937c60ef 100644 --- a/JSON/samples/Benchmark/Benchmark_x64_vs110.vcxproj +++ b/JSON/samples/Benchmark/Benchmark_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Benchmarkd - Benchmarkd - Benchmarkd - Benchmark - Benchmark - Benchmark + <_ProjectFileVersion>11.0.61030.0 + Benchmarkd + Benchmarkd + Benchmarkd + Benchmark + Benchmark + Benchmark - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -128,12 +140,11 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\Benchmarkd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\Benchmarkd.pdb @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,12 +171,11 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\Benchmark.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -190,12 +200,11 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Benchmarkd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_mt\Benchmarkd.pdb @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,12 +231,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\Benchmark.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -252,12 +260,11 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Benchmarkd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\Benchmarkd.pdb @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,12 +291,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\Benchmark.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true diff --git a/JSON/samples/Benchmark/Benchmark_x64_vs110.vcxproj.filters b/JSON/samples/Benchmark/Benchmark_x64_vs110.vcxproj.filters index 3d42b7793..fbeb3687f 100644 --- a/JSON/samples/Benchmark/Benchmark_x64_vs110.vcxproj.filters +++ b/JSON/samples/Benchmark/Benchmark_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {ff40d669-5446-4706-ae31-f2e7a93ed790} + {63d39a77-2ecc-4732-ad21-40d7b44cc978} - {67de3db6-9d3e-418d-ba03-08752f8da547} + {6a937745-b46c-4766-af5e-64f566dcf745} diff --git a/JSON/samples/Benchmark/Benchmark_x64_vs120.vcxproj b/JSON/samples/Benchmark/Benchmark_x64_vs120.vcxproj index 40eea1dd4..93ea9298e 100644 --- a/JSON/samples/Benchmark/Benchmark_x64_vs120.vcxproj +++ b/JSON/samples/Benchmark/Benchmark_x64_vs120.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Benchmarkd - Benchmarkd - Benchmarkd - Benchmark - Benchmark - Benchmark + <_ProjectFileVersion>11.0.61030.0 + Benchmarkd + Benchmarkd + Benchmarkd + Benchmark + Benchmark + Benchmark - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/JSON/samples/Benchmark/Benchmark_x64_vs120.vcxproj.filters b/JSON/samples/Benchmark/Benchmark_x64_vs120.vcxproj.filters index 4fb309110..f21e4f0d7 100644 --- a/JSON/samples/Benchmark/Benchmark_x64_vs120.vcxproj.filters +++ b/JSON/samples/Benchmark/Benchmark_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {20b39047-6b50-4624-bb54-6c1fae0d9bf0} + {8c0c0a7d-5e39-4a3e-87a2-b978f3e0dc62} - {c8cfad70-9dd3-47df-a14a-5500e64694a6} + {317c524d-adbf-42e4-bb75-a0f1c1952f89} diff --git a/JSON/samples/samples_vs120.sln b/JSON/samples/samples_vs120.sln index ed6fd9c6d..02454fc39 100644 --- a/JSON/samples/samples_vs120.sln +++ b/JSON/samples/samples_vs120.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Benchmark", "Benchmark\Benchmark_vs110.vcxproj", "{D0381ECF-E750-32DA-8EEF-92D56B172D15}" +# Visual Studio 2013 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Benchmark", "Benchmark\Benchmark_vs120.vcxproj", "{D0381ECF-E750-32DA-8EEF-92D56B172D15}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/JSON/samples/samples_x64_vs120.sln b/JSON/samples/samples_x64_vs120.sln index fb82bc54b..581a8b173 100644 --- a/JSON/samples/samples_x64_vs120.sln +++ b/JSON/samples/samples_x64_vs120.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Benchmark", "Benchmark\Benchmark_x64_vs110.vcxproj", "{D0381ECF-E750-32DA-8EEF-92D56B172D15}" +# Visual Studio 2013 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Benchmark", "Benchmark\Benchmark_x64_vs120.vcxproj", "{D0381ECF-E750-32DA-8EEF-92D56B172D15}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/JSON/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters b/JSON/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters index a1c3e6e22..744da828a 100644 --- a/JSON/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters +++ b/JSON/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {08bb2ab3-76c5-44c6-89cb-184b8d5d1add} + {a2e51080-6696-4167-8440-3c8e65b60246} - {8b74cc00-3246-41b5-b833-fd9cbe1bf173} + {a4f44c39-c4e8-4660-8860-196a0eef3e75} diff --git a/JSON/testsuite/TestSuite_vs100.vcxproj b/JSON/testsuite/TestSuite_vs100.vcxproj index 1e0c7025d..6e32028b3 100644 --- a/JSON/testsuite/TestSuite_vs100.vcxproj +++ b/JSON/testsuite/TestSuite_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/JSON/testsuite/TestSuite_vs100.vcxproj.filters b/JSON/testsuite/TestSuite_vs100.vcxproj.filters index 609878717..3b417f5e2 100644 --- a/JSON/testsuite/TestSuite_vs100.vcxproj.filters +++ b/JSON/testsuite/TestSuite_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {2e15ba20-e9f2-4d61-8e6a-6c6f12cf9277} + {b02953fa-ea82-4b1e-b1d6-aa76792928f6} - {33a90edd-4b32-401e-b52a-9115b236ed22} + {597bec18-4126-440a-87a2-529490e8421a} diff --git a/JSON/testsuite/TestSuite_vs110.vcxproj b/JSON/testsuite/TestSuite_vs110.vcxproj index 9e7f445b9..40c3e9eb8 100644 --- a/JSON/testsuite/TestSuite_vs110.vcxproj +++ b/JSON/testsuite/TestSuite_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/JSON/testsuite/TestSuite_vs110.vcxproj.filters b/JSON/testsuite/TestSuite_vs110.vcxproj.filters index def3bbced..0d5b9d52e 100644 --- a/JSON/testsuite/TestSuite_vs110.vcxproj.filters +++ b/JSON/testsuite/TestSuite_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {37a8e419-2bfa-4348-9bda-4e36426a1859} + {75351898-6213-499f-acec-af030b64bca4} - {eca3dd44-b857-4ec2-b903-90ec10fd9b05} + {73884cb3-7265-4936-ae26-cb4ac4181db6} diff --git a/JSON/testsuite/TestSuite_vs120.vcxproj b/JSON/testsuite/TestSuite_vs120.vcxproj index b6b09b1a5..b9d1c7679 100644 --- a/JSON/testsuite/TestSuite_vs120.vcxproj +++ b/JSON/testsuite/TestSuite_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Console + Windows MachineX86 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 @@ -192,21 +202,20 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Console + Windows MachineX86 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX86 @@ -256,20 +264,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Console + Windows MachineX86 @@ -288,32 +295,31 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 - - - + + + - - + + - - - \ No newline at end of file + + + diff --git a/JSON/testsuite/TestSuite_vs120.vcxproj.filters b/JSON/testsuite/TestSuite_vs120.vcxproj.filters index 2bcfcc546..145352e86 100644 --- a/JSON/testsuite/TestSuite_vs120.vcxproj.filters +++ b/JSON/testsuite/TestSuite_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {37a8e419-2bfa-4348-9bda-4e36426a1859} + {ec43aabe-0497-4737-a5e9-2755a2e57597} - {eca3dd44-b857-4ec2-b903-90ec10fd9b05} + {56bd69b9-ec88-4325-8cdf-b0d3d1ef86d0} @@ -15,7 +15,7 @@ Source Files - + Source Files diff --git a/JSON/testsuite/TestSuite_x64_vs100.vcxproj b/JSON/testsuite/TestSuite_x64_vs100.vcxproj index e0ac782dd..6facc4e20 100644 --- a/JSON/testsuite/TestSuite_x64_vs100.vcxproj +++ b/JSON/testsuite/TestSuite_x64_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/JSON/testsuite/TestSuite_x64_vs100.vcxproj.filters b/JSON/testsuite/TestSuite_x64_vs100.vcxproj.filters index 5a530946d..7706a9ca9 100644 --- a/JSON/testsuite/TestSuite_x64_vs100.vcxproj.filters +++ b/JSON/testsuite/TestSuite_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {a35aec2a-741c-46e5-a053-73c2a7c753f9} + {62430645-b830-4c34-9c52-67c2ae622e36} - {29e163e0-750e-4c7d-8f62-3ddd2a3bf78f} + {71d75e9c-92e4-481e-8928-1bdbc0f01a76} diff --git a/JSON/testsuite/TestSuite_x64_vs110.vcxproj b/JSON/testsuite/TestSuite_x64_vs110.vcxproj index 128b663a9..1bde1cbde 100644 --- a/JSON/testsuite/TestSuite_x64_vs110.vcxproj +++ b/JSON/testsuite/TestSuite_x64_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/JSON/testsuite/TestSuite_x64_vs110.vcxproj.filters b/JSON/testsuite/TestSuite_x64_vs110.vcxproj.filters index 23fe9d2eb..d3526417a 100644 --- a/JSON/testsuite/TestSuite_x64_vs110.vcxproj.filters +++ b/JSON/testsuite/TestSuite_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {7b7fcab4-f979-4078-954c-10e922767868} + {9fb5562b-3441-4404-a946-dfd292197aed} - {571764f5-cf3d-4856-bb7f-cd2dba4a2bd2} + {ebf2a7a4-52bd-4d4a-be44-b5e737135c19} diff --git a/JSON/testsuite/TestSuite_x64_vs120.vcxproj b/JSON/testsuite/TestSuite_x64_vs120.vcxproj index 505f320ec..dc6d5f3b7 100644 --- a/JSON/testsuite/TestSuite_x64_vs120.vcxproj +++ b/JSON/testsuite/TestSuite_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Console + Windows MachineX64 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 @@ -192,21 +202,20 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Console + Windows MachineX64 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX64 @@ -256,20 +264,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Console + Windows MachineX64 @@ -288,32 +295,31 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 - - - + + + - - + + - - - \ No newline at end of file + + + diff --git a/JSON/testsuite/TestSuite_x64_vs120.vcxproj.filters b/JSON/testsuite/TestSuite_x64_vs120.vcxproj.filters index 82dd4e923..6af8fdfe2 100644 --- a/JSON/testsuite/TestSuite_x64_vs120.vcxproj.filters +++ b/JSON/testsuite/TestSuite_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {7b7fcab4-f979-4078-954c-10e922767868} + {fbb72476-5eab-4b23-af4f-b96af98ff9be} - {571764f5-cf3d-4856-bb7f-cd2dba4a2bd2} + {440a4461-67bd-496c-b3d7-7033ab5a0f12} @@ -15,7 +15,7 @@ Source Files - + Source Files diff --git a/MongoDB/MongoDB.progen b/MongoDB/MongoDB.progen index 2061d66b6..e14377076 100644 --- a/MongoDB/MongoDB.progen +++ b/MongoDB/MongoDB.progen @@ -4,7 +4,7 @@ vc.project.target = Poco${vc.project.name} vc.project.type = library vc.project.pocobase = .. vc.project.outdir = ${vc.project.pocobase} -vc.project.platforms = Win32, x64, WinCE +vc.project.platforms = Win32, x64 vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md vc.project.prototype = ${vc.project.name}_vs90.vcproj vc.project.compiler.include = ..\\Foundation\\include;..\\Net\\include diff --git a/MongoDB/MongoDB_vs100.vcxproj b/MongoDB/MongoDB_vs100.vcxproj index 1e2d7600e..0f2f61262 100644 --- a/MongoDB/MongoDB_vs100.vcxproj +++ b/MongoDB/MongoDB_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoMongoDBd - PocoMongoDBmdd - PocoMongoDBmtd - PocoMongoDB - PocoMongoDBmd - PocoMongoDBmt + ..\bin\ + obj\$(Configuration)\ + true + ..\bin\ + obj\$(Configuration)\ + false + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + PocoMongoDBd + PocoMongoDBmdd + PocoMongoDBmtd + PocoMongoDB + PocoMongoDBmd + PocoMongoDBmt - + Disabled .\include;..\Foundation\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib\PocoMongoDBmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib\PocoMongoDBmt.lib - + Disabled .\include;..\Foundation\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib\PocoMongoDBmdd.lib - + Disabled OnlyExplicitInline diff --git a/MongoDB/MongoDB_vs100.vcxproj.filters b/MongoDB/MongoDB_vs100.vcxproj.filters index 391af9b28..88260b1f2 100644 --- a/MongoDB/MongoDB_vs100.vcxproj.filters +++ b/MongoDB/MongoDB_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {1e091261-c28c-4908-b245-2b96fbcaa643} + {a24c7488-c2d7-4e11-b73b-d5d3ec6f9baf} - {c74d80be-7bee-47a9-b492-66e9d309c96b} + {53818498-67ba-4499-a2a9-d1b76e175d35} diff --git a/MongoDB/MongoDB_vs110.vcxproj b/MongoDB/MongoDB_vs110.vcxproj index f5e89afc8..3fb401d20 100644 --- a/MongoDB/MongoDB_vs110.vcxproj +++ b/MongoDB/MongoDB_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoMongoDBd - PocoMongoDBmdd - PocoMongoDBmtd - PocoMongoDB - PocoMongoDBmd - PocoMongoDBmt + <_ProjectFileVersion>11.0.61030.0 + PocoMongoDBd + PocoMongoDBmdd + PocoMongoDBmtd + PocoMongoDB + PocoMongoDBmd + PocoMongoDBmt - + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + Disabled .\include;..\Foundation\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -124,10 +136,8 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoMongoDBd.dll true true @@ -138,7 +148,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -157,10 +167,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoMongoDB.dll true false @@ -172,7 +180,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -190,13 +198,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoMongoDBmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +222,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib\PocoMongoDBmt.lib - + Disabled .\include;..\Foundation\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -239,13 +245,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoMongoDBmdd.lib - + Disabled OnlyExplicitInline @@ -265,10 +270,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\lib\PocoMongoDBmd.lib diff --git a/MongoDB/MongoDB_vs110.vcxproj.filters b/MongoDB/MongoDB_vs110.vcxproj.filters index a35fe4a8a..90b3f75d9 100644 --- a/MongoDB/MongoDB_vs110.vcxproj.filters +++ b/MongoDB/MongoDB_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {fdf474d4-9b35-4efe-a9e3-8966ac61b507} + {8101ead2-5917-41f1-b397-8935dc482733} - {5aaf7e1d-32b2-44d2-b08a-fb62aeeafd25} + {0391e9bd-dc4b-4e45-b57c-e592b695b693} diff --git a/MongoDB/MongoDB_vs120.sln b/MongoDB/MongoDB_vs120.sln index 0c2bca01d..199eec625 100644 --- a/MongoDB/MongoDB_vs120.sln +++ b/MongoDB/MongoDB_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MongoDB", "MongoDB_vs120.vcxproj", "{4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_vs120.vcxproj", "{96CF3103-E49E-3F5E-A11D-6DBCDA043053}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_shared|Win32.ActiveCfg = release_shared|Win32 {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_shared|Win32.Build.0 = release_shared|Win32 - {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|Win32.ActiveCfg = release_shared|Win32 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|Win32.Build.0 = release_shared|Win32 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MongoDB/MongoDB_vs120.vcxproj b/MongoDB/MongoDB_vs120.vcxproj index 04fb86f83..335ba0666 100644 --- a/MongoDB/MongoDB_vs120.vcxproj +++ b/MongoDB/MongoDB_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ MongoDB Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoMongoDBd PocoMongoDBmdd PocoMongoDBmtd @@ -107,6 +93,32 @@ PocoMongoDBmd PocoMongoDBmt + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + Disabled @@ -120,14 +132,12 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoMongoDBd.dll true true @@ -153,14 +163,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoMongoDB.dll true false @@ -185,12 +193,11 @@ true true true - + ..\lib\PocoMongoDBmtd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoMongoDBmtd.lib @@ -211,11 +218,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib\PocoMongoDBmt.lib @@ -234,12 +240,11 @@ true true true - + ..\lib\PocoMongoDBmdd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoMongoDBmdd.lib @@ -260,68 +265,66 @@ true true true - + ..\lib\PocoMongoDBmd.pdb Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\lib\PocoMongoDBmd.lib - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/MongoDB/MongoDB_vs120.vcxproj.filters b/MongoDB/MongoDB_vs120.vcxproj.filters index a35fe4a8a..45a34cf7c 100644 --- a/MongoDB/MongoDB_vs120.vcxproj.filters +++ b/MongoDB/MongoDB_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {fdf474d4-9b35-4efe-a9e3-8966ac61b507} + {c6d2bb44-229c-4d82-bd1d-241b0d9986fd} - {5aaf7e1d-32b2-44d2-b08a-fb62aeeafd25} + {4eed0d5e-a7c9-4204-b155-edfff4d2654a} diff --git a/MongoDB/MongoDB_x64_vs100.vcxproj b/MongoDB/MongoDB_x64_vs100.vcxproj index c91b6830b..ea80cd9fc 100644 --- a/MongoDB/MongoDB_x64_vs100.vcxproj +++ b/MongoDB/MongoDB_x64_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoMongoDB64d - PocoMongoDBmdd - PocoMongoDBmtd - PocoMongoDB64 - PocoMongoDBmd - PocoMongoDBmt + ..\bin64\ + obj64\$(Configuration)\ + true + ..\bin64\ + obj64\$(Configuration)\ + false + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + PocoMongoDB64d + PocoMongoDBmdd + PocoMongoDBmtd + PocoMongoDB64 + PocoMongoDBmd + PocoMongoDBmt - + Disabled .\include;..\Foundation\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib64\PocoMongoDBmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib64\PocoMongoDBmt.lib - + Disabled .\include;..\Foundation\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib64\PocoMongoDBmdd.lib - + Disabled OnlyExplicitInline diff --git a/MongoDB/MongoDB_x64_vs100.vcxproj.filters b/MongoDB/MongoDB_x64_vs100.vcxproj.filters index 43ba9ef8e..32c660420 100644 --- a/MongoDB/MongoDB_x64_vs100.vcxproj.filters +++ b/MongoDB/MongoDB_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {40f67387-eb8e-40cc-bac9-491a05a2f22a} + {ea993335-5394-4a53-8fb9-e172ba9385bc} - {a9c9c661-84a2-4bce-ae54-1cd633e10250} + {ec871827-d0fa-4da1-8a71-b079d984938c} diff --git a/MongoDB/MongoDB_x64_vs110.vcxproj b/MongoDB/MongoDB_x64_vs110.vcxproj index 68050eb6c..a4d19a99a 100644 --- a/MongoDB/MongoDB_x64_vs110.vcxproj +++ b/MongoDB/MongoDB_x64_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoMongoDB64d - PocoMongoDBmdd - PocoMongoDBmtd - PocoMongoDB64 - PocoMongoDBmd - PocoMongoDBmt + <_ProjectFileVersion>11.0.61030.0 + PocoMongoDB64d + PocoMongoDBmdd + PocoMongoDBmtd + PocoMongoDB64 + PocoMongoDBmd + PocoMongoDBmt - + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + Disabled .\include;..\Foundation\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -124,10 +136,8 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoMongoDB64d.dll true true @@ -138,7 +148,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -157,10 +167,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoMongoDB64.dll true false @@ -172,7 +180,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -190,13 +198,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoMongoDBmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +222,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoMongoDBmt.lib - + Disabled .\include;..\Foundation\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -239,13 +245,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoMongoDBmdd.lib - + Disabled OnlyExplicitInline @@ -264,7 +269,6 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoMongoDBmd.lib diff --git a/MongoDB/MongoDB_x64_vs110.vcxproj.filters b/MongoDB/MongoDB_x64_vs110.vcxproj.filters index 731bf1110..107e93faa 100644 --- a/MongoDB/MongoDB_x64_vs110.vcxproj.filters +++ b/MongoDB/MongoDB_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {b64bd44b-2398-4ee9-9019-203b594421a0} + {70bc357a-aada-47cf-b4ad-ebe10bb55777} - {0299b91c-c0df-4a23-8030-da909b5d27d3} + {5a85b9b6-000c-46cb-83bc-9bd27c41aabf} diff --git a/MongoDB/MongoDB_x64_vs120.sln b/MongoDB/MongoDB_x64_vs120.sln index 5c575a300..6a3dd5415 100644 --- a/MongoDB/MongoDB_x64_vs120.sln +++ b/MongoDB/MongoDB_x64_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MongoDB", "MongoDB_x64_vs120.vcxproj", "{4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_x64_vs120.vcxproj", "{96CF3103-E49E-3F5E-A11D-6DBCDA043053}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_shared|x64.ActiveCfg = debug_shared|x64 {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_shared|x64.Build.0 = debug_shared|x64 - {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_shared|x64.Deploy.0 = debug_shared|x64 {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_shared|x64.ActiveCfg = release_shared|x64 {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_shared|x64.Build.0 = release_shared|x64 - {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_md|x64.Build.0 = release_static_md|x64 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_shared|x64.Deploy.0 = release_shared|x64 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_md|x64.Build.0 = release_static_md|x64 + {4FF2F34B-7F37-3ACD-AFBC-F21D6D426199}.release_static_md|x64.Deploy.0 = release_static_md|x64 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|x64.ActiveCfg = debug_shared|x64 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|x64.Build.0 = debug_shared|x64 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|x64.Deploy.0 = debug_shared|x64 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|x64.ActiveCfg = release_shared|x64 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|x64.Build.0 = release_shared|x64 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|x64.Build.0 = release_static_md|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|x64.Deploy.0 = release_shared|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|x64.Build.0 = release_static_md|x64 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MongoDB/MongoDB_x64_vs120.vcxproj b/MongoDB/MongoDB_x64_vs120.vcxproj index 61fa7e04b..de389a66a 100644 --- a/MongoDB/MongoDB_x64_vs120.vcxproj +++ b/MongoDB/MongoDB_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ MongoDB Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoMongoDB64d PocoMongoDBmdd PocoMongoDBmtd @@ -107,6 +93,32 @@ PocoMongoDBmd PocoMongoDBmt + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + Disabled @@ -120,14 +132,12 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoMongoDB64d.dll true true @@ -153,14 +163,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoMongoDB64.dll true false @@ -185,12 +193,11 @@ true true true - + ..\lib64\PocoMongoDBmtd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoMongoDBmtd.lib @@ -211,11 +218,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoMongoDBmt.lib @@ -234,12 +240,11 @@ true true true - + ..\lib64\PocoMongoDBmdd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoMongoDBmdd.lib @@ -260,66 +265,65 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoMongoDBmd.lib - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/MongoDB/MongoDB_x64_vs120.vcxproj.filters b/MongoDB/MongoDB_x64_vs120.vcxproj.filters index 731bf1110..7f8edd4d1 100644 --- a/MongoDB/MongoDB_x64_vs120.vcxproj.filters +++ b/MongoDB/MongoDB_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {b64bd44b-2398-4ee9-9019-203b594421a0} + {23856faa-440b-4afd-b2f0-f25984737e9d} - {0299b91c-c0df-4a23-8030-da909b5d27d3} + {14b579a0-b4b8-4132-be8f-9a9b6579bf69} diff --git a/MongoDB/samples/SQLToMongo/SQLToMongo.progen b/MongoDB/samples/SQLToMongo/SQLToMongo.progen index 7db3cd56a..e88f4cc27 100644 --- a/MongoDB/samples/SQLToMongo/SQLToMongo.progen +++ b/MongoDB/samples/SQLToMongo/SQLToMongo.progen @@ -3,7 +3,7 @@ vc.project.name = ${vc.project.baseName} vc.project.target = ${vc.project.name} vc.project.type = executable vc.project.pocobase = ..\\..\\.. -vc.project.platforms = Win32, x64, WinCE +vc.project.platforms = Win32, x64 vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md vc.project.prototype = ${vc.project.name}_vs90.vcproj vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\Net\\include;..\\..\\..\\MongoDB\\include diff --git a/MongoDB/samples/SQLToMongo/SQLToMongo_vs100.vcxproj b/MongoDB/samples/SQLToMongo/SQLToMongo_vs100.vcxproj index 80c0fee2a..e3ca730ec 100644 --- a/MongoDB/samples/SQLToMongo/SQLToMongo_vs100.vcxproj +++ b/MongoDB/samples/SQLToMongo/SQLToMongo_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - SQLToMongod - SQLToMongod - SQLToMongod - SQLToMongo - SQLToMongo - SQLToMongo + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + SQLToMongod + SQLToMongod + SQLToMongod + SQLToMongo + SQLToMongo + SQLToMongo - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) @@ -127,7 +127,7 @@ ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\SQLToMongod.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\SQLToMongod.pdb @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -159,7 +159,7 @@ ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\SQLToMongo.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) @@ -189,7 +189,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\SQLToMongod.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_mt\SQLToMongod.pdb @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -221,7 +221,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\SQLToMongo.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) @@ -251,7 +251,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\SQLToMongod.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\SQLToMongod.pdb @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -283,7 +283,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\SQLToMongo.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true diff --git a/MongoDB/samples/SQLToMongo/SQLToMongo_vs100.vcxproj.filters b/MongoDB/samples/SQLToMongo/SQLToMongo_vs100.vcxproj.filters index 895389ddf..b119d2f65 100644 --- a/MongoDB/samples/SQLToMongo/SQLToMongo_vs100.vcxproj.filters +++ b/MongoDB/samples/SQLToMongo/SQLToMongo_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {b9cce4d9-1836-4959-8386-aaa9acdaa9c6} + {4245f99a-11f3-4aba-91c7-116a78c82b76} - {c46759ba-6f8a-4f04-9533-4a7ea49ea287} + {b6a88229-1a23-4866-8365-12777585c1b3} diff --git a/MongoDB/samples/SQLToMongo/SQLToMongo_vs110.vcxproj b/MongoDB/samples/SQLToMongo/SQLToMongo_vs110.vcxproj index f118f696c..ad8b1d6cf 100644 --- a/MongoDB/samples/SQLToMongo/SQLToMongo_vs110.vcxproj +++ b/MongoDB/samples/SQLToMongo/SQLToMongo_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - SQLToMongod - SQLToMongod - SQLToMongod - SQLToMongo - SQLToMongo - SQLToMongo + <_ProjectFileVersion>11.0.61030.0 + SQLToMongod + SQLToMongod + SQLToMongod + SQLToMongo + SQLToMongo + SQLToMongo - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) @@ -128,12 +140,11 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\SQLToMongod.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\SQLToMongod.pdb @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,12 +171,11 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\SQLToMongo.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) @@ -190,12 +200,11 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\SQLToMongod.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_mt\SQLToMongod.pdb @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,12 +231,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\SQLToMongo.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) @@ -252,12 +260,11 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\SQLToMongod.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\SQLToMongod.pdb @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,12 +291,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\SQLToMongo.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true diff --git a/MongoDB/samples/SQLToMongo/SQLToMongo_vs110.vcxproj.filters b/MongoDB/samples/SQLToMongo/SQLToMongo_vs110.vcxproj.filters index 8fdf25d37..b3c015b34 100644 --- a/MongoDB/samples/SQLToMongo/SQLToMongo_vs110.vcxproj.filters +++ b/MongoDB/samples/SQLToMongo/SQLToMongo_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {dd54cef8-110d-4c5e-b976-089e531012ae} + {4c038010-8d8b-4103-b4a2-a555a5feeef6} - {18756a09-37f4-4194-afc1-f9337286ca3c} + {bf22b72a-1910-42c8-beb7-9a3e18d68149} diff --git a/MongoDB/samples/SQLToMongo/SQLToMongo_vs120.vcxproj b/MongoDB/samples/SQLToMongo/SQLToMongo_vs120.vcxproj index 3856457ad..9f0b660e2 100644 --- a/MongoDB/samples/SQLToMongo/SQLToMongo_vs120.vcxproj +++ b/MongoDB/samples/SQLToMongo/SQLToMongo_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -28,11 +28,11 @@ SQLToMongo - {D0381ECF-E750-32DA-8EEF-92D56B172D15} + {638D0833-8E84-3A67-BD00-4611F99E65AF} SQLToMongo Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 SQLToMongod SQLToMongod SQLToMongod @@ -111,10 +93,40 @@ SQLToMongo SQLToMongo + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled - .\include;..\..\..\Foundation\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true true @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -148,7 +159,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -176,7 +186,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -210,7 +219,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -238,7 +246,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,7 +279,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/MongoDB/samples/SQLToMongo/SQLToMongo_vs120.vcxproj.filters b/MongoDB/samples/SQLToMongo/SQLToMongo_vs120.vcxproj.filters index 185266d06..f20db1f9e 100644 --- a/MongoDB/samples/SQLToMongo/SQLToMongo_vs120.vcxproj.filters +++ b/MongoDB/samples/SQLToMongo/SQLToMongo_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {b3f6581f-1959-42f8-97d6-e15672a6034d} + {9e558ddd-7a25-49f9-bc04-c9af392db950} - {de478574-1bf1-4c1b-ba7e-173b67973828} + {c107508d-755e-4c5f-be31-cb4f9712960a} diff --git a/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs100.vcxproj b/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs100.vcxproj index 99a771602..d6796b91d 100644 --- a/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs100.vcxproj +++ b/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - SQLToMongod - SQLToMongod - SQLToMongod - SQLToMongo - SQLToMongo - SQLToMongo + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + SQLToMongod + SQLToMongod + SQLToMongod + SQLToMongo + SQLToMongo + SQLToMongo - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) @@ -127,7 +127,7 @@ ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\SQLToMongod.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\SQLToMongod.pdb @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -159,7 +159,7 @@ ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\SQLToMongo.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) @@ -189,7 +189,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\SQLToMongod.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_mt\SQLToMongod.pdb @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -221,7 +221,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\SQLToMongo.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) @@ -251,7 +251,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\SQLToMongod.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\SQLToMongod.pdb @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -283,7 +283,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\SQLToMongo.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true diff --git a/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs100.vcxproj.filters b/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs100.vcxproj.filters index c6b940311..27bcd00f4 100644 --- a/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs100.vcxproj.filters +++ b/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {0e9a004a-40f7-4f4b-9181-51c1232eeb41} + {1e30397f-248c-48a1-a051-dd8706976368} - {1b7c757a-fd05-427d-bd9b-244aa274c9c9} + {2205c141-dbea-4677-a3e4-98de4b0621bf} diff --git a/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs110.vcxproj b/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs110.vcxproj index 52a0f42d7..e6576ff11 100644 --- a/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs110.vcxproj +++ b/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - SQLToMongod - SQLToMongod - SQLToMongod - SQLToMongo - SQLToMongo - SQLToMongo + <_ProjectFileVersion>11.0.61030.0 + SQLToMongod + SQLToMongod + SQLToMongod + SQLToMongo + SQLToMongo + SQLToMongo - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) @@ -128,12 +140,11 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\SQLToMongod.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\SQLToMongod.pdb @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,12 +171,11 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\SQLToMongo.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) @@ -190,12 +200,11 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\SQLToMongod.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_mt\SQLToMongod.pdb @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,12 +231,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\SQLToMongo.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) @@ -252,12 +260,11 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\SQLToMongod.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\SQLToMongod.pdb @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,12 +291,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\SQLToMongo.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true diff --git a/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs110.vcxproj.filters b/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs110.vcxproj.filters index 432b21ad5..4cbb9cb87 100644 --- a/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs110.vcxproj.filters +++ b/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {4d48d16f-3b7e-47ab-b827-693996456c13} + {eeb09b6c-1d62-4201-9206-45e27ffdff9e} - {855746b9-3b64-4dd4-8120-a87ae4dbcffe} + {f140d96a-b2dc-497c-996e-bdee9b8b645f} diff --git a/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs120.vcxproj b/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs120.vcxproj index 3d4ddc996..482306e3d 100644 --- a/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs120.vcxproj +++ b/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -28,11 +28,11 @@ SQLToMongo - {D0381ECF-E750-32DA-8EEF-92D56B172D15} + {638D0833-8E84-3A67-BD00-4611F99E65AF} SQLToMongo Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 SQLToMongod SQLToMongod SQLToMongod @@ -111,10 +93,40 @@ SQLToMongo SQLToMongo + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled - .\include;..\..\..\Foundation\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true true @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -148,7 +159,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -176,7 +186,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -210,7 +219,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -238,7 +246,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,7 +279,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\Net\include;..\..\..\MongoDB\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs120.vcxproj.filters b/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs120.vcxproj.filters index a4e222303..20f9c322a 100644 --- a/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs120.vcxproj.filters +++ b/MongoDB/samples/SQLToMongo/SQLToMongo_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {20b39047-6b50-4624-bb54-6c1fae0d9bf0} + {9724cdaf-97a2-4fd3-a2fd-9a11d426111d} - {c8cfad70-9dd3-47df-a14a-5500e64694a6} + {807fce24-303b-4f6c-aeb0-43c79295b948} diff --git a/MongoDB/samples/samples.progen b/MongoDB/samples/samples.progen index 81edd93a5..73c45f166 100644 --- a/MongoDB/samples/samples.progen +++ b/MongoDB/samples/samples.progen @@ -1,4 +1,4 @@ -vc.project.platforms = Win32, x64, WinCE +vc.project.platforms = Win32, x64 vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md vc.solution.create = true vc.solution.include = \ diff --git a/MongoDB/samples/samples_vs100.sln b/MongoDB/samples/samples_vs100.sln index 5e33a6046..0388498bc 100644 --- a/MongoDB/samples/samples_vs100.sln +++ b/MongoDB/samples/samples_vs100.sln @@ -1,35 +1,35 @@ Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLToMongo", "SQLToMongo\SQLToMongo_vs100.vcxproj", "{D0381ECF-E750-32DA-8EEF-92D56B172D15}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLToMongo", "SQLToMongo\SQLToMongo_vs100.vcxproj", "{638D0833-8E84-3A67-BD00-4611F99E65AF}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|Win32.ActiveCfg = release_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|Win32.Build.0 = release_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|Win32.ActiveCfg = release_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|Win32.Build.0 = release_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MongoDB/samples/samples_vs110.sln b/MongoDB/samples/samples_vs110.sln index 49d7879df..96f4b8e8a 100644 --- a/MongoDB/samples/samples_vs110.sln +++ b/MongoDB/samples/samples_vs110.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2012 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLToMongo", "SQLToMongo\SQLToMongo_vs110.vcxproj", "{D0381ECF-E750-32DA-8EEF-92D56B172D15}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLToMongo", "SQLToMongo\SQLToMongo_vs110.vcxproj", "{638D0833-8E84-3A67-BD00-4611F99E65AF}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -12,24 +12,24 @@ Global release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|Win32.ActiveCfg = release_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|Win32.Build.0 = release_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|Win32.ActiveCfg = release_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|Win32.Build.0 = release_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MongoDB/samples/samples_vs120.sln b/MongoDB/samples/samples_vs120.sln index 81d4f2e07..10613c6bb 100644 --- a/MongoDB/samples/samples_vs120.sln +++ b/MongoDB/samples/samples_vs120.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLToMongo", "SQLToMongo\SQLToMongo_vs120.vcxproj", "{D0381ECF-E750-32DA-8EEF-92D56B172D15}" +# Visual Studio 2013 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLToMongo", "SQLToMongo\SQLToMongo_vs120.vcxproj", "{638D0833-8E84-3A67-BD00-4611F99E65AF}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -12,24 +12,24 @@ Global release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|Win32.ActiveCfg = release_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|Win32.Build.0 = release_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|Win32.ActiveCfg = release_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|Win32.Build.0 = release_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MongoDB/samples/samples_x64_vs100.sln b/MongoDB/samples/samples_x64_vs100.sln index a4c95a28b..db34520f3 100644 --- a/MongoDB/samples/samples_x64_vs100.sln +++ b/MongoDB/samples/samples_x64_vs100.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLToMongo", "SQLToMongo\SQLToMongo_x64_vs100.vcxproj", "{D0381ECF-E750-32DA-8EEF-92D56B172D15}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLToMongo", "SQLToMongo\SQLToMongo_x64_vs100.vcxproj", "{638D0833-8E84-3A67-BD00-4611F99E65AF}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -12,24 +12,24 @@ Global release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|x64.ActiveCfg = debug_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|x64.Build.0 = debug_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|x64.Deploy.0 = debug_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|x64.ActiveCfg = release_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|x64.Build.0 = release_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|x64.Deploy.0 = release_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|x64.Build.0 = release_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|x64.Build.0 = release_static_md|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|x64.Deploy.0 = release_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|x64.ActiveCfg = debug_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|x64.Build.0 = debug_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|x64.Deploy.0 = debug_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|x64.ActiveCfg = release_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|x64.Build.0 = release_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|x64.Deploy.0 = release_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|x64.Build.0 = release_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MongoDB/samples/samples_x64_vs110.sln b/MongoDB/samples/samples_x64_vs110.sln index fde57c54e..d74c0516e 100644 --- a/MongoDB/samples/samples_x64_vs110.sln +++ b/MongoDB/samples/samples_x64_vs110.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2012 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLToMongo", "SQLToMongo\SQLToMongo_x64_vs110.vcxproj", "{D0381ECF-E750-32DA-8EEF-92D56B172D15}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLToMongo", "SQLToMongo\SQLToMongo_x64_vs110.vcxproj", "{638D0833-8E84-3A67-BD00-4611F99E65AF}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -12,24 +12,24 @@ Global release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|x64.ActiveCfg = debug_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|x64.Build.0 = debug_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|x64.Deploy.0 = debug_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|x64.ActiveCfg = release_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|x64.Build.0 = release_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|x64.Deploy.0 = release_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|x64.Build.0 = release_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|x64.Build.0 = release_static_md|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|x64.Deploy.0 = release_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|x64.ActiveCfg = debug_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|x64.Build.0 = debug_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|x64.Deploy.0 = debug_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|x64.ActiveCfg = release_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|x64.Build.0 = release_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|x64.Deploy.0 = release_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|x64.Build.0 = release_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MongoDB/samples/samples_x64_vs120.sln b/MongoDB/samples/samples_x64_vs120.sln index 1f2e98fef..60b27db8a 100644 --- a/MongoDB/samples/samples_x64_vs120.sln +++ b/MongoDB/samples/samples_x64_vs120.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLToMongo", "SQLToMongo\SQLToMongo_x64_vs120.vcxproj", "{D0381ECF-E750-32DA-8EEF-92D56B172D15}" +# Visual Studio 2013 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLToMongo", "SQLToMongo\SQLToMongo_x64_vs120.vcxproj", "{638D0833-8E84-3A67-BD00-4611F99E65AF}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -12,24 +12,24 @@ Global release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|x64.ActiveCfg = debug_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|x64.Build.0 = debug_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|x64.Deploy.0 = debug_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|x64.ActiveCfg = release_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|x64.Build.0 = release_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|x64.Deploy.0 = release_shared|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|x64.Build.0 = release_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|x64.Build.0 = release_static_md|x64 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|x64.Deploy.0 = release_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|x64.ActiveCfg = debug_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|x64.Build.0 = debug_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_shared|x64.Deploy.0 = debug_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|x64.ActiveCfg = release_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|x64.Build.0 = release_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_shared|x64.Deploy.0 = release_shared|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|x64.Build.0 = release_static_md|x64 + {638D0833-8E84-3A67-BD00-4611F99E65AF}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MongoDB/testsuite/TestSuite.progen b/MongoDB/testsuite/TestSuite.progen index 3650f3308..d55b05017 100644 --- a/MongoDB/testsuite/TestSuite.progen +++ b/MongoDB/testsuite/TestSuite.progen @@ -3,7 +3,7 @@ vc.project.name = TestSuite vc.project.target = TestSuite vc.project.type = testsuite vc.project.pocobase = ..\\.. -vc.project.platforms = Win32, x64, WinCE +vc.project.platforms = Win32, x64 vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md vc.project.prototype = TestSuite_vs90.vcproj vc.project.compiler.include = ..\\..\\Foundation\\include;..\\..\\Net\\include diff --git a/MongoDB/testsuite/TestSuite_vs100.vcxproj b/MongoDB/testsuite/TestSuite_vs100.vcxproj index 7cd539894..54fe2d8fd 100644 --- a/MongoDB/testsuite/TestSuite_vs100.vcxproj +++ b/MongoDB/testsuite/TestSuite_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/MongoDB/testsuite/TestSuite_vs100.vcxproj.filters b/MongoDB/testsuite/TestSuite_vs100.vcxproj.filters index 329990f6b..e2a0d4010 100644 --- a/MongoDB/testsuite/TestSuite_vs100.vcxproj.filters +++ b/MongoDB/testsuite/TestSuite_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {af6a75bd-a85d-4948-977f-90f3d860d315} + {cf9d72d9-d3a9-41d2-97fe-da7ac70e704f} - {90815c6c-2974-4226-a101-a25f644ece0f} + {b50ee78f-dd9a-419a-bf2e-f5536ea597d8} diff --git a/MongoDB/testsuite/TestSuite_vs110.vcxproj b/MongoDB/testsuite/TestSuite_vs110.vcxproj index 7e65d6fbe..cc2d68706 100644 --- a/MongoDB/testsuite/TestSuite_vs110.vcxproj +++ b/MongoDB/testsuite/TestSuite_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/MongoDB/testsuite/TestSuite_vs110.vcxproj.filters b/MongoDB/testsuite/TestSuite_vs110.vcxproj.filters index e0564e59c..69f34866a 100644 --- a/MongoDB/testsuite/TestSuite_vs110.vcxproj.filters +++ b/MongoDB/testsuite/TestSuite_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {df51779e-54e7-430d-9ff9-c030eecdbf46} + {b0fb6af8-f968-45bc-9e77-b66e0e513d10} - {67932d17-21c2-4d1a-90cb-a8ef0d1621c8} + {73df8966-c459-42f0-b747-65b7c8d3e367} diff --git a/MongoDB/testsuite/TestSuite_vs120.vcxproj b/MongoDB/testsuite/TestSuite_vs120.vcxproj index 7efae4064..1916f1e9d 100644 --- a/MongoDB/testsuite/TestSuite_vs120.vcxproj +++ b/MongoDB/testsuite/TestSuite_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Console + Windows MachineX86 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 @@ -192,21 +202,20 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Console + Windows MachineX86 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX86 @@ -256,20 +264,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Console + Windows MachineX86 @@ -288,32 +295,31 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 - - - + + + - - + + - - - \ No newline at end of file + + + diff --git a/MongoDB/testsuite/TestSuite_vs120.vcxproj.filters b/MongoDB/testsuite/TestSuite_vs120.vcxproj.filters index af14b9d11..04baed3e9 100644 --- a/MongoDB/testsuite/TestSuite_vs120.vcxproj.filters +++ b/MongoDB/testsuite/TestSuite_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {df51779e-54e7-430d-9ff9-c030eecdbf46} + {1af26d46-560b-4654-930a-fe3b8805a052} - {67932d17-21c2-4d1a-90cb-a8ef0d1621c8} + {8b608251-4177-4185-8421-bbedd2a03ba8} @@ -15,7 +15,7 @@ Source Files - + Source Files diff --git a/MongoDB/testsuite/TestSuite_x64_vs100.vcxproj b/MongoDB/testsuite/TestSuite_x64_vs100.vcxproj index 117f6e958..83b691cbf 100644 --- a/MongoDB/testsuite/TestSuite_x64_vs100.vcxproj +++ b/MongoDB/testsuite/TestSuite_x64_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/MongoDB/testsuite/TestSuite_x64_vs100.vcxproj.filters b/MongoDB/testsuite/TestSuite_x64_vs100.vcxproj.filters index 923e627ff..72044e95f 100644 --- a/MongoDB/testsuite/TestSuite_x64_vs100.vcxproj.filters +++ b/MongoDB/testsuite/TestSuite_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {41fcdf30-1f9e-4585-82c2-661d15eefed3} + {1904e5d6-4676-4c7e-a6f1-63810514ae62} - {2a636749-3567-4d66-9541-a25f232a8544} + {9be090bd-793a-4542-a879-318a5bc33bbd} diff --git a/MongoDB/testsuite/TestSuite_x64_vs110.vcxproj b/MongoDB/testsuite/TestSuite_x64_vs110.vcxproj index 1cc7697e4..b9b5b12fe 100644 --- a/MongoDB/testsuite/TestSuite_x64_vs110.vcxproj +++ b/MongoDB/testsuite/TestSuite_x64_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/MongoDB/testsuite/TestSuite_x64_vs110.vcxproj.filters b/MongoDB/testsuite/TestSuite_x64_vs110.vcxproj.filters index 6a6253cd1..73b8406ea 100644 --- a/MongoDB/testsuite/TestSuite_x64_vs110.vcxproj.filters +++ b/MongoDB/testsuite/TestSuite_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {62cbe714-cb18-477a-a4d3-ee35b7e3fe8c} + {cc99fde2-de4a-4860-a99d-20476f77c6cf} - {973cc859-d5ac-4e99-9350-b10577d1413f} + {adf91777-08f8-4cf5-84f6-444f6dd8dbb0} diff --git a/MongoDB/testsuite/TestSuite_x64_vs120.vcxproj b/MongoDB/testsuite/TestSuite_x64_vs120.vcxproj index 0d80de2d9..e43374e23 100644 --- a/MongoDB/testsuite/TestSuite_x64_vs120.vcxproj +++ b/MongoDB/testsuite/TestSuite_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Console + Windows MachineX64 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 @@ -192,21 +202,20 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Console + Windows MachineX64 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX64 @@ -256,20 +264,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Console + Windows MachineX64 @@ -288,32 +295,31 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 - - - + + + - - + + - - - \ No newline at end of file + + + diff --git a/MongoDB/testsuite/TestSuite_x64_vs120.vcxproj.filters b/MongoDB/testsuite/TestSuite_x64_vs120.vcxproj.filters index f588c4b93..e01f2426b 100644 --- a/MongoDB/testsuite/TestSuite_x64_vs120.vcxproj.filters +++ b/MongoDB/testsuite/TestSuite_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {62cbe714-cb18-477a-a4d3-ee35b7e3fe8c} + {45cdf6fb-ff73-45f1-a256-9a0ba0a8dd40} - {973cc859-d5ac-4e99-9350-b10577d1413f} + {ed6ef81b-10e5-4871-acb6-5d0a7f183ef7} @@ -15,7 +15,7 @@ Source Files - + Source Files diff --git a/Net/Net_WEC2013_vs110.vcxproj.filters b/Net/Net_WEC2013_vs110.vcxproj.filters index b1d71c292..9030d8d7a 100644 --- a/Net/Net_WEC2013_vs110.vcxproj.filters +++ b/Net/Net_WEC2013_vs110.vcxproj.filters @@ -2,139 +2,139 @@ - {fa96c266-36ff-4a71-ade5-fb42aa21a3b4} + {ddb8d95a-0693-4a1e-a9dd-eb08c136fca6} - {8d94cfbb-4669-4af8-ad31-43f4aca86a18} + {80717d63-b118-4722-abe8-83ffb2fac8e3} - {bbd2d158-e0f7-4b46-966b-762d71972a22} + {13deda94-2254-42e1-8005-df3e80316da6} - {0699275f-8349-40c4-b7c9-6dc3ebe85936} + {9c96e602-8870-4754-bb0e-436d9574c51b} - {23e63929-73e7-4b4c-ad60-5db5791a2c23} + {ad6f60c3-7278-4e9a-ac93-ede210ccf921} - {9ef27ced-3a87-485f-97f1-e7374aab6c30} + {caeae3da-09e2-4f66-8f27-ecf3227644a5} - {2c71339e-f9de-48bd-a151-644ba3baf72d} + {6d40b89f-1a08-49ef-852d-ff0291bde4c8} - {61336cda-ea21-4a74-a184-78bf4c9453e7} + {9dda9199-36d1-4396-9671-f7b145c4633b} - {ac7408fd-effe-4494-a8f2-5727d932c05a} + {4a19a934-062a-4a1f-8087-83b63d98d465} - {4156d19e-a11c-42af-b5c6-c595c9dd484e} + {d34b9921-3efb-4716-8cb4-f400bf35a282} - {16192fab-7d2b-4820-9413-0a95315d7571} + {c7e1dd4b-13bf-4986-9258-10eae72b6f9c} - {08d01e2c-78bd-4127-80bf-a6f2d6d6b9fd} + {bd86cce7-9f74-4d3b-b85f-804fcd76aabb} - {2fb9fde6-79b8-4ab2-a379-460e2c661ae1} + {a9760b2a-c55b-47c8-ac70-2a7ed872ff3d} - {c980c1e1-3824-4d5b-a6b0-2efb82015e7d} + {fe8adb99-d1f8-4fe0-bc38-71ca2977b8e0} - {ec150dd4-2ed2-4c86-9a38-bec22a7c1c37} + {aea840ca-6105-44fe-985e-c9ddfc6534f3} - {569e7fd0-685e-47fe-8bea-ebc8c9a0e4d0} + {4ee18f87-8a22-4651-b339-e1b90e520abd} - {d09cc142-cc4c-49a1-bb34-03e0520e6ff2} + {cff8ce88-b758-4db8-97b3-791555791c7d} - {b4ac4f39-c39a-462f-a376-3cb0f86a4862} + {3d4905cb-9e73-4482-a0c1-6cd9a3c99e3a} - {600d1a61-3751-4754-9a56-eb091f906838} + {6ee90700-fd9d-4d9f-a9b8-92475696c3b4} - {dfdfd0b9-1514-4044-af92-17b7a2da0606} + {7615fa51-8d6b-421a-ae95-39a2f055b2c2} - {4c71d778-b617-4cfe-b772-8cb0340fad2d} + {5c5c75a6-9538-4b72-b2da-aee4d64c073e} - {2498c112-2c16-4633-9c00-f037910c67cb} + {4adaaefe-9305-48af-b56c-bab8ea3453ed} - {5478ed38-6172-423b-ac8f-994df3e680a9} + {c8fe1ad2-2643-4177-a087-b2324d253cec} - {777b7f3a-b9bf-458b-877a-597646539ca9} + {6f04438b-3c5a-480d-a044-181e13b2ca74} - {5a18953b-4d0a-4510-adeb-a518c96cf5a1} + {6f934d1a-0c43-42c5-88b8-a44248803bc2} - {0d636330-e450-49ae-92ea-3b835e6554e7} + {2a203585-ac88-478c-b07d-b7a9144ca1a2} - {86344d20-0933-4f7f-983a-81dd563f8d9b} + {bc87f701-2087-4feb-bf1d-79536f6ca6f9} - {c4918d25-4b6e-4adc-87d4-e3009b536526} + {5d690637-3297-4245-ae57-5fb1c9935740} - {20d0ba2d-9331-430c-99ad-6f2c0aa80513} + {b329416c-c38d-47ab-887b-24fc72a2b0af} - {2e074879-1d02-413b-b897-8c8f65dd8802} + {c39bba1b-fcec-44b1-b4a6-3c5904c1432a} - {b0b13605-b986-4939-8217-1d2ace7011b4} + {a0ab05f6-b94e-438d-a8c8-95a79561595c} - {10e5b30f-6c32-4557-af22-963f94572061} + {64886fbc-d7b4-46e2-9788-7fec9903517f} - {b286a16f-1a36-4be3-a4b4-89717f8cd6af} + {0e81ec45-b160-4d5d-b9d4-e13f026b9dfa} - {8fcabd1b-93a4-45ca-9141-f3b573d81094} + {cb61233d-ea57-4bcb-9856-df33db4318f9} - {e37ccb54-5786-4262-b938-a1df20ba3acd} + {0e2e1940-d2a6-4265-96b8-c2086e485e9e} - {42e5bfa6-9d26-4d0b-96d9-e5d4d004cfa1} + {163f94cd-ea04-4e28-958c-59b335b07e43} - {6d93b069-4aa7-4694-bb2c-643e95fc8489} + {2ec78cd8-35a1-48c9-94ff-5d305a20a45a} - {b7376af1-fa79-45ab-82b8-d46dff9b7925} + {69366170-6c75-45a0-aa79-c74719c70ab5} - {a9b49904-c954-428d-87ea-031803cbe5b9} + {2bdb858c-272f-470d-80ae-90b31bfc9f9e} - {77a13250-70ac-46b8-ba42-e5fcf352e05f} + {df5bcead-35a0-430f-9ab4-faaf3ae6ead5} - {060c7576-e80a-45e7-9ee2-8e97e18d3c98} + {331a663b-e2a5-4781-98cd-09ad253211c2} - {953aaa84-b1e0-4c62-bed0-e183cc1eb995} + {bc74edb5-d005-4223-a98a-7d74da970b4b} - {634b174b-971c-439b-8576-5b994584cb79} + {8f720bab-3700-4e2c-9f49-d2f20376f368} - {138e4c46-87e5-4a51-a4c4-8b187cf6c13d} + {7c78005b-d3f1-41ad-a4ed-f30e9459af97} - {8f7f9f29-bc20-419c-9c3d-16501b15cbc4} + {d01f885d-495a-4b82-8e5b-12873d533ae1} diff --git a/Net/Net_vs100.vcxproj b/Net/Net_vs100.vcxproj index 283172ff8..f4c9483b7 100644 --- a/Net/Net_vs100.vcxproj +++ b/Net/Net_vs100.vcxproj @@ -1,4 +1,4 @@ - + @@ -32,7 +32,7 @@ Net Win32Proj - + StaticLibrary MultiByte @@ -57,27 +57,27 @@ DynamicLibrary MultiByte - - + + - + - + - + - + - + - + - + <_ProjectFileVersion>10.0.40219.1 ..\bin\ @@ -114,7 +114,7 @@ true true true - + Level3 EditAndContinue Default @@ -147,9 +147,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -179,7 +179,7 @@ true true true - + ..\lib\PocoNetmtd.pdb Level3 EditAndContinue @@ -205,9 +205,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -228,7 +228,7 @@ true true true - + ..\lib\PocoNetmdd.pdb Level3 EditAndContinue @@ -254,10 +254,10 @@ true true true - + ..\lib\PocoNetmd.pdb Level3 - + Default %(DisableSpecificWarnings) @@ -267,208 +267,208 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -480,6 +480,6 @@ true - - - \ No newline at end of file + + + diff --git a/Net/Net_vs100.vcxproj.filters b/Net/Net_vs100.vcxproj.filters index e5cb79e4e..5c98001bc 100644 --- a/Net/Net_vs100.vcxproj.filters +++ b/Net/Net_vs100.vcxproj.filters @@ -2,139 +2,139 @@ - {1fd9c20c-05af-4b46-9165-9ad08b01d4f7} + {bf93ac22-b1ed-45b0-b1ad-6e5c45dd357b} - {6a6c5a53-2ec4-42ec-90eb-87811b184cab} + {13e6bafa-9776-4d40-aef0-afbaab425acd} - {031bcbaa-a4ab-4e0d-9860-2683eb654de9} + {e5fe6a3d-b398-4c9a-9a9b-0e7974aa2c67} - {49b6d87d-e831-4e6c-97b5-e8e6ff2082dc} + {17cec3ce-58b8-4f3b-80fd-278549e9f0ef} - {ea21e559-d811-4a36-a6c4-2d02b0b0afb3} + {883506bd-9f38-4a21-a0d9-e9fbd2f48109} - {be479a18-3ca3-4dca-afdc-c1eb94ef2f11} + {906cc65b-a424-4e23-8bef-bd0692b53c0a} - {5ea8a3dd-6816-4175-a9cc-99f02ddab4c5} + {8b41a70d-665b-469c-b594-a2e0fd1dec83} - {a73f406e-35ea-41ad-bb2d-bf28630e9476} + {85820bf0-24cd-41fd-b2da-30468b93ff80} - {886b9c6f-3333-47bb-86c4-02c31b0409e7} + {33d34ed1-97f1-4935-92bf-923eaddf3865} - {98c697d8-1008-43a0-9f7a-e1780b3f01ba} + {1433c088-0942-470a-a5f2-c1d5c98dbccd} - {dedd83c0-ae61-450d-b7b9-0e5c646964b1} + {ade366b2-74a8-440b-90a7-cf3f622bfb0f} - {1d63b7e5-609d-4056-b3ee-59a3aad4739a} + {83f28ae0-7192-4353-b46c-4db7a39c42a6} - {420b86ac-917d-4758-8644-24bbfdc94c52} + {1313e814-7e84-4182-9fa0-8a65b0d3886e} - {f4f456c9-9f28-4359-b8a6-4df07a356f11} + {a589d672-41af-4a2b-9e46-568cec5c06ab} - {9da0d92b-8e5d-4972-ab63-3131890927cc} + {6af0df92-a0b0-4b51-95de-4d889bf18899} - {7ed901cc-dbc8-4705-a4c2-b76e9d2fd042} + {af6c5d6a-a250-4b51-97e2-bc592c700b9e} - {d460f2fb-9bc6-4031-a4d7-0a2158673b7f} + {e67db7fb-6a04-4c39-97d3-3d5a6a83cdd5} - {7582982d-4752-4d74-8884-7606b743a314} + {5b06e1c5-1100-43de-a9c4-54dfd7c0fce9} - {df1ab3bc-6408-4215-9d49-48a10fa7bbd1} + {8939f790-51f1-4953-9b27-472fb47d1659} - {1251e86b-afb2-4339-81fb-80c48e65fe58} + {3e779fb0-e41b-4fc0-9304-462d8019aaf8} - {e2071a92-1394-438a-b052-188f5e8b81f2} + {671ad416-a0f4-48e0-a71a-733bf3675bf8} - {6b6736e9-a96c-43a6-8afc-22d278d233d0} + {18b73242-192b-4860-897e-56cd81e84ea1} - {264a07bb-7184-4b3e-b587-86b105e14861} + {b29abaef-8b6b-4a92-bf7a-a0aea7f11dcb} - {c2a5d312-8e12-4630-b433-169e7cbf0424} + {a3513b74-30be-444f-95d1-6fdf24f6d1e4} - {2d841c76-b391-463f-af55-3bd4501b1166} + {e97df5ae-1adb-4646-9bd3-250829068321} - {cb7c05cb-679c-4d48-b852-faa1631a07d0} + {b6b83878-3308-46c7-9972-26520ca304fd} - {167ea738-ba86-49b8-aafc-8a43cb0d1c9a} + {2433021f-2ab9-4261-8f3a-6d023ba160d1} - {bd8c6044-ef06-4fdb-bc6b-65678f064b33} + {70a6eafd-56f9-4773-8e4f-87e5d2175d7c} - {c2802df1-ee71-4fd0-a19b-9dd3e2fbde51} + {9a7ce52d-d095-4559-8436-7de95e971afb} - {4ab7b6e7-0282-40af-a9ff-0af14b482f80} + {da3dc270-121d-48b9-9ca8-3e513d0f9239} - {1dc1cf4d-4cb2-4dc3-9ed8-6adc242b1ff7} + {b8704ed1-e104-4a4b-8109-0e29edd7bb66} - {fc4a9917-aa15-4cb6-9a04-059549640bf8} + {1a0cc176-9c59-43d3-82e1-23f45f7fce68} - {adb48dfd-09df-4808-a20f-8df3fe5a2e5b} + {91e5e9c2-d7ec-43ce-8aec-66c543a11955} - {d6e982dc-378d-48fa-8ff7-5bb4ef894ed2} + {3e294831-7b07-47d1-842d-570496a6d952} - {db30c559-5eb2-4bf5-86c4-96973749dc73} + {3638e5e7-1a9e-4e8b-b592-d1b62c141ec7} - {75c504b3-341d-43ad-9276-4939b9fd81b4} + {2ce82646-f2ab-4e38-8713-79cd35e42530} + + + {f3d85145-90c3-4a17-8562-be316bf20a1d} + + + {52ea85f6-a62a-4fe2-a402-c0f9a5fa450b} + + + {182f7431-8d75-4743-95e1-97b299d06f3d} - {c9c368f0-bc7a-4297-8339-8add42852318} + {48534ce3-5ed5-407b-b2c6-ebdfdc546dbc} - {5c3d647f-dc83-46b3-9f10-85559cc47f59} + {4740c6cf-e0ca-4965-bcc6-42c0b529dd0e} - {bc3837ce-3478-4cc9-a5fe-def209f86de1} + {d1b42d09-3e9a-4297-8887-e93c1f32875c} - {8b7ce99e-7134-4d3e-be12-1da260f2addc} + {01029c33-8806-433a-a26e-5f9c5cb105ed} - {a5d9d62f-4e6c-44e7-8175-f22b47618f4d} + {7845d469-a70e-40e0-81f3-6cab58acca9f} - {9e8d3dd2-8950-4437-b83d-0f5c2acdf755} - - - {da44ddca-d7c4-49d7-9d2d-eae118575059} - - - {b1bc5e82-a8e3-4c3c-9bef-f5ebc71a5ffc} - - - {ef2b98c6-9300-404b-b922-f1d79bca1d6b} + {f914c395-d3b5-4373-a26b-4c6f73ac0d96} @@ -147,6 +147,9 @@ NetCore\Header Files + + NetCore\Header Files + NetCore\Header Files @@ -159,6 +162,9 @@ NetCore\Header Files + + NetCore\Header Files + NetCore\Header Files @@ -228,6 +234,9 @@ Messages\Header Files + + Messages\Header Files + Messages\Header Files @@ -360,6 +369,9 @@ Reactor\Header Files + + Reactor\Header Files + Reactor\Header Files @@ -372,6 +384,9 @@ Reactor\Header Files + + Reactor\Header Files + Mail\Header Files @@ -408,6 +423,15 @@ ICMP\Header Files + + NTP\Header Files + + + NTP\Header Files + + + NTP\Header Files + Logging\Header Files @@ -423,30 +447,6 @@ WebSocket\Header Files - - Reactor\Header Files - - - Reactor\Header Files - - - NetCore\Header Files - - - Messages\Header Files - - - NetCore\Header Files - - - NTPClient\Header Files - - - NTPClient\Header Files - - - NTPClient\Header Files - @@ -458,6 +458,12 @@ NetCore\Source Files + + NetCore\Source Files + + + NetCore\Source Files + NetCore\Source Files @@ -467,6 +473,9 @@ NetCore\Source Files + + NetCore\Source Files + Sockets\Source Files @@ -533,6 +542,9 @@ Messages\Source Files + + Messages\Source Files + Messages\Source Files @@ -704,6 +716,15 @@ ICMP\Source Files + + NTP\Source Files + + + NTP\Source Files + + + NTP\Source Files + Logging\Source Files @@ -719,27 +740,6 @@ WebSocket\Source Files - - NetCore\Source Files - - - NetCore\Source Files - - - Messages\Source Files - - - NetCore\Source Files - - - NTPClient\Source Files - - - NTPClient\Source Files - - - NTPClient\Source Files - diff --git a/Net/Net_vs110.vcxproj b/Net/Net_vs110.vcxproj index 35a01752b..5a05baf50 100644 --- a/Net/Net_vs110.vcxproj +++ b/Net/Net_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoNetd - PocoNetmdd - PocoNetmtd - PocoNet - PocoNetmd - PocoNetmt + <_ProjectFileVersion>11.0.61030.0 + PocoNetd + PocoNetmdd + PocoNetmtd + PocoNet + PocoNetmd + PocoNetmt - + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -124,7 +136,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -138,7 +149,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -157,7 +168,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -172,7 +182,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,13 +200,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoNetmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +224,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib\PocoNetmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,13 +247,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoNetmdd.lib - + Disabled OnlyExplicitInline @@ -265,7 +272,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,9 +286,6 @@ - - - @@ -371,6 +374,9 @@ + + + @@ -385,9 +391,6 @@ - - - @@ -470,6 +473,9 @@ + + + @@ -478,12 +484,12 @@ - true - true - true - true - true - true + true + true + true + true + true + true diff --git a/Net/Net_vs110.vcxproj.filters b/Net/Net_vs110.vcxproj.filters index 2f650a0a4..3921552ed 100644 --- a/Net/Net_vs110.vcxproj.filters +++ b/Net/Net_vs110.vcxproj.filters @@ -2,139 +2,139 @@ - {88b508f9-076e-4f63-896f-978172fe8918} + {b12d7ec2-1093-4e9c-8906-70bad655464f} - {15a8353f-bd11-4736-93ab-ec2091521aa3} + {9a78119d-4efb-484a-9429-31cdc099264d} - {433321e2-70cc-4c3c-8bc8-30fbd1ae73a5} + {799e8f86-ed35-4909-ac87-fafe2c551df1} - {542b7d1a-c36f-49ec-bf84-e71296e7dc1f} + {0f9b239e-bb53-44a0-b936-2d7ebad7bed8} - {6ba64e20-8971-4285-9376-9bfb48f00c00} + {0e6d492a-b0ec-4c71-bb1c-a2dacefb3126} - {0bfad08c-82d8-403e-95dd-2834943d8a93} + {9987986f-c3d0-4242-aa15-2a6309ed0821} - {048a49f1-cfe9-4d05-9587-477832a3e22f} + {aa4b8e2e-a5f6-4eea-90f1-8d82be298824} - {006e8f63-8d31-4f24-a95b-4da971f0485e} + {c27d8619-524e-4777-bb65-1a7f88b49cb7} - {603f876f-98cf-4653-968b-681025fa0f59} + {632ded72-a1f9-4b1f-ba56-0edc2001b4f8} - {44f4d194-90a0-43ad-905e-4ee03ebd118d} + {ab948413-c58e-4b37-84c2-f7478bf7d9e3} - {bde1cfb1-e931-4f24-80ee-154397837879} + {c5a7e7db-2211-43ee-a624-66a55520581e} - {fed31122-0082-4d5e-8094-a9c4f820af39} + {ceb26577-00a4-409e-a51b-7a4e8008f28b} - {5a9d0360-160a-4d5f-8252-ae7b82fefd1b} + {98e5ef2c-f449-4fb5-8477-bd653536ef6b} - {1ba58e68-0664-4553-9b8b-3329c4df0724} + {d2396321-d74f-4d30-a7e1-1e2d30a26940} - {48f85270-d833-491f-a68d-d36541f99d31} + {a51057ae-c932-4553-a622-9c463fb6a503} - {4bf62840-f99d-4915-9125-759315d3be09} + {775adef8-b3f9-4edf-b1d4-70952dbf0c9a} - {aa267629-d879-430e-8b4f-86e20c2d258f} + {31788d1c-d581-4755-b604-11588b8749d8} - {43df5d03-4705-4c24-a4d2-f5c452dec26b} + {74ec7f29-4e6c-4d2b-a028-d50c3af007e3} - {35d608e8-3cf9-4207-8617-5105979d6f95} + {04c2ece0-9f32-473f-96eb-092b7bc6f693} - {a71d64f2-1a24-4e2d-8496-a0a66f30b3b5} + {8eb0477b-0aa0-43a7-8db2-f56cf22ad8ca} - {4e059fc6-9897-41b8-b34e-b8f83d6b7025} + {834ca5e7-486d-4a1b-b729-b497b0a7fef7} - {0855453c-f7d7-4a41-81c6-852a019549eb} + {9697ec4e-ceb2-49c6-985f-c04272c0cb7f} - {99e23efc-cc28-423d-bc10-fee57916078c} + {1646e2dd-04a4-4f07-b4f0-1d3baeaa6926} - {6a10a18f-80a9-4ad4-9d9c-063d32d8dfa4} + {63b09b8c-a34e-4b43-bbfb-c5a740fb6bd5} - {30e6a266-58ae-42ea-864e-bc3c92581f13} + {079fd901-385b-4e3c-aedd-8bcbeb0c2e24} - {02f2ddf6-e8a5-4889-8fd6-c5e1ccb8e553} + {3ebb62af-b1cb-4ef1-9f49-b2c26ab43eba} - {fd8eb857-dff6-4d3e-96df-2ffda6294550} + {a084bbb3-a4c7-442f-9dbe-31135fa1503b} - {65f633ed-f550-4521-8d77-786cd241a289} + {646da178-8728-4867-9085-88050223c5c6} - {0f13024a-3ed3-489c-a0ea-077d75e4c566} + {ec93ff0e-f854-48e4-bd3c-aa25437fb28f} - {59888127-14c5-4a50-a97d-e586e5a0514c} + {f73e3a47-6100-4b79-bd28-5d6eb1ff3329} - {dbedc324-fe03-4c41-a273-022b5a5170cd} + {73dfa3f3-6a27-4fa7-af7f-628ebf154086} - {aaeffeb0-d1d0-4d82-966a-5efc392733fb} + {d2480f81-64d6-4e67-b626-119f6611b627} - {14837134-99f9-4932-8c16-e8fc2cf06959} + {bdd8ba6f-5b59-4ccb-9dae-96de0f0f9186} - {3c25c1ab-3295-4661-8183-af56b07cd4e3} + {7bd431a6-eb3a-4e10-9aa3-7cbfb8d6d042} - {a5c48a8e-cc06-4990-8c8b-fc8aac09548c} + {d6306ebe-ce12-4860-b4e3-c13d83899b9f} - {5d8f0dc0-e8d4-4798-ac75-caf2af55f6ff} - - - {abe74806-0c96-4b3f-b53b-276d535280fd} - - - {1a3734b6-3ceb-4d50-bed4-2573f71bc3b2} - - - {485f9a7a-90a8-4479-ae11-d92ce866bfd9} - - - {0e595ff7-6049-4673-98fe-f6593609d425} - - - {cb96a05c-19e3-42f1-b394-8c61c97f03a6} - - - {865a0e39-c61d-47ef-af4a-8ecc4640e5b0} + {d5ef0627-2c3a-4769-8d3e-81e90817a55f} - {d1558faf-7e8e-42ee-8806-66d322509132} + {ec6d0d27-ba9b-4aaf-ac8f-bb2932e0810a} - {159b8a21-1aee-4157-8856-015fd2f59a97} + {8534ac9e-2d9c-4c44-89b6-c525221a07c6} - {29c80f8f-6d4d-4b77-b4a5-17a75057f489} + {38cb9773-1ca1-4a20-b3c5-b7feeb9eb170} + + + {7bc7d911-6f05-4573-9f70-e07fda36405d} + + + {eb2d39d3-b631-4b89-b203-fcf778b92388} + + + {d2b52d30-03d8-4a6a-a6e2-232458c39fbf} + + + {79b6fb46-c7b8-46a9-940c-f5ca2a9508b6} + + + {7c6ba88f-9e65-4613-9472-9527379610bb} + + + {928ec224-7371-410e-a9e7-3c7fadea1e9d} @@ -423,6 +423,15 @@ ICMP\Header Files + + NTP\Header Files + + + NTP\Header Files + + + NTP\Header Files + Logging\Header Files @@ -438,15 +447,6 @@ WebSocket\Header Files - - NTP\Header Files - - - NTP\Header Files - - - NTP\Header Files - @@ -458,7 +458,7 @@ NetCore\Source Files - + NetCore\Source Files @@ -716,6 +716,15 @@ ICMP\Source Files + + NTP\Source Files + + + NTP\Source Files + + + NTP\Source Files + Logging\Source Files @@ -731,15 +740,6 @@ WebSocket\Source Files - - NTP\Source Files - - - NTP\Source Files - - - NTP\Source Files - diff --git a/Net/Net_vs120.sln b/Net/Net_vs120.sln index 421aac2a6..4e20302b7 100644 --- a/Net/Net_vs120.sln +++ b/Net/Net_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Net", "Net_vs120.vcxproj", "{B057A1FE-09F7-465E-B8B5-E1B659051D76}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_vs120.vcxproj", "{D5EFBF27-B934-4B8D-8AE5-6EC00374819C}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_shared|Win32.ActiveCfg = release_shared|Win32 {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_shared|Win32.Build.0 = release_shared|Win32 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_shared|Win32.ActiveCfg = release_shared|Win32 {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_shared|Win32.Build.0 = release_shared|Win32 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Net/Net_vs120.vcxproj b/Net/Net_vs120.vcxproj index 5d08afadd..483f764c8 100644 --- a/Net/Net_vs120.vcxproj +++ b/Net/Net_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Net Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoNetd PocoNetmdd PocoNetmtd @@ -107,6 +93,32 @@ PocoNetmd PocoNetmt + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + Disabled @@ -120,11 +132,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -153,11 +164,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -185,12 +195,11 @@ true true true - + ..\lib\PocoNetmtd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoNetmtd.lib @@ -211,11 +220,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib\PocoNetmt.lib @@ -234,12 +242,11 @@ true true true - + ..\lib\PocoNetmdd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoNetmdd.lib @@ -260,12 +267,11 @@ true true true - + ..\lib\PocoNetmd.pdb Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -273,208 +279,208 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -486,6 +492,6 @@ true - - - \ No newline at end of file + + + diff --git a/Net/Net_vs120.vcxproj.filters b/Net/Net_vs120.vcxproj.filters index 2f650a0a4..d417a2307 100644 --- a/Net/Net_vs120.vcxproj.filters +++ b/Net/Net_vs120.vcxproj.filters @@ -2,139 +2,139 @@ - {88b508f9-076e-4f63-896f-978172fe8918} + {ff5582f7-c508-4365-8f37-67be6af2be6f} - {15a8353f-bd11-4736-93ab-ec2091521aa3} + {0e03a507-77f8-4f77-a539-cd1731c4c298} - {433321e2-70cc-4c3c-8bc8-30fbd1ae73a5} + {383e9176-fe8d-4633-b2d2-cb5a6bb03bf5} - {542b7d1a-c36f-49ec-bf84-e71296e7dc1f} + {b59af455-f5ec-44d7-9d60-3b9ae519e666} - {6ba64e20-8971-4285-9376-9bfb48f00c00} + {f0f2291c-1d55-4ec1-9ecd-f6b2f805888c} - {0bfad08c-82d8-403e-95dd-2834943d8a93} + {ef83b525-5fd3-4fd1-90ad-79926a03d4a8} - {048a49f1-cfe9-4d05-9587-477832a3e22f} + {c186f713-dbcd-4c3c-bb55-0190f8315aed} - {006e8f63-8d31-4f24-a95b-4da971f0485e} + {fffdc611-4ea7-4327-8726-206dd34dda65} - {603f876f-98cf-4653-968b-681025fa0f59} + {f6c04114-8f0f-44d9-8b4e-36b4180891f4} - {44f4d194-90a0-43ad-905e-4ee03ebd118d} + {219fd87c-90d4-438c-aca9-a7c2e9b864cf} - {bde1cfb1-e931-4f24-80ee-154397837879} + {42f64970-2178-4486-bd08-a7559af2c471} - {fed31122-0082-4d5e-8094-a9c4f820af39} + {07d2d40e-640b-48cc-9a6c-aa68469f36e4} - {5a9d0360-160a-4d5f-8252-ae7b82fefd1b} + {e4bae9b2-192c-4107-86b8-56efb6db46bd} - {1ba58e68-0664-4553-9b8b-3329c4df0724} + {bd8b6f2d-d05d-4c78-a386-8ec911bac675} - {48f85270-d833-491f-a68d-d36541f99d31} + {b648fb3c-f134-4327-88ed-a8d755c131f5} - {4bf62840-f99d-4915-9125-759315d3be09} + {e81b06d1-da9b-4d29-b1f3-a84cb877dc8c} - {aa267629-d879-430e-8b4f-86e20c2d258f} + {718b66c9-316e-4561-8edb-0a94e089e6f2} - {43df5d03-4705-4c24-a4d2-f5c452dec26b} + {6aeffea2-550f-478f-91c3-3c977ee5a0f2} - {35d608e8-3cf9-4207-8617-5105979d6f95} + {adba4a95-88c4-492a-9f56-a0a9a3658dc1} - {a71d64f2-1a24-4e2d-8496-a0a66f30b3b5} + {a748edf5-e6b0-4a1a-917e-34e1faf4d658} - {4e059fc6-9897-41b8-b34e-b8f83d6b7025} + {c021ccc1-2e80-4f5b-b3d4-b3bb3948a910} - {0855453c-f7d7-4a41-81c6-852a019549eb} + {921315ff-a234-415e-bcc0-e7d44f8a9496} - {99e23efc-cc28-423d-bc10-fee57916078c} + {977ae80f-ab98-4da6-b02a-dc541fc62a14} - {6a10a18f-80a9-4ad4-9d9c-063d32d8dfa4} + {15222d19-aa1e-4e7a-a500-604c21ab6359} - {30e6a266-58ae-42ea-864e-bc3c92581f13} + {009e9f81-bfde-48ac-89c2-68f1c271edeb} - {02f2ddf6-e8a5-4889-8fd6-c5e1ccb8e553} + {53c3a4b5-e1a3-4673-b258-3e832dc27fbe} - {fd8eb857-dff6-4d3e-96df-2ffda6294550} + {1c97b4e1-a55b-4c6b-b6df-e507c55c69eb} - {65f633ed-f550-4521-8d77-786cd241a289} + {c01052b2-cabd-410a-917e-c491576628e2} - {0f13024a-3ed3-489c-a0ea-077d75e4c566} + {89eff0d7-ffbe-4a2e-8242-c89f92fd6301} - {59888127-14c5-4a50-a97d-e586e5a0514c} + {56a2991c-7b80-404e-8d65-a9966cb05e57} - {dbedc324-fe03-4c41-a273-022b5a5170cd} + {3adef306-6add-450c-8287-33ff742b3889} - {aaeffeb0-d1d0-4d82-966a-5efc392733fb} + {af9a82ea-237e-42e5-b2dc-341287b8fb0f} - {14837134-99f9-4932-8c16-e8fc2cf06959} + {eabc6b03-405e-426e-be45-94c745524016} - {3c25c1ab-3295-4661-8183-af56b07cd4e3} + {8dce5b80-7a9d-49ba-a839-0e1b71a55f06} - {a5c48a8e-cc06-4990-8c8b-fc8aac09548c} + {730e0866-d1b6-4112-831a-9015c069b8c1} - {5d8f0dc0-e8d4-4798-ac75-caf2af55f6ff} - - - {abe74806-0c96-4b3f-b53b-276d535280fd} - - - {1a3734b6-3ceb-4d50-bed4-2573f71bc3b2} - - - {485f9a7a-90a8-4479-ae11-d92ce866bfd9} - - - {0e595ff7-6049-4673-98fe-f6593609d425} - - - {cb96a05c-19e3-42f1-b394-8c61c97f03a6} - - - {865a0e39-c61d-47ef-af4a-8ecc4640e5b0} + {5c3801df-aa59-43b5-9d76-9add796824cf} - {d1558faf-7e8e-42ee-8806-66d322509132} + {9ad300da-0d2e-441f-b98b-83ae110050ce} - {159b8a21-1aee-4157-8856-015fd2f59a97} + {e80fea6b-5292-4823-88b0-d7e06c15fac1} - {29c80f8f-6d4d-4b77-b4a5-17a75057f489} + {b33508c9-4eda-4a87-a697-e36f6b0507dd} + + + {bc882a6a-7a39-48bd-a1fa-c477d6eea108} + + + {8112bfa1-d1db-4606-aba7-67388032e1fd} + + + {ae09252f-b13e-488c-bd1e-604ad3dc673e} + + + {6bf2ff5d-0867-4d71-9bf9-d0126918a5ac} + + + {1212c7aa-632b-4135-9bb5-030133c23da3} + + + {c56ef8a7-2144-4d36-874b-b23e85ac20de} @@ -423,6 +423,15 @@ ICMP\Header Files + + NTP\Header Files + + + NTP\Header Files + + + NTP\Header Files + Logging\Header Files @@ -438,15 +447,6 @@ WebSocket\Header Files - - NTP\Header Files - - - NTP\Header Files - - - NTP\Header Files - @@ -458,7 +458,7 @@ NetCore\Source Files - + NetCore\Source Files @@ -716,6 +716,15 @@ ICMP\Source Files + + NTP\Source Files + + + NTP\Source Files + + + NTP\Source Files + Logging\Source Files @@ -731,15 +740,6 @@ WebSocket\Source Files - - NTP\Source Files - - - NTP\Source Files - - - NTP\Source Files - diff --git a/Net/Net_x64_vs100.vcxproj b/Net/Net_x64_vs100.vcxproj index 06054d360..54028c8a6 100644 --- a/Net/Net_x64_vs100.vcxproj +++ b/Net/Net_x64_vs100.vcxproj @@ -1,4 +1,4 @@ - + @@ -32,7 +32,7 @@ Net Win32Proj - + StaticLibrary MultiByte @@ -57,27 +57,27 @@ DynamicLibrary MultiByte - - + + - + - + - + - + - + - + - + <_ProjectFileVersion>10.0.40219.1 ..\bin64\ @@ -114,7 +114,7 @@ true true true - + Level3 ProgramDatabase Default @@ -147,9 +147,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -179,7 +179,7 @@ true true true - + ..\lib64\PocoNetmtd.pdb Level3 ProgramDatabase @@ -205,9 +205,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -228,7 +228,7 @@ true true true - + ..\lib64\PocoNetmdd.pdb Level3 ProgramDatabase @@ -254,9 +254,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -265,202 +265,208 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -472,6 +478,6 @@ true - - - \ No newline at end of file + + + diff --git a/Net/Net_x64_vs100.vcxproj.filters b/Net/Net_x64_vs100.vcxproj.filters index c74409b5a..4ad62249a 100644 --- a/Net/Net_x64_vs100.vcxproj.filters +++ b/Net/Net_x64_vs100.vcxproj.filters @@ -2,130 +2,139 @@ - {c5d8920b-64b9-4b65-80cf-b86964da17d3} + {d3008dba-917f-44d5-82b0-c9e8be0a6f51} - {e87b9c84-f8fd-45f2-85cb-dbd068f8bff2} + {79cf9077-0e82-47c5-95d9-e64916560e4b} - {3ea56d63-57ec-44df-8a14-c11d90dcd81c} + {039a79d3-57c4-4793-8df9-479c0ec77082} - {f9ab1126-4ef7-431b-a067-4252a7ce6555} + {50b72a8b-2646-4187-b353-3992707c8106} - {aa433c8a-79a9-4858-abcb-675c5ad40a0b} + {955bff75-e4d9-4be7-8d7d-d15da48ac8cc} - {4eb17c31-97ec-49b9-8a3e-667409496950} + {74ea59d3-69e3-4435-acf6-630ce9e36505} - {3f96fd5e-af74-40e2-b33f-006f6cedbece} + {e17fbd19-41ae-4850-b531-27112ff3603a} - {eef312e2-c3e0-4814-8d4b-89c702dd9683} + {d2ac61ed-c839-4283-9cca-b34bf1e88622} - {a46312e5-3264-4722-9e69-af3a53531e5f} + {042c5f8e-ed33-4abe-a8a0-377a2789242c} - {cfece798-e297-4bda-95a9-a4d4b32abd6f} + {a7a457ce-f935-4390-8c28-9e593b6c87cf} - {c1b91262-4d8d-4306-adc9-8fc49fc10dc2} + {e122c056-3967-4e90-ad15-4ac895986b51} - {e899e1b5-136e-45cc-a9b2-ae0b794fdbaf} + {dbe20e05-289c-4f68-949b-0b0f0dc8832c} - {c94f7f0c-78e6-46bd-a68d-141bc3b8ef3f} + {4ef88655-6d63-4997-a819-355163dd718d} - {8413818c-d278-484d-8681-6aafb096d339} + {8399833b-309a-4629-8f9f-b09f970de8e8} - {b210f473-63e8-43a8-8edc-80a27e763a7d} + {13147168-cb4b-490e-90b7-92cc37146c01} - {b19a99c3-2244-4d10-8551-f3e4d89060d7} + {dc2f1250-6ed6-468d-82bf-5f5686c5a012} - {bced8d73-9488-486c-88d7-c3e7a47dcf2a} + {8f448dd8-9f5f-4ee4-ad03-77ec8ba6c4be} - {af280bac-26d0-498d-a091-77b1a6c2919e} + {3aaf7c6f-7bdd-43a3-ac38-e061ec458028} - {b06eeb02-9870-430c-844f-9ddb6d0cca87} + {c536054f-a8a4-46c7-9d6d-a23f3481fd8b} - {f840386a-0541-4fb0-94d9-4b13d33f1052} + {e4ef790c-01c0-43a8-a23c-e48e99682662} - {718dced1-ae6d-4116-a558-4860b09d6af6} + {e42c99d2-8516-454c-9f11-76224053945d} - {356e3a77-343d-458a-a671-f347efd21035} + {9500b16a-5021-45bf-866f-cf5acec79408} - {f056e10e-6f54-4007-a312-49febbc8541b} + {b0a64912-64e5-4f83-b97b-817edfd81fac} - {f38fe597-433e-4bcd-89cd-e57a2f9d2ea3} + {b2e18da9-0f8c-42cd-84ab-8ac611b59805} - {de61f07f-b9f1-4691-ab6d-dcb607cf41a3} + {f2a680bc-730d-448f-960c-30dfe1a51c4f} - {225cb557-f6f7-4689-a7bb-434f62a4e1b3} + {7d86c36f-9864-475f-9b28-7ec862735a4d} - {c95376ab-05ff-4bc6-afc1-6271c09873d1} + {b48260d2-4022-42b6-988e-b28e39345444} - {73a3109c-c78f-4323-9ab5-c49afc9546c8} + {12ce2095-0b63-448d-8619-eedf3adf3170} - {fb248483-4141-49fa-8c84-e40408029187} + {f0ad3d9c-3acd-438a-abfe-81997c3e5fa9} - {14e50b00-d39a-4d73-a542-c52984879990} + {715aa320-3965-411c-a67a-6a55931c4b8a} - {b1952662-bfbb-40ec-9fa5-511cf9c97d95} + {49a4e73d-a1b9-424a-be3e-0c635b47551b} - {58cc9964-649f-4d0a-96be-cd1bd09b5164} + {2743c350-58e4-4de9-a043-e7ca653d0ad5} - {08a01311-31e8-4659-8aae-61781dcd64eb} + {3db82e12-65bd-4d2c-ab06-36ba640b5dee} - {f1cbd846-9f6a-455f-9bac-38d5467e59a9} + {4457ec56-9bde-4d5e-86a3-839202c01f49} - {ae60d501-8703-4cbb-8f09-4b83fdf062e2} + {ea5c59cc-9844-44a4-b108-75f96ef3332e} - {46dac0df-f84f-4574-b2c2-d39e4692e3db} + {c4d2c6ac-5d2c-4b6d-9913-a0bc431b56f0} + + + {0587daf7-29be-4a18-a67d-0261e8630b0d} + + + {b0f0fc71-db47-4bfd-a360-7222e15ee3d8} + + + {41095bc8-537a-4def-a7c0-efd4b45e64f2} - {5c9102d1-5f6e-4f99-8a71-0ff41ed303ac} + {0be4eb52-0a25-40da-884c-513fbab72b9c} - {7988d98a-4743-466a-ad13-3dc5c299cc55} + {6be2c1e1-dcb5-4d07-808c-be41d09e9b7d} - {1469b9a9-9dea-4377-8862-ea32a54a9396} + {b963bab6-61f5-4f34-8d53-d65dd135bd6c} - {62fa9c70-a870-424d-a4c4-48dfc5ab026d} + {55efb30a-51b3-48d4-83a4-f0ab03c6fb07} - {36d4409e-da1a-4952-8a5e-12e8588370d8} + {6960e095-591c-4bb4-8a40-da02a264705a} - {c3eaac3d-8266-4bfa-ab70-9854c1b927fa} + {efd4dbfa-2b21-4fe9-a142-03e7ccfce9fa} @@ -138,6 +147,9 @@ NetCore\Header Files + + NetCore\Header Files + NetCore\Header Files @@ -411,6 +423,15 @@ ICMP\Header Files + + NTP\Header Files + + + NTP\Header Files + + + NTP\Header Files + Logging\Header Files @@ -426,9 +447,6 @@ WebSocket\Header Files - - NetCore\Header Files - @@ -440,6 +458,9 @@ NetCore\Source Files + + NetCore\Source Files + NetCore\Source Files @@ -695,6 +716,15 @@ ICMP\Source Files + + NTP\Source Files + + + NTP\Source Files + + + NTP\Source Files + Logging\Source Files @@ -710,9 +740,6 @@ WebSocket\Source Files - - NetCore\Source Files - diff --git a/Net/Net_x64_vs110.vcxproj b/Net/Net_x64_vs110.vcxproj index dc70d65ed..e1794a67f 100644 --- a/Net/Net_x64_vs110.vcxproj +++ b/Net/Net_x64_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoNet64d - PocoNetmdd - PocoNetmtd - PocoNet64 - PocoNetmd - PocoNetmt + <_ProjectFileVersion>11.0.61030.0 + PocoNet64d + PocoNetmdd + PocoNetmtd + PocoNet64 + PocoNetmd + PocoNetmt - + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -124,7 +136,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -138,7 +149,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -157,7 +168,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -172,7 +182,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,13 +200,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoNetmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +224,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoNetmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,13 +247,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoNetmdd.lib - + Disabled OnlyExplicitInline @@ -264,7 +271,6 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoNetmd.lib @@ -278,9 +284,6 @@ - - - @@ -369,6 +372,9 @@ + + + @@ -383,9 +389,6 @@ - - - @@ -468,6 +471,9 @@ + + + @@ -476,12 +482,12 @@ - true - true - true - true - true - true + true + true + true + true + true + true diff --git a/Net/Net_x64_vs110.vcxproj.filters b/Net/Net_x64_vs110.vcxproj.filters index a2079aa68..f68fb02da 100644 --- a/Net/Net_x64_vs110.vcxproj.filters +++ b/Net/Net_x64_vs110.vcxproj.filters @@ -2,139 +2,139 @@ - {f5c14a6e-f421-4392-b282-ff5c78811048} + {c5085ddf-8784-4203-9cdf-8d69b5442135} - {f000a1b0-df38-467f-9d1e-b06f03c7e7be} + {197de0a9-52ae-4dfd-9845-378faae7a75d} - {7fc5dc26-8b25-4557-8151-ff5727c3a3e1} + {71c6dfe4-1cc9-49f6-b500-d5a0b7468fc6} - {cfa3bc22-f1e0-4051-98e1-48b45c08260c} + {485aa434-9874-40ec-aacb-908fb152e687} - {ef9e853a-e078-47d1-8495-7ebf5a12d6ab} + {c66042a7-efa7-4e14-a55a-8d94a104975f} - {8e5dc4d7-af79-4d50-aa0e-1863db5a946e} + {05d7d478-0de3-4911-8cd7-7f2aa82673ac} - {e218a96c-a9e6-4a00-a6f5-616cf0b8cd70} + {08d9b32c-49c0-46a1-978c-2923ada3f7e9} - {39a6e47e-c373-46a4-9797-65ecdba198ad} + {7e13b547-2c3d-43ea-a230-0858bc39cab9} - {5ff338ed-4bb8-458c-89a1-dfeab0b5ecf1} + {8cbd9ab5-cd0d-4b04-a033-350bc56d71bc} - {e08f08f7-d316-4148-ab83-72a28343bc7c} + {5f4189f8-afb6-4361-8354-190529a2db03} - {d8047ab8-d8e9-4b3f-9d15-972bbaf7cb77} + {cc4ca6a8-e826-4216-9341-f1680f207def} - {a6ed56b8-b1c9-4ee5-be33-1f476c6c9cb8} + {56b978d3-17ee-49d1-9d65-af5de30e692f} - {5913ae13-407d-46d4-965e-4e704749287a} + {dca62857-5f95-4f12-87d1-37276ee56608} - {d7de78e6-859c-471c-90c0-6203e6fbc5c3} + {9744ae4e-9f00-4052-bfdd-f7814c846f2c} - {48abb7e6-1f49-4441-a50d-65aaaf89df93} + {cf3ba7c5-559b-4716-bd6e-d947772b01b9} - {d104e8d6-5227-4478-8ff7-42a1b1a6e828} + {55ce8909-ce9d-4ed5-8069-aa0d822f5086} - {e7be3d29-7ded-44d4-8138-08d0c8bbe0ba} + {2f6e5da9-dca8-4a9b-9c58-f605685a5c22} - {142762c3-465f-49d7-b9fd-f9fe96799d67} + {5b2483c9-eef9-4e2b-a6fe-650985281eb6} - {e8b1e4cf-bbff-4c0b-a2da-05b51f3fa17b} + {256617b0-9d11-4ddd-b30a-f56e68751ca5} - {54d8dc43-6251-46db-8ae8-1c55e1d86f1d} + {4544200e-6702-4296-9937-380b0a59c061} - {5667e05b-0b10-498f-9fbc-c89f67e4974a} + {432ee006-6d8a-4f26-9f97-dcf193fc204a} - {74834f9a-1e90-4051-a027-433a906a9252} + {e8991551-aa1b-4a02-9d7b-29a50dce3d22} - {c4fd5690-f2fc-4088-a010-905f4ea434d6} + {81390a9d-360a-4107-b627-1b6c89a3d304} - {b1f23355-95dd-47d8-a8fd-eec837f4537f} + {37766398-8621-4d1d-8f63-97b6acb2841e} - {b1f01317-05d1-4a9b-8b5d-7c9f37916d04} + {5de3a075-e011-4495-b76c-65977e9494fa} - {76a13dc7-95cf-4334-8516-f2fe32d675f4} + {b1fbfe77-d7a4-4512-88d5-2ea4252c3a44} - {c4a4e6af-8127-487b-b5e6-c389a2912a0e} + {87fc3dae-95c2-4fb0-aeff-896506690e0c} - {e33482e7-f57c-4d8f-a838-b122e2aab325} + {a769f9df-79af-4657-823b-a6dde2ab9809} - {72c401d7-3c6e-4a28-8224-19591609cdff} + {19f6c3be-06c4-4d5e-b464-2a48bf8607cd} - {568219dc-7876-4ced-b124-71e73a64c6bb} + {81b4cb13-2e3f-44dc-af1c-3a9225158c74} - {ad5b9c16-e7b4-43ca-b4d2-9e197ede3ed5} + {5500b295-ee75-48f7-aacd-8c24508710ee} - {a5144bfb-efd8-4a8f-bd8f-62a436c2191d} + {5f57d072-24ca-4170-829d-15dcf3d3bcab} - {ebf092f8-033a-43dc-98b0-2dc340f7e617} + {7c812ad5-a233-4f61-b68a-3b736434e70d} - {fe6221d4-0f2d-4f68-baf0-b9301b8fe88f} + {42839e23-2b2c-4115-a746-6d4b566914f7} - {57465ff8-2989-471b-b50a-ed34562a8b4f} + {7cb31c7d-14ad-497b-8e5d-364f8f63b031} - {0a319d35-3502-402b-969a-1a0d46c1ca31} - - - {b2c4b363-274c-4458-b480-3052da794996} - - - {97860448-64d5-4043-8863-ab9e304c61ae} - - - {004afbd5-b224-409f-a725-d69d61b312ae} - - - {46d1a77d-35ad-4283-9739-1a25e7008704} - - - {21e3d60a-db44-467a-9032-6b0e2c0d171c} - - - {f40e009f-a900-4907-b60c-5e5b4f4ac9f0} + {75faca6e-1a2d-4632-b5c1-8ec465343ba3} - {6f56f6fc-cf6c-4789-9ef3-0492f10e9769} - - - {9b4cecde-844c-4b13-b1f2-98b278c4a825} + {60df2f03-b736-4468-ab34-249a095e7dc6} - {2198eae4-f3e8-40e8-a727-df7456a09e4b} + {b7be512e-5852-492b-84f7-4262004df2b8} + + + {5f5aeeb9-b6cb-45cc-ae7c-21afc0a6c618} + + + {7773ae58-5912-4ebe-8ffb-273457512c54} + + + {dc7690d6-a96e-4c77-9602-ec173cea3a77} + + + {295e591d-7e08-49ac-a97c-2d2b9d0f690b} + + + {d72fc387-ab1a-4724-aae6-501b75f99b9f} + + + {a747b192-f6cc-4da1-aa06-eebe6e4ba48b} + + + {bf175142-407e-475e-96f4-a410db4a87a8} @@ -423,6 +423,15 @@ ICMP\Header Files + + NTP\Header Files + + + NTP\Header Files + + + NTP\Header Files + Logging\Header Files @@ -438,15 +447,6 @@ WebSocket\Header Files - - NTP\Header Files - - - NTP\Header Files - - - NTP\Header Files - @@ -716,6 +716,15 @@ ICMP\Source Files + + NTP\Source Files + + + NTP\Source Files + + + NTP\Source Files + Logging\Source Files @@ -731,15 +740,6 @@ WebSocket\Source Files - - NTP\Source Files - - - NTP\Source Files - - - NTP\Source Files - diff --git a/Net/Net_x64_vs120.sln b/Net/Net_x64_vs120.sln index 1dfa39f67..ff01f0bab 100644 --- a/Net/Net_x64_vs120.sln +++ b/Net/Net_x64_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Net", "Net_x64_vs120.vcxproj", "{B057A1FE-09F7-465E-B8B5-E1B659051D76}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_x64_vs120.vcxproj", "{D5EFBF27-B934-4B8D-8AE5-6EC00374819C}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_shared|x64.ActiveCfg = debug_shared|x64 {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_shared|x64.Build.0 = debug_shared|x64 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_shared|x64.Deploy.0 = debug_shared|x64 {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_shared|x64.ActiveCfg = release_shared|x64 {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_shared|x64.Build.0 = release_shared|x64 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|x64.Build.0 = release_static_md|x64 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_shared|x64.Deploy.0 = release_shared|x64 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|x64.Build.0 = release_static_md|x64 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|x64.Deploy.0 = release_static_md|x64 {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_shared|x64.ActiveCfg = debug_shared|x64 {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_shared|x64.Build.0 = debug_shared|x64 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_shared|x64.Deploy.0 = debug_shared|x64 {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_shared|x64.ActiveCfg = release_shared|x64 {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_shared|x64.Build.0 = release_shared|x64 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|x64.Build.0 = release_static_md|x64 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_shared|x64.Deploy.0 = release_shared|x64 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|x64.Build.0 = release_static_md|x64 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Net/Net_x64_vs120.vcxproj b/Net/Net_x64_vs120.vcxproj index f670b4c4e..bf17bf8d7 100644 --- a/Net/Net_x64_vs120.vcxproj +++ b/Net/Net_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Net Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoNet64d PocoNetmdd PocoNetmtd @@ -107,6 +93,32 @@ PocoNetmd PocoNetmt + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + Disabled @@ -120,11 +132,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -153,11 +164,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -185,12 +195,11 @@ true true true - + ..\lib64\PocoNetmtd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoNetmtd.lib @@ -211,11 +220,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoNetmt.lib @@ -234,12 +242,11 @@ true true true - + ..\lib64\PocoNetmdd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoNetmdd.lib @@ -260,219 +267,218 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoNetmd.lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -484,6 +490,6 @@ true - - - \ No newline at end of file + + + diff --git a/Net/Net_x64_vs120.vcxproj.filters b/Net/Net_x64_vs120.vcxproj.filters index a2079aa68..b06c1663e 100644 --- a/Net/Net_x64_vs120.vcxproj.filters +++ b/Net/Net_x64_vs120.vcxproj.filters @@ -2,139 +2,139 @@ - {f5c14a6e-f421-4392-b282-ff5c78811048} + {c81bcb8a-f4bd-4a1d-b807-e72c13ba9f7d} - {f000a1b0-df38-467f-9d1e-b06f03c7e7be} + {b4895d74-7d0e-4277-9d8b-ac9df266f5e1} - {7fc5dc26-8b25-4557-8151-ff5727c3a3e1} + {6da504c2-c951-4a84-be82-0252bbc70b2a} - {cfa3bc22-f1e0-4051-98e1-48b45c08260c} + {d2b5852a-0a25-4d9e-86c1-07e06df6861b} - {ef9e853a-e078-47d1-8495-7ebf5a12d6ab} + {0e362fa6-b01a-47f9-bbf5-647da10be8d6} - {8e5dc4d7-af79-4d50-aa0e-1863db5a946e} + {ef21d08d-ae83-4fdc-9f38-fcfe95954eb2} - {e218a96c-a9e6-4a00-a6f5-616cf0b8cd70} + {0ca67dd8-7516-4c92-ba65-57df0a3949cd} - {39a6e47e-c373-46a4-9797-65ecdba198ad} + {4cae1937-f090-4880-8812-0413353d0501} - {5ff338ed-4bb8-458c-89a1-dfeab0b5ecf1} + {a2f8a178-f20b-4300-a149-819ab3ba1e7d} - {e08f08f7-d316-4148-ab83-72a28343bc7c} + {4c243b9d-3187-4ad7-81d3-3a9ba379e425} - {d8047ab8-d8e9-4b3f-9d15-972bbaf7cb77} + {c0c677fc-3100-4a2a-8b38-13aa4f9437b8} - {a6ed56b8-b1c9-4ee5-be33-1f476c6c9cb8} + {b2268d10-d1a7-4bb1-9a2b-a2b08cf3e11c} - {5913ae13-407d-46d4-965e-4e704749287a} + {fe88c7cb-00b6-479a-a48b-3a5df8645fd8} - {d7de78e6-859c-471c-90c0-6203e6fbc5c3} + {19633ec8-2141-45b9-9a3b-148eebac4601} - {48abb7e6-1f49-4441-a50d-65aaaf89df93} + {62a45608-fe09-40b5-a743-561529bb017b} - {d104e8d6-5227-4478-8ff7-42a1b1a6e828} + {e93e1b84-3dfb-4fe5-8a2c-0e0e36cbd448} - {e7be3d29-7ded-44d4-8138-08d0c8bbe0ba} + {082683d3-4e6b-4d16-8f9e-7772b52b2326} - {142762c3-465f-49d7-b9fd-f9fe96799d67} + {c96689c1-9d31-4652-8a3f-8fc268ffc649} - {e8b1e4cf-bbff-4c0b-a2da-05b51f3fa17b} + {652923d4-3a58-467c-9610-1dc008f91e2f} - {54d8dc43-6251-46db-8ae8-1c55e1d86f1d} + {c08d36b0-f47c-4b58-8e35-413eb7c95745} - {5667e05b-0b10-498f-9fbc-c89f67e4974a} + {ed69b49a-a9c8-4e3e-8c55-a82eff6dfa3c} - {74834f9a-1e90-4051-a027-433a906a9252} + {daa56170-8ac6-431e-88ec-4ec2a261cfaa} - {c4fd5690-f2fc-4088-a010-905f4ea434d6} + {3b047d27-bbdb-4aee-b124-58759d002371} - {b1f23355-95dd-47d8-a8fd-eec837f4537f} + {24f24808-90cc-4060-b1bb-4c1c686455b3} - {b1f01317-05d1-4a9b-8b5d-7c9f37916d04} + {d4cef422-e320-49eb-888c-31bc5ae33dc2} - {76a13dc7-95cf-4334-8516-f2fe32d675f4} + {65c4420f-7a01-4383-9685-890fa4db4e97} - {c4a4e6af-8127-487b-b5e6-c389a2912a0e} + {971c96c8-6322-455d-ab5b-8bae5fcf52cd} - {e33482e7-f57c-4d8f-a838-b122e2aab325} + {5e9ca994-29bd-4264-b0d6-e2df30f64712} - {72c401d7-3c6e-4a28-8224-19591609cdff} + {0dd46ada-6158-481c-9c74-37e21fdfe9dc} - {568219dc-7876-4ced-b124-71e73a64c6bb} + {7a1f0820-a9cc-45f9-b801-f0e0e62baee8} - {ad5b9c16-e7b4-43ca-b4d2-9e197ede3ed5} + {79f192e9-670f-46c0-9924-7ae1a9ceb1b8} - {a5144bfb-efd8-4a8f-bd8f-62a436c2191d} + {c9d81435-aec9-4b63-9bfc-801a7be5282b} - {ebf092f8-033a-43dc-98b0-2dc340f7e617} + {5e64d3fc-7ae6-4514-9357-f91eb909a208} - {fe6221d4-0f2d-4f68-baf0-b9301b8fe88f} + {30bfe833-bfb8-4f67-bb0c-a2b52ba5a00f} - {57465ff8-2989-471b-b50a-ed34562a8b4f} + {d1b9b109-b2b9-478d-9c7a-c77956a9d3bf} - {0a319d35-3502-402b-969a-1a0d46c1ca31} - - - {b2c4b363-274c-4458-b480-3052da794996} - - - {97860448-64d5-4043-8863-ab9e304c61ae} - - - {004afbd5-b224-409f-a725-d69d61b312ae} - - - {46d1a77d-35ad-4283-9739-1a25e7008704} - - - {21e3d60a-db44-467a-9032-6b0e2c0d171c} - - - {f40e009f-a900-4907-b60c-5e5b4f4ac9f0} + {7affbf87-abad-467d-a497-777d5971acf8} - {6f56f6fc-cf6c-4789-9ef3-0492f10e9769} - - - {9b4cecde-844c-4b13-b1f2-98b278c4a825} + {8f59570b-86aa-422a-bb54-5009298439e0} - {2198eae4-f3e8-40e8-a727-df7456a09e4b} + {1eca4a9d-af7d-42c3-9bde-05833e5ad968} + + + {81bd7514-94d2-47ca-a643-ecafa8b00a96} + + + {837db365-4ed7-4d9c-9087-0150a3e9a45b} + + + {3ca0337b-c6cd-4561-8d5a-96f025ba3bfe} + + + {abab3509-34ff-40b3-88e1-766851705a63} + + + {e2470f36-c7af-4765-8c24-f3042c0e395c} + + + {25c00fd7-ede0-479f-9a5a-0b19098ee114} + + + {761a2129-afdb-4e1c-a5c7-eafa4889e77a} @@ -423,6 +423,15 @@ ICMP\Header Files + + NTP\Header Files + + + NTP\Header Files + + + NTP\Header Files + Logging\Header Files @@ -438,15 +447,6 @@ WebSocket\Header Files - - NTP\Header Files - - - NTP\Header Files - - - NTP\Header Files - @@ -716,6 +716,15 @@ ICMP\Source Files + + NTP\Source Files + + + NTP\Source Files + + + NTP\Source Files + Logging\Source Files @@ -731,15 +740,6 @@ WebSocket\Source Files - - NTP\Source Files - - - NTP\Source Files - - - NTP\Source Files - diff --git a/Net/samples/EchoServer/EchoServer_WEC2013_vs110.vcxproj.filters b/Net/samples/EchoServer/EchoServer_WEC2013_vs110.vcxproj.filters index 1c7ccef56..3172f21f2 100644 --- a/Net/samples/EchoServer/EchoServer_WEC2013_vs110.vcxproj.filters +++ b/Net/samples/EchoServer/EchoServer_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {00d9a5a4-c1b3-427e-8a69-2405946741ca} + {db08b3fc-e20c-4c75-ae86-54a52592bdad} - {56eb973c-97db-4285-a835-577f87cd7e4b} + {326895b3-19cf-4d7c-bfce-5ec89595551c} diff --git a/Net/samples/EchoServer/EchoServer_vs100.vcxproj b/Net/samples/EchoServer/EchoServer_vs100.vcxproj index 262d57c6c..b76367539 100644 --- a/Net/samples/EchoServer/EchoServer_vs100.vcxproj +++ b/Net/samples/EchoServer/EchoServer_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - EchoServerd - EchoServerd - EchoServerd - EchoServer - EchoServer - EchoServer + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + EchoServerd + EchoServerd + EchoServerd + EchoServer + EchoServer + EchoServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Net/samples/EchoServer/EchoServer_vs100.vcxproj.filters b/Net/samples/EchoServer/EchoServer_vs100.vcxproj.filters index 625b13b6b..0e1c27d3c 100644 --- a/Net/samples/EchoServer/EchoServer_vs100.vcxproj.filters +++ b/Net/samples/EchoServer/EchoServer_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {b764d7e3-834a-4e72-bc89-0ffbae90fe22} + {df327556-587b-4265-827d-8be2f869b4af} - {e6acbe36-6638-4a9a-969f-3681f0f99048} + {82daa0ae-c6d1-4aa7-a4df-c096f7b0ff49} diff --git a/Net/samples/EchoServer/EchoServer_vs110.vcxproj b/Net/samples/EchoServer/EchoServer_vs110.vcxproj index 835c9992f..b78f2fbe9 100644 --- a/Net/samples/EchoServer/EchoServer_vs110.vcxproj +++ b/Net/samples/EchoServer/EchoServer_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - EchoServerd - EchoServerd - EchoServerd - EchoServer - EchoServer - EchoServer + <_ProjectFileVersion>11.0.61030.0 + EchoServerd + EchoServerd + EchoServerd + EchoServer + EchoServer + EchoServer - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/EchoServer/EchoServer_vs110.vcxproj.filters b/Net/samples/EchoServer/EchoServer_vs110.vcxproj.filters index e47fb6c5b..2079b9014 100644 --- a/Net/samples/EchoServer/EchoServer_vs110.vcxproj.filters +++ b/Net/samples/EchoServer/EchoServer_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {adef2044-baa7-4791-b340-1706e176755c} + {1d96c4ec-c1fd-4d3c-adee-6ae1890d21e4} - {3d29e54e-10bb-4213-8fc8-82d7bd4e1b5d} + {ef6c4345-dd4a-482b-8860-2b16dd854b60} diff --git a/Net/samples/EchoServer/EchoServer_vs120.vcxproj b/Net/samples/EchoServer/EchoServer_vs120.vcxproj index 6fa1895c5..fd4670cad 100644 --- a/Net/samples/EchoServer/EchoServer_vs120.vcxproj +++ b/Net/samples/EchoServer/EchoServer_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ EchoServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 EchoServerd EchoServerd EchoServerd @@ -111,6 +93,36 @@ EchoServer EchoServer + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/Net/samples/EchoServer/EchoServer_vs120.vcxproj.filters b/Net/samples/EchoServer/EchoServer_vs120.vcxproj.filters index e47fb6c5b..846a6d384 100644 --- a/Net/samples/EchoServer/EchoServer_vs120.vcxproj.filters +++ b/Net/samples/EchoServer/EchoServer_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {adef2044-baa7-4791-b340-1706e176755c} + {37c0b30b-33e2-4a69-b706-3c32163fe8ff} - {3d29e54e-10bb-4213-8fc8-82d7bd4e1b5d} + {bc587434-6b95-41e0-98cc-5ec621930fe4} diff --git a/Net/samples/EchoServer/EchoServer_x64_vs100.vcxproj b/Net/samples/EchoServer/EchoServer_x64_vs100.vcxproj index 1bcfe14f6..c29711b61 100644 --- a/Net/samples/EchoServer/EchoServer_x64_vs100.vcxproj +++ b/Net/samples/EchoServer/EchoServer_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - EchoServerd - EchoServerd - EchoServerd - EchoServer - EchoServer - EchoServer + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + EchoServerd + EchoServerd + EchoServerd + EchoServer + EchoServer + EchoServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Net/samples/EchoServer/EchoServer_x64_vs100.vcxproj.filters b/Net/samples/EchoServer/EchoServer_x64_vs100.vcxproj.filters index d677dc8fc..9fce060d9 100644 --- a/Net/samples/EchoServer/EchoServer_x64_vs100.vcxproj.filters +++ b/Net/samples/EchoServer/EchoServer_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {c39008a0-c1e8-4759-8551-53910259ad83} + {7b819d00-56d5-46b6-aaf1-1e9a623cf8e0} - {504bddf1-7a1f-43f2-8cf8-2b05e6191cf1} + {19dd9832-e211-4d4f-a72b-5b5883cb4379} diff --git a/Net/samples/EchoServer/EchoServer_x64_vs110.vcxproj b/Net/samples/EchoServer/EchoServer_x64_vs110.vcxproj index d4e790eac..3a10c9007 100644 --- a/Net/samples/EchoServer/EchoServer_x64_vs110.vcxproj +++ b/Net/samples/EchoServer/EchoServer_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - EchoServerd - EchoServerd - EchoServerd - EchoServer - EchoServer - EchoServer + <_ProjectFileVersion>11.0.61030.0 + EchoServerd + EchoServerd + EchoServerd + EchoServer + EchoServer + EchoServer - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/EchoServer/EchoServer_x64_vs110.vcxproj.filters b/Net/samples/EchoServer/EchoServer_x64_vs110.vcxproj.filters index 2995bda77..0d9ca5f5c 100644 --- a/Net/samples/EchoServer/EchoServer_x64_vs110.vcxproj.filters +++ b/Net/samples/EchoServer/EchoServer_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {45139019-64c3-4c30-bbef-25d192e85389} + {6ea28075-9f38-4b15-8a0b-6731c7020023} - {a3c2ecae-5950-457e-917f-c0cd6faaf559} + {44b413a3-d19c-4a21-a1d8-9aa2b135384f} diff --git a/Net/samples/EchoServer/EchoServer_x64_vs120.vcxproj b/Net/samples/EchoServer/EchoServer_x64_vs120.vcxproj index 369b70b45..82eafbdf3 100644 --- a/Net/samples/EchoServer/EchoServer_x64_vs120.vcxproj +++ b/Net/samples/EchoServer/EchoServer_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ EchoServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 EchoServerd EchoServerd EchoServerd @@ -111,6 +93,36 @@ EchoServer EchoServer + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/Net/samples/EchoServer/EchoServer_x64_vs120.vcxproj.filters b/Net/samples/EchoServer/EchoServer_x64_vs120.vcxproj.filters index 2995bda77..0c807f848 100644 --- a/Net/samples/EchoServer/EchoServer_x64_vs120.vcxproj.filters +++ b/Net/samples/EchoServer/EchoServer_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {45139019-64c3-4c30-bbef-25d192e85389} + {4d7fee21-617e-4048-a170-bd14e3410d21} - {a3c2ecae-5950-457e-917f-c0cd6faaf559} + {edfc2f0b-8958-444c-bf69-8ac3b7ef9965} diff --git a/Net/samples/HTTPFormServer/HTTPFormServer_WEC2013_vs110.vcxproj.filters b/Net/samples/HTTPFormServer/HTTPFormServer_WEC2013_vs110.vcxproj.filters index 567e993ab..9e35efbda 100644 --- a/Net/samples/HTTPFormServer/HTTPFormServer_WEC2013_vs110.vcxproj.filters +++ b/Net/samples/HTTPFormServer/HTTPFormServer_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {4ba5cc78-860a-4ac9-93d0-caec3dda24ac} + {a60e575f-f2e6-4d85-8c2f-2010f721df38} - {ddca22e6-be54-40d8-8e7a-01133df08dcd} + {25bbd696-6c36-4576-8bb9-34889aaed53a} diff --git a/Net/samples/HTTPFormServer/HTTPFormServer_vs100.vcxproj b/Net/samples/HTTPFormServer/HTTPFormServer_vs100.vcxproj index b83442e9d..68911d78f 100644 --- a/Net/samples/HTTPFormServer/HTTPFormServer_vs100.vcxproj +++ b/Net/samples/HTTPFormServer/HTTPFormServer_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - HTTPFormServerd - HTTPFormServerd - HTTPFormServerd - HTTPFormServer - HTTPFormServer - HTTPFormServer + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + HTTPFormServerd + HTTPFormServerd + HTTPFormServerd + HTTPFormServer + HTTPFormServer + HTTPFormServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Net/samples/HTTPFormServer/HTTPFormServer_vs100.vcxproj.filters b/Net/samples/HTTPFormServer/HTTPFormServer_vs100.vcxproj.filters index c6f4f34fb..dc2dc53b5 100644 --- a/Net/samples/HTTPFormServer/HTTPFormServer_vs100.vcxproj.filters +++ b/Net/samples/HTTPFormServer/HTTPFormServer_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {636c3d2e-6f84-4567-804f-e5395249041c} + {430dad15-3155-4145-ae6c-26b6b15dbe20} - {310f9890-ba52-40f5-9de0-a6bf3c6d8bfd} + {cf11a0c3-f77e-4f20-ad43-af003ea836dd} diff --git a/Net/samples/HTTPFormServer/HTTPFormServer_vs110.vcxproj b/Net/samples/HTTPFormServer/HTTPFormServer_vs110.vcxproj index c91294c28..190d857cc 100644 --- a/Net/samples/HTTPFormServer/HTTPFormServer_vs110.vcxproj +++ b/Net/samples/HTTPFormServer/HTTPFormServer_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - HTTPFormServerd - HTTPFormServerd - HTTPFormServerd - HTTPFormServer - HTTPFormServer - HTTPFormServer + <_ProjectFileVersion>11.0.61030.0 + HTTPFormServerd + HTTPFormServerd + HTTPFormServerd + HTTPFormServer + HTTPFormServer + HTTPFormServer - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/HTTPFormServer/HTTPFormServer_vs110.vcxproj.filters b/Net/samples/HTTPFormServer/HTTPFormServer_vs110.vcxproj.filters index acab884f2..757b153e5 100644 --- a/Net/samples/HTTPFormServer/HTTPFormServer_vs110.vcxproj.filters +++ b/Net/samples/HTTPFormServer/HTTPFormServer_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {12e05a61-fdd1-4469-befb-96a32df027a4} + {5174bc5e-39d0-48b3-857b-9f2f1011b1bb} - {60d25a03-1e9c-4cc6-a058-f4c9efeeb54f} + {179781f8-1185-408c-9467-29468d663069} diff --git a/Net/samples/HTTPFormServer/HTTPFormServer_vs120.vcxproj b/Net/samples/HTTPFormServer/HTTPFormServer_vs120.vcxproj index 6e31d8cec..be854aea5 100644 --- a/Net/samples/HTTPFormServer/HTTPFormServer_vs120.vcxproj +++ b/Net/samples/HTTPFormServer/HTTPFormServer_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ HTTPFormServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 HTTPFormServerd HTTPFormServerd HTTPFormServerd @@ -111,6 +93,36 @@ HTTPFormServer HTTPFormServer + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/Net/samples/HTTPFormServer/HTTPFormServer_vs120.vcxproj.filters b/Net/samples/HTTPFormServer/HTTPFormServer_vs120.vcxproj.filters index acab884f2..19b445cd8 100644 --- a/Net/samples/HTTPFormServer/HTTPFormServer_vs120.vcxproj.filters +++ b/Net/samples/HTTPFormServer/HTTPFormServer_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {12e05a61-fdd1-4469-befb-96a32df027a4} + {056566cc-b36c-4ddf-bc89-a86bd5474c69} - {60d25a03-1e9c-4cc6-a058-f4c9efeeb54f} + {31bfc202-48f8-4bfc-96cd-a8c584467d81} diff --git a/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs100.vcxproj b/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs100.vcxproj index fad51e304..578fedc63 100644 --- a/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs100.vcxproj +++ b/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - HTTPFormServerd - HTTPFormServerd - HTTPFormServerd - HTTPFormServer - HTTPFormServer - HTTPFormServer + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + HTTPFormServerd + HTTPFormServerd + HTTPFormServerd + HTTPFormServer + HTTPFormServer + HTTPFormServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs100.vcxproj.filters b/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs100.vcxproj.filters index 361d36cfe..8abc744b2 100644 --- a/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs100.vcxproj.filters +++ b/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {efd7e5f3-74b9-4b37-b7af-c6d97a0e7663} + {21fc7af6-438c-4400-ba82-2c4b2b6707df} - {b2a18634-c875-400d-8d0c-64b998553368} + {3d65a4d7-3465-48b5-82c1-75f15a0bbbbb} diff --git a/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs110.vcxproj b/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs110.vcxproj index bfbcf959a..7b8c11a6c 100644 --- a/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs110.vcxproj +++ b/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - HTTPFormServerd - HTTPFormServerd - HTTPFormServerd - HTTPFormServer - HTTPFormServer - HTTPFormServer + <_ProjectFileVersion>11.0.61030.0 + HTTPFormServerd + HTTPFormServerd + HTTPFormServerd + HTTPFormServer + HTTPFormServer + HTTPFormServer - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs110.vcxproj.filters b/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs110.vcxproj.filters index 006b162fd..72a38b274 100644 --- a/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs110.vcxproj.filters +++ b/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {1bf85f58-1556-4381-a24e-ca00c788e68d} + {c4d9f92c-7d08-41e0-9756-2be424cbb5c3} - {9e97e2f3-ca9d-419c-b3ba-3037d3e67ef4} + {7386a300-5e18-4daa-bb7e-d76a1f814fa6} diff --git a/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs120.vcxproj b/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs120.vcxproj index 534a701c2..1ceff8837 100644 --- a/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs120.vcxproj +++ b/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ HTTPFormServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 HTTPFormServerd HTTPFormServerd HTTPFormServerd @@ -111,6 +93,36 @@ HTTPFormServer HTTPFormServer + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs120.vcxproj.filters b/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs120.vcxproj.filters index 006b162fd..1505d62f2 100644 --- a/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs120.vcxproj.filters +++ b/Net/samples/HTTPFormServer/HTTPFormServer_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {1bf85f58-1556-4381-a24e-ca00c788e68d} + {6cb3e315-ea78-4b7a-a2e3-4225956b7eb1} - {9e97e2f3-ca9d-419c-b3ba-3037d3e67ef4} + {f64a5660-87b3-4850-a3a8-763a039f0c9f} diff --git a/Net/samples/HTTPLoadTest/HTTPLoadTest_WEC2013_vs110.vcxproj.filters b/Net/samples/HTTPLoadTest/HTTPLoadTest_WEC2013_vs110.vcxproj.filters index 4ad911614..7138d64f6 100644 --- a/Net/samples/HTTPLoadTest/HTTPLoadTest_WEC2013_vs110.vcxproj.filters +++ b/Net/samples/HTTPLoadTest/HTTPLoadTest_WEC2013_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {e5e71371-304f-4461-9f5e-bb86c9a40890} + {98cf3f05-1feb-4fd3-bcdd-db577ef08027} diff --git a/Net/samples/HTTPLoadTest/HTTPLoadTest_vs100.vcxproj b/Net/samples/HTTPLoadTest/HTTPLoadTest_vs100.vcxproj index c6046cb10..79a4b4311 100644 --- a/Net/samples/HTTPLoadTest/HTTPLoadTest_vs100.vcxproj +++ b/Net/samples/HTTPLoadTest/HTTPLoadTest_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - HTTPLoadTestd - HTTPLoadTestd - HTTPLoadTestd - HTTPLoadTest - HTTPLoadTest - HTTPLoadTest + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + HTTPLoadTestd + HTTPLoadTestd + HTTPLoadTestd + HTTPLoadTest + HTTPLoadTest + HTTPLoadTest - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Net/samples/HTTPLoadTest/HTTPLoadTest_vs100.vcxproj.filters b/Net/samples/HTTPLoadTest/HTTPLoadTest_vs100.vcxproj.filters index d68a85a4f..61a30fcb5 100644 --- a/Net/samples/HTTPLoadTest/HTTPLoadTest_vs100.vcxproj.filters +++ b/Net/samples/HTTPLoadTest/HTTPLoadTest_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {33911ba1-f504-48ab-b673-297537a04cd3} + {71520969-bc29-4179-832e-838667d8ae6c} diff --git a/Net/samples/HTTPLoadTest/HTTPLoadTest_vs110.vcxproj b/Net/samples/HTTPLoadTest/HTTPLoadTest_vs110.vcxproj index 2d63bd437..a6cb61d23 100644 --- a/Net/samples/HTTPLoadTest/HTTPLoadTest_vs110.vcxproj +++ b/Net/samples/HTTPLoadTest/HTTPLoadTest_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - HTTPLoadTestd - HTTPLoadTestd - HTTPLoadTestd - HTTPLoadTest - HTTPLoadTest - HTTPLoadTest + <_ProjectFileVersion>11.0.61030.0 + HTTPLoadTestd + HTTPLoadTestd + HTTPLoadTestd + HTTPLoadTest + HTTPLoadTest + HTTPLoadTest - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/HTTPLoadTest/HTTPLoadTest_vs110.vcxproj.filters b/Net/samples/HTTPLoadTest/HTTPLoadTest_vs110.vcxproj.filters index 25d7a28d2..deeb341b2 100644 --- a/Net/samples/HTTPLoadTest/HTTPLoadTest_vs110.vcxproj.filters +++ b/Net/samples/HTTPLoadTest/HTTPLoadTest_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {08b90c1e-8078-4efa-bd16-049c494692b3} + {308a0f00-c74f-4954-9313-bafbe9304828} diff --git a/Net/samples/HTTPLoadTest/HTTPLoadTest_vs120.vcxproj b/Net/samples/HTTPLoadTest/HTTPLoadTest_vs120.vcxproj index 09e70f072..7d6d4b633 100644 --- a/Net/samples/HTTPLoadTest/HTTPLoadTest_vs120.vcxproj +++ b/Net/samples/HTTPLoadTest/HTTPLoadTest_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ HTTPLoadTest Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 HTTPLoadTestd HTTPLoadTestd HTTPLoadTestd @@ -111,6 +93,36 @@ HTTPLoadTest HTTPLoadTest + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Net/samples/HTTPLoadTest/HTTPLoadTest_vs120.vcxproj.filters b/Net/samples/HTTPLoadTest/HTTPLoadTest_vs120.vcxproj.filters index 25d7a28d2..ef54ceb20 100644 --- a/Net/samples/HTTPLoadTest/HTTPLoadTest_vs120.vcxproj.filters +++ b/Net/samples/HTTPLoadTest/HTTPLoadTest_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {08b90c1e-8078-4efa-bd16-049c494692b3} + {7f60b8f8-cb14-43b5-a175-15a671352546} diff --git a/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs100.vcxproj b/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs100.vcxproj index a12ed0269..2d59f90da 100644 --- a/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs100.vcxproj +++ b/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - HTTPLoadTestd - HTTPLoadTestd - HTTPLoadTestd - HTTPLoadTest - HTTPLoadTest - HTTPLoadTest + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + HTTPLoadTestd + HTTPLoadTestd + HTTPLoadTestd + HTTPLoadTest + HTTPLoadTest + HTTPLoadTest - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs100.vcxproj.filters b/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs100.vcxproj.filters index f1ce704ed..49440935c 100644 --- a/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs100.vcxproj.filters +++ b/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {8a2449fe-d344-4f1d-9dbf-d16098de7a29} + {8f6482fa-b5e0-4808-80c4-40e9fb709141} diff --git a/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs110.vcxproj b/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs110.vcxproj index d2b10956b..04aaef9c0 100644 --- a/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs110.vcxproj +++ b/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - HTTPLoadTestd - HTTPLoadTestd - HTTPLoadTestd - HTTPLoadTest - HTTPLoadTest - HTTPLoadTest + <_ProjectFileVersion>11.0.61030.0 + HTTPLoadTestd + HTTPLoadTestd + HTTPLoadTestd + HTTPLoadTest + HTTPLoadTest + HTTPLoadTest - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs110.vcxproj.filters b/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs110.vcxproj.filters index fc9f33a65..bae6d626f 100644 --- a/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs110.vcxproj.filters +++ b/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {b19bb397-1e35-4ed5-acdb-6852f6249e19} + {3a85b18d-17ec-458f-a357-74867204870e} diff --git a/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs120.vcxproj b/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs120.vcxproj index eb7c19ede..53a0bbffb 100644 --- a/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs120.vcxproj +++ b/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ HTTPLoadTest Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 HTTPLoadTestd HTTPLoadTestd HTTPLoadTestd @@ -111,6 +93,36 @@ HTTPLoadTest HTTPLoadTest + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs120.vcxproj.filters b/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs120.vcxproj.filters index fc9f33a65..1d4883a15 100644 --- a/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs120.vcxproj.filters +++ b/Net/samples/HTTPLoadTest/HTTPLoadTest_x64_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {b19bb397-1e35-4ed5-acdb-6852f6249e19} + {4cee1bfa-a0cc-4721-aea2-5d3facaddd46} diff --git a/Net/samples/HTTPTimeServer/HTTPTimeServer_WEC2013_vs110.vcxproj.filters b/Net/samples/HTTPTimeServer/HTTPTimeServer_WEC2013_vs110.vcxproj.filters index 506f234b8..050f1e7d2 100644 --- a/Net/samples/HTTPTimeServer/HTTPTimeServer_WEC2013_vs110.vcxproj.filters +++ b/Net/samples/HTTPTimeServer/HTTPTimeServer_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {c97abd33-c8b5-4337-b901-8ab81abd6c65} + {5901f061-086d-47f4-967d-8f52ac072c08} - {76a2403b-1b50-4772-b690-87513cb75c90} + {53ab72cc-1ced-483a-b0b8-51978945527c} diff --git a/Net/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj b/Net/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj index 94613d15b..526743941 100644 --- a/Net/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj +++ b/Net/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServer - HTTPTimeServer - HTTPTimeServer + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServer + HTTPTimeServer + HTTPTimeServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Net/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj.filters b/Net/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj.filters index 81e23d2e1..dc1850b99 100644 --- a/Net/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj.filters +++ b/Net/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {ab53de54-c53b-4ac6-bec4-208b0a0587ba} + {efe2662e-c4b6-411a-aa17-4023865b035e} - {1708f60f-24e9-44fb-b1bf-4ec972b42565} + {70ca819c-c79b-426f-87ef-4b4f1cb09e21} diff --git a/Net/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj b/Net/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj index bced41229..9a3334087 100644 --- a/Net/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj +++ b/Net/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj @@ -1,4 +1,4 @@ - + @@ -32,7 +32,7 @@ HTTPTimeServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v110 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 HTTPTimeServerd HTTPTimeServerd HTTPTimeServerd @@ -112,7 +94,34 @@ HTTPTimeServer - $(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false @@ -127,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -159,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -189,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -221,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -251,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -283,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -301,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/Net/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj.filters b/Net/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj.filters index 869204864..497ab41a5 100644 --- a/Net/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj.filters +++ b/Net/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {84cf6822-1ddd-4119-a81d-e028cb7c5a76} + {6b166c91-f58a-482e-af26-c58069306cf2} - {0ea646d8-82eb-4956-9e6c-33599623a4bb} + {6e74d547-3de4-4717-8b73-a2fa02e537fb} diff --git a/Net/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj b/Net/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj index 33bb73378..0ec73e097 100644 --- a/Net/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj +++ b/Net/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ HTTPTimeServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 HTTPTimeServerd HTTPTimeServerd HTTPTimeServerd @@ -112,7 +94,34 @@ HTTPTimeServer - $(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSDK_LibraryPath_x86); + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false @@ -127,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -159,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -189,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -221,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -251,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -283,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -301,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/Net/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj.filters b/Net/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj.filters index 869204864..51723a381 100644 --- a/Net/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj.filters +++ b/Net/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {84cf6822-1ddd-4119-a81d-e028cb7c5a76} + {ca1d752d-6d93-4c2c-9f7b-0822e58e804c} - {0ea646d8-82eb-4956-9e6c-33599623a4bb} + {a6b73544-4965-4797-b03b-e8ea7b16bc5b} diff --git a/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj b/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj index d9d9ce75e..f4f9c20fe 100644 --- a/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj +++ b/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServer - HTTPTimeServer - HTTPTimeServer + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServer + HTTPTimeServer + HTTPTimeServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj.filters b/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj.filters index d3374be17..e30d7e988 100644 --- a/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj.filters +++ b/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {cf48b6fe-7ed8-442a-aa0b-9e00e812db9e} + {7be3d4ee-ec30-485a-a7a9-5c6588de325c} - {18763ddb-bb71-4218-b553-fa6c5e01f603} + {9fa24df9-40ec-4a96-b363-a3a8b37e5125} diff --git a/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj b/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj index 5c6e99969..31cbdc253 100644 --- a/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj +++ b/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServer - HTTPTimeServer - HTTPTimeServer + <_ProjectFileVersion>11.0.61030.0 + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServer + HTTPTimeServer + HTTPTimeServer - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj.filters b/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj.filters index d86f4b8c9..c4bac5b2d 100644 --- a/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj.filters +++ b/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {33f36278-fd8b-48b9-9e2a-ef20cdf4aaba} + {15b05321-5d0d-4b61-8327-af421727aff4} - {5edb902b-33c4-4843-80a1-c178220edc49} + {85bc5b40-580f-4d67-875f-fd3967df71bd} diff --git a/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj b/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj index 84996cbaf..9958c12ab 100644 --- a/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj +++ b/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ HTTPTimeServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 HTTPTimeServerd HTTPTimeServerd HTTPTimeServerd @@ -111,6 +93,36 @@ HTTPTimeServer HTTPTimeServer + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj.filters b/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj.filters index d86f4b8c9..506228642 100644 --- a/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj.filters +++ b/Net/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {33f36278-fd8b-48b9-9e2a-ef20cdf4aaba} + {66d1f44c-009b-43a0-a641-9a90aedd2b44} - {5edb902b-33c4-4843-80a1-c178220edc49} + {77b20b99-475a-4510-8264-98178cd7d0e0} diff --git a/Net/samples/Mail/Mail_WEC2013_vs110.vcxproj.filters b/Net/samples/Mail/Mail_WEC2013_vs110.vcxproj.filters index bbb3017f1..64f6d56a8 100644 --- a/Net/samples/Mail/Mail_WEC2013_vs110.vcxproj.filters +++ b/Net/samples/Mail/Mail_WEC2013_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {788349bb-e30f-4f8b-ae29-5631ff812f63} + {8ec2703c-d891-4c19-a166-550a96f6e93c} diff --git a/Net/samples/Mail/Mail_vs100.vcxproj b/Net/samples/Mail/Mail_vs100.vcxproj index 7c7ac5204..4e11ac8c3 100644 --- a/Net/samples/Mail/Mail_vs100.vcxproj +++ b/Net/samples/Mail/Mail_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Maild - Maild - Maild - Mail - Mail - Mail + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + Maild + Maild + Maild + Mail + Mail + Mail - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Net/samples/Mail/Mail_vs100.vcxproj.filters b/Net/samples/Mail/Mail_vs100.vcxproj.filters index 783daa139..1d57a0dbf 100644 --- a/Net/samples/Mail/Mail_vs100.vcxproj.filters +++ b/Net/samples/Mail/Mail_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {c21e9ba3-c451-4442-827a-54908f817c15} + {3256d7f3-7466-4b26-adc1-a3dc8a00d11f} diff --git a/Net/samples/Mail/Mail_vs110.vcxproj b/Net/samples/Mail/Mail_vs110.vcxproj index df4cf78aa..31131aa62 100644 --- a/Net/samples/Mail/Mail_vs110.vcxproj +++ b/Net/samples/Mail/Mail_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Maild - Maild - Maild - Mail - Mail - Mail + <_ProjectFileVersion>11.0.61030.0 + Maild + Maild + Maild + Mail + Mail + Mail - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/Mail/Mail_vs110.vcxproj.filters b/Net/samples/Mail/Mail_vs110.vcxproj.filters index 77416760b..ec7bb81f8 100644 --- a/Net/samples/Mail/Mail_vs110.vcxproj.filters +++ b/Net/samples/Mail/Mail_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {ca0feefb-d561-4eba-a552-10424a174018} + {e9bbd4f3-6354-4170-89d8-5eec59bb6464} diff --git a/Net/samples/Mail/Mail_vs120.vcxproj b/Net/samples/Mail/Mail_vs120.vcxproj index e850a0ee0..c504dd88a 100644 --- a/Net/samples/Mail/Mail_vs120.vcxproj +++ b/Net/samples/Mail/Mail_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Mail Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Maild Maild Maild @@ -111,6 +93,36 @@ Mail Mail + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/Net/samples/Mail/Mail_vs120.vcxproj.filters b/Net/samples/Mail/Mail_vs120.vcxproj.filters index 77416760b..1b8620081 100644 --- a/Net/samples/Mail/Mail_vs120.vcxproj.filters +++ b/Net/samples/Mail/Mail_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {ca0feefb-d561-4eba-a552-10424a174018} + {1304ac78-0d21-40f4-993a-44ad4a3730fb} diff --git a/Net/samples/Mail/Mail_x64_vs100.vcxproj b/Net/samples/Mail/Mail_x64_vs100.vcxproj index 89338bfe2..32e84dafd 100644 --- a/Net/samples/Mail/Mail_x64_vs100.vcxproj +++ b/Net/samples/Mail/Mail_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Maild - Maild - Maild - Mail - Mail - Mail + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + Maild + Maild + Maild + Mail + Mail + Mail - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Net/samples/Mail/Mail_x64_vs100.vcxproj.filters b/Net/samples/Mail/Mail_x64_vs100.vcxproj.filters index 236a083d2..8b1ad29ba 100644 --- a/Net/samples/Mail/Mail_x64_vs100.vcxproj.filters +++ b/Net/samples/Mail/Mail_x64_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {36d1fc78-0121-41de-b267-0a5dfbedc26d} + {a213cd9e-da4b-4074-90f0-e2a039d02bc8} diff --git a/Net/samples/Mail/Mail_x64_vs110.vcxproj b/Net/samples/Mail/Mail_x64_vs110.vcxproj index 7a40b8732..db1ef87ab 100644 --- a/Net/samples/Mail/Mail_x64_vs110.vcxproj +++ b/Net/samples/Mail/Mail_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Maild - Maild - Maild - Mail - Mail - Mail + <_ProjectFileVersion>11.0.61030.0 + Maild + Maild + Maild + Mail + Mail + Mail - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/Mail/Mail_x64_vs110.vcxproj.filters b/Net/samples/Mail/Mail_x64_vs110.vcxproj.filters index 7dce6529a..82ca2d912 100644 --- a/Net/samples/Mail/Mail_x64_vs110.vcxproj.filters +++ b/Net/samples/Mail/Mail_x64_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {4e84e2ce-fdbc-4421-874b-5ea2bd2dae13} + {71bf917a-e8ad-41e5-8303-3d3db67d1abd} diff --git a/Net/samples/Mail/Mail_x64_vs120.vcxproj b/Net/samples/Mail/Mail_x64_vs120.vcxproj index ff9b7fe50..84f1952ad 100644 --- a/Net/samples/Mail/Mail_x64_vs120.vcxproj +++ b/Net/samples/Mail/Mail_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Mail Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Maild Maild Maild @@ -111,6 +93,36 @@ Mail Mail + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/Net/samples/Mail/Mail_x64_vs120.vcxproj.filters b/Net/samples/Mail/Mail_x64_vs120.vcxproj.filters index 7dce6529a..e47a621e3 100644 --- a/Net/samples/Mail/Mail_x64_vs120.vcxproj.filters +++ b/Net/samples/Mail/Mail_x64_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {4e84e2ce-fdbc-4421-874b-5ea2bd2dae13} + {4119248c-9db0-4147-8765-7bb9830a1f76} diff --git a/Net/samples/Ping/Ping_WEC2013_vs110.vcxproj.filters b/Net/samples/Ping/Ping_WEC2013_vs110.vcxproj.filters index 3a5774cdb..17a7288a2 100644 --- a/Net/samples/Ping/Ping_WEC2013_vs110.vcxproj.filters +++ b/Net/samples/Ping/Ping_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {317b0c73-ac72-449b-965a-98e4efe3ce71} + {07c14ccf-9fb6-4322-9ef4-d4c65dc817bf} - {16d4aea0-510f-4ec2-9ded-e2dbc98b8ab0} + {bbd48983-c4eb-424d-b129-8bd5891a76b7} diff --git a/Net/samples/Ping/Ping_vs100.vcxproj b/Net/samples/Ping/Ping_vs100.vcxproj index 62a633f2a..13a78ed80 100644 --- a/Net/samples/Ping/Ping_vs100.vcxproj +++ b/Net/samples/Ping/Ping_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Pingd - Pingd - Pingd - Ping - Ping - Ping + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + Pingd + Pingd + Pingd + Ping + Ping + Ping - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Net/samples/Ping/Ping_vs100.vcxproj.filters b/Net/samples/Ping/Ping_vs100.vcxproj.filters index 88f723336..d434075e2 100644 --- a/Net/samples/Ping/Ping_vs100.vcxproj.filters +++ b/Net/samples/Ping/Ping_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {41e5ce83-4492-4a9e-a8d3-e35c6625229f} + {f4dcb088-1968-469e-a37b-f92df9eb1538} - {f661a538-8f26-4609-bbc0-c4bd25ff19e0} + {65372518-4ad7-4856-9ca6-ca9c14b45b7f} diff --git a/Net/samples/Ping/Ping_vs110.vcxproj b/Net/samples/Ping/Ping_vs110.vcxproj index 9ee98dd1e..2f79d1e7b 100644 --- a/Net/samples/Ping/Ping_vs110.vcxproj +++ b/Net/samples/Ping/Ping_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Pingd - Pingd - Pingd - Ping - Ping - Ping + <_ProjectFileVersion>11.0.61030.0 + Pingd + Pingd + Pingd + Ping + Ping + Ping - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/Ping/Ping_vs110.vcxproj.filters b/Net/samples/Ping/Ping_vs110.vcxproj.filters index 770d5a13d..19521ec46 100644 --- a/Net/samples/Ping/Ping_vs110.vcxproj.filters +++ b/Net/samples/Ping/Ping_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {4537bee6-e172-4ad0-a101-c66d7711b196} + {4faaa0ad-460b-4112-a7f9-d6919334fb83} - {e4b75de0-d507-4c8f-a300-f9c74a0240c2} + {1515ea1d-f860-478c-a9c8-1f5163602a2d} diff --git a/Net/samples/Ping/Ping_vs120.vcxproj b/Net/samples/Ping/Ping_vs120.vcxproj index 71a53ef77..565f6e78e 100644 --- a/Net/samples/Ping/Ping_vs120.vcxproj +++ b/Net/samples/Ping/Ping_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Ping Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Pingd Pingd Pingd @@ -111,6 +93,36 @@ Ping Ping + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/Net/samples/Ping/Ping_vs120.vcxproj.filters b/Net/samples/Ping/Ping_vs120.vcxproj.filters index 770d5a13d..6a2ad1b73 100644 --- a/Net/samples/Ping/Ping_vs120.vcxproj.filters +++ b/Net/samples/Ping/Ping_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {4537bee6-e172-4ad0-a101-c66d7711b196} + {922224f0-841e-40a4-9a08-b52eb3cf6bc6} - {e4b75de0-d507-4c8f-a300-f9c74a0240c2} + {2ee9d4b3-ee68-4741-b30b-b64881e63551} diff --git a/Net/samples/Ping/Ping_x64_vs100.vcxproj b/Net/samples/Ping/Ping_x64_vs100.vcxproj index 2ffc150db..99ccebc66 100644 --- a/Net/samples/Ping/Ping_x64_vs100.vcxproj +++ b/Net/samples/Ping/Ping_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Pingd - Pingd - Pingd - Ping - Ping - Ping + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + Pingd + Pingd + Pingd + Ping + Ping + Ping - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Net/samples/Ping/Ping_x64_vs100.vcxproj.filters b/Net/samples/Ping/Ping_x64_vs100.vcxproj.filters index ec136ecb2..a7faf23b6 100644 --- a/Net/samples/Ping/Ping_x64_vs100.vcxproj.filters +++ b/Net/samples/Ping/Ping_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {54db65a1-3e0a-4c65-a847-775b7336ebb0} + {a3dcdfc0-a40a-4162-9fa8-8a1157d4340d} - {d0cc5d53-0b39-41ad-8a8a-1095dbe8f0a0} + {705f9387-02b0-4733-8774-9a1be622d060} diff --git a/Net/samples/Ping/Ping_x64_vs110.vcxproj b/Net/samples/Ping/Ping_x64_vs110.vcxproj index 855676c27..ef6c11ad6 100644 --- a/Net/samples/Ping/Ping_x64_vs110.vcxproj +++ b/Net/samples/Ping/Ping_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Pingd - Pingd - Pingd - Ping - Ping - Ping + <_ProjectFileVersion>11.0.61030.0 + Pingd + Pingd + Pingd + Ping + Ping + Ping - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/Ping/Ping_x64_vs110.vcxproj.filters b/Net/samples/Ping/Ping_x64_vs110.vcxproj.filters index 08fd1fe23..b9dab9762 100644 --- a/Net/samples/Ping/Ping_x64_vs110.vcxproj.filters +++ b/Net/samples/Ping/Ping_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {7eadea6e-8dd8-4ec3-9897-97c9f8086161} + {e92f937f-0aec-4b3a-a262-9c7396e1eaaa} - {20a352ac-dbec-4833-a0f6-9450886ddd29} + {e2761ddf-3da7-4902-9aeb-c6db2ad73911} diff --git a/Net/samples/Ping/Ping_x64_vs120.vcxproj b/Net/samples/Ping/Ping_x64_vs120.vcxproj index 96172f828..8fa4a6f5e 100644 --- a/Net/samples/Ping/Ping_x64_vs120.vcxproj +++ b/Net/samples/Ping/Ping_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Ping Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Pingd Pingd Pingd @@ -111,6 +93,36 @@ Ping Ping + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/Net/samples/Ping/Ping_x64_vs120.vcxproj.filters b/Net/samples/Ping/Ping_x64_vs120.vcxproj.filters index 08fd1fe23..2a6bf357d 100644 --- a/Net/samples/Ping/Ping_x64_vs120.vcxproj.filters +++ b/Net/samples/Ping/Ping_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {7eadea6e-8dd8-4ec3-9897-97c9f8086161} + {81b2e724-66c1-4827-86fc-4dfe76226ba5} - {20a352ac-dbec-4833-a0f6-9450886ddd29} + {cacd2f3a-3a9f-45c0-af72-a9308e0c46e7} diff --git a/Net/samples/SMTPLogger/SMTPLogger_WEC2013_vs110.vcxproj.filters b/Net/samples/SMTPLogger/SMTPLogger_WEC2013_vs110.vcxproj.filters index 82f5a6d1c..596c3bac3 100644 --- a/Net/samples/SMTPLogger/SMTPLogger_WEC2013_vs110.vcxproj.filters +++ b/Net/samples/SMTPLogger/SMTPLogger_WEC2013_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {a5c53974-1e5a-4b83-852b-149c5b30b22f} + {d2016d17-1a23-4942-8666-7e99808b1957} diff --git a/Net/samples/SMTPLogger/SMTPLogger_vs100.vcxproj b/Net/samples/SMTPLogger/SMTPLogger_vs100.vcxproj index 16336eac4..783bcc106 100644 --- a/Net/samples/SMTPLogger/SMTPLogger_vs100.vcxproj +++ b/Net/samples/SMTPLogger/SMTPLogger_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - SMTPLoggerd - SMTPLoggerd - SMTPLoggerd - SMTPLogger - SMTPLogger - SMTPLogger + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + SMTPLoggerd + SMTPLoggerd + SMTPLoggerd + SMTPLogger + SMTPLogger + SMTPLogger - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Net/samples/SMTPLogger/SMTPLogger_vs100.vcxproj.filters b/Net/samples/SMTPLogger/SMTPLogger_vs100.vcxproj.filters index 7f36e675c..3531fcf10 100644 --- a/Net/samples/SMTPLogger/SMTPLogger_vs100.vcxproj.filters +++ b/Net/samples/SMTPLogger/SMTPLogger_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {d603a5f1-6087-4070-81d5-85521c8092ac} + {36c14540-8484-434f-afa6-e22a95abad92} diff --git a/Net/samples/SMTPLogger/SMTPLogger_vs110.vcxproj b/Net/samples/SMTPLogger/SMTPLogger_vs110.vcxproj index 2febb0979..e5c4e1e39 100644 --- a/Net/samples/SMTPLogger/SMTPLogger_vs110.vcxproj +++ b/Net/samples/SMTPLogger/SMTPLogger_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - SMTPLoggerd - SMTPLoggerd - SMTPLoggerd - SMTPLogger - SMTPLogger - SMTPLogger + <_ProjectFileVersion>11.0.61030.0 + SMTPLoggerd + SMTPLoggerd + SMTPLoggerd + SMTPLogger + SMTPLogger + SMTPLogger - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/SMTPLogger/SMTPLogger_vs110.vcxproj.filters b/Net/samples/SMTPLogger/SMTPLogger_vs110.vcxproj.filters index c040b6989..83b97a700 100644 --- a/Net/samples/SMTPLogger/SMTPLogger_vs110.vcxproj.filters +++ b/Net/samples/SMTPLogger/SMTPLogger_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {bddb6c22-10d7-44d1-8f9a-38d7959382ac} + {5f1b8352-3c84-459d-acae-868d416aa2c0} diff --git a/Net/samples/SMTPLogger/SMTPLogger_vs120.vcxproj b/Net/samples/SMTPLogger/SMTPLogger_vs120.vcxproj index 95c07d03f..be69b1f79 100644 --- a/Net/samples/SMTPLogger/SMTPLogger_vs120.vcxproj +++ b/Net/samples/SMTPLogger/SMTPLogger_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ SMTPLogger Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 SMTPLoggerd SMTPLoggerd SMTPLoggerd @@ -111,6 +93,36 @@ SMTPLogger SMTPLogger + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Net/samples/SMTPLogger/SMTPLogger_vs120.vcxproj.filters b/Net/samples/SMTPLogger/SMTPLogger_vs120.vcxproj.filters index c040b6989..4f8ef286c 100644 --- a/Net/samples/SMTPLogger/SMTPLogger_vs120.vcxproj.filters +++ b/Net/samples/SMTPLogger/SMTPLogger_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {bddb6c22-10d7-44d1-8f9a-38d7959382ac} + {681642b2-bde0-4731-905d-84811bb2afc5} diff --git a/Net/samples/SMTPLogger/SMTPLogger_x64_vs100.vcxproj b/Net/samples/SMTPLogger/SMTPLogger_x64_vs100.vcxproj index 90af77510..ad9e2aea7 100644 --- a/Net/samples/SMTPLogger/SMTPLogger_x64_vs100.vcxproj +++ b/Net/samples/SMTPLogger/SMTPLogger_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - SMTPLoggerd - SMTPLoggerd - SMTPLoggerd - SMTPLogger - SMTPLogger - SMTPLogger + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + SMTPLoggerd + SMTPLoggerd + SMTPLoggerd + SMTPLogger + SMTPLogger + SMTPLogger - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Net/samples/SMTPLogger/SMTPLogger_x64_vs100.vcxproj.filters b/Net/samples/SMTPLogger/SMTPLogger_x64_vs100.vcxproj.filters index 53c5b4d5b..a920bcec9 100644 --- a/Net/samples/SMTPLogger/SMTPLogger_x64_vs100.vcxproj.filters +++ b/Net/samples/SMTPLogger/SMTPLogger_x64_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {4080813c-9684-44bc-88e0-12b276cdee0c} + {093f77db-4c24-4181-bd6d-00f03a85a949} diff --git a/Net/samples/SMTPLogger/SMTPLogger_x64_vs110.vcxproj b/Net/samples/SMTPLogger/SMTPLogger_x64_vs110.vcxproj index 43347394e..bbe92ae99 100644 --- a/Net/samples/SMTPLogger/SMTPLogger_x64_vs110.vcxproj +++ b/Net/samples/SMTPLogger/SMTPLogger_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - SMTPLoggerd - SMTPLoggerd - SMTPLoggerd - SMTPLogger - SMTPLogger - SMTPLogger + <_ProjectFileVersion>11.0.61030.0 + SMTPLoggerd + SMTPLoggerd + SMTPLoggerd + SMTPLogger + SMTPLogger + SMTPLogger - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/SMTPLogger/SMTPLogger_x64_vs110.vcxproj.filters b/Net/samples/SMTPLogger/SMTPLogger_x64_vs110.vcxproj.filters index 4ca103e54..2ed22f801 100644 --- a/Net/samples/SMTPLogger/SMTPLogger_x64_vs110.vcxproj.filters +++ b/Net/samples/SMTPLogger/SMTPLogger_x64_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {268a9456-f887-4569-9d96-90c67dff6c87} + {bc29dcbf-aeea-4061-913a-6dea249cc2d8} diff --git a/Net/samples/SMTPLogger/SMTPLogger_x64_vs120.vcxproj b/Net/samples/SMTPLogger/SMTPLogger_x64_vs120.vcxproj index 79dbacac9..c23fd4f6e 100644 --- a/Net/samples/SMTPLogger/SMTPLogger_x64_vs120.vcxproj +++ b/Net/samples/SMTPLogger/SMTPLogger_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ SMTPLogger Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 SMTPLoggerd SMTPLoggerd SMTPLoggerd @@ -111,6 +93,36 @@ SMTPLogger SMTPLogger + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Net/samples/SMTPLogger/SMTPLogger_x64_vs120.vcxproj.filters b/Net/samples/SMTPLogger/SMTPLogger_x64_vs120.vcxproj.filters index 4ca103e54..a5227e9ed 100644 --- a/Net/samples/SMTPLogger/SMTPLogger_x64_vs120.vcxproj.filters +++ b/Net/samples/SMTPLogger/SMTPLogger_x64_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {268a9456-f887-4569-9d96-90c67dff6c87} + {bad05f73-5ef0-4123-8794-36216b40cee2} diff --git a/Net/samples/TimeServer/TimeServer_WEC2013_vs110.vcxproj.filters b/Net/samples/TimeServer/TimeServer_WEC2013_vs110.vcxproj.filters index a1ecc3574..ed7bdbe0c 100644 --- a/Net/samples/TimeServer/TimeServer_WEC2013_vs110.vcxproj.filters +++ b/Net/samples/TimeServer/TimeServer_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {657a8b1d-aea2-4432-b8bc-6862eddc606b} + {fa603f5d-5164-4fdc-85f8-a467f7ff2ec9} - {61665f26-64e7-4a06-93c2-945e6a11b2ae} + {cba56c99-3cb0-4d6b-b201-f05e116f8a9b} diff --git a/Net/samples/TimeServer/TimeServer_vs100.vcxproj b/Net/samples/TimeServer/TimeServer_vs100.vcxproj index 991988413..6ae37eef7 100644 --- a/Net/samples/TimeServer/TimeServer_vs100.vcxproj +++ b/Net/samples/TimeServer/TimeServer_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TimeServerd - TimeServerd - TimeServerd - TimeServer - TimeServer - TimeServer + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TimeServerd + TimeServerd + TimeServerd + TimeServer + TimeServer + TimeServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Net/samples/TimeServer/TimeServer_vs100.vcxproj.filters b/Net/samples/TimeServer/TimeServer_vs100.vcxproj.filters index 4c7750820..9a5b94a07 100644 --- a/Net/samples/TimeServer/TimeServer_vs100.vcxproj.filters +++ b/Net/samples/TimeServer/TimeServer_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {c4d5929e-c231-42db-8603-b25e0be87138} + {f85aae10-2b6c-45cd-8dc5-33a2e91cbdc8} - {c61854f9-0500-4932-8a7b-702356088aac} + {ecd37d03-834b-40ff-9b06-5d9cffa76786} diff --git a/Net/samples/TimeServer/TimeServer_vs110.vcxproj b/Net/samples/TimeServer/TimeServer_vs110.vcxproj index d3f61376b..9d98ed503 100644 --- a/Net/samples/TimeServer/TimeServer_vs110.vcxproj +++ b/Net/samples/TimeServer/TimeServer_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TimeServerd - TimeServerd - TimeServerd - TimeServer - TimeServer - TimeServer + <_ProjectFileVersion>11.0.61030.0 + TimeServerd + TimeServerd + TimeServerd + TimeServer + TimeServer + TimeServer - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/TimeServer/TimeServer_vs110.vcxproj.filters b/Net/samples/TimeServer/TimeServer_vs110.vcxproj.filters index 53001324b..f9116a73e 100644 --- a/Net/samples/TimeServer/TimeServer_vs110.vcxproj.filters +++ b/Net/samples/TimeServer/TimeServer_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {bc20e406-567a-446b-aef3-2ead5906ed8e} + {2cbf55b0-88cf-430d-9d97-db93853c7e8f} - {c4ac71e8-1ac3-49fe-b6f8-3cb4dbaad19a} + {4e80cf20-6769-49b9-a548-d6d84d0a5490} diff --git a/Net/samples/TimeServer/TimeServer_vs120.vcxproj b/Net/samples/TimeServer/TimeServer_vs120.vcxproj index 30675fe3f..e3e3b32f9 100644 --- a/Net/samples/TimeServer/TimeServer_vs120.vcxproj +++ b/Net/samples/TimeServer/TimeServer_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ TimeServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TimeServerd TimeServerd TimeServerd @@ -111,6 +93,36 @@ TimeServer TimeServer + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/Net/samples/TimeServer/TimeServer_vs120.vcxproj.filters b/Net/samples/TimeServer/TimeServer_vs120.vcxproj.filters index 53001324b..a3d0a467d 100644 --- a/Net/samples/TimeServer/TimeServer_vs120.vcxproj.filters +++ b/Net/samples/TimeServer/TimeServer_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {bc20e406-567a-446b-aef3-2ead5906ed8e} + {55667d63-6a1d-413e-aa2b-04b80a3274ac} - {c4ac71e8-1ac3-49fe-b6f8-3cb4dbaad19a} + {05625e34-b49b-45e6-a164-4ccac11ee0aa} diff --git a/Net/samples/TimeServer/TimeServer_x64_vs100.vcxproj b/Net/samples/TimeServer/TimeServer_x64_vs100.vcxproj index 45f9e4818..5f4d220c2 100644 --- a/Net/samples/TimeServer/TimeServer_x64_vs100.vcxproj +++ b/Net/samples/TimeServer/TimeServer_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TimeServerd - TimeServerd - TimeServerd - TimeServer - TimeServer - TimeServer + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TimeServerd + TimeServerd + TimeServerd + TimeServer + TimeServer + TimeServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Net/samples/TimeServer/TimeServer_x64_vs100.vcxproj.filters b/Net/samples/TimeServer/TimeServer_x64_vs100.vcxproj.filters index c3e5f2379..74f94e3c1 100644 --- a/Net/samples/TimeServer/TimeServer_x64_vs100.vcxproj.filters +++ b/Net/samples/TimeServer/TimeServer_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {1ac32db4-09ff-4ac6-a7c1-14bd0c592071} + {4df8ab36-aee6-42ae-a31f-1c03aa0540ab} - {cc52533d-5f03-43d3-af3b-e7c371028aee} + {7e566768-a50f-434a-a179-656eec5e323f} diff --git a/Net/samples/TimeServer/TimeServer_x64_vs110.vcxproj b/Net/samples/TimeServer/TimeServer_x64_vs110.vcxproj index e0f4c98fa..2de5928c8 100644 --- a/Net/samples/TimeServer/TimeServer_x64_vs110.vcxproj +++ b/Net/samples/TimeServer/TimeServer_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TimeServerd - TimeServerd - TimeServerd - TimeServer - TimeServer - TimeServer + <_ProjectFileVersion>11.0.61030.0 + TimeServerd + TimeServerd + TimeServerd + TimeServer + TimeServer + TimeServer - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/TimeServer/TimeServer_x64_vs110.vcxproj.filters b/Net/samples/TimeServer/TimeServer_x64_vs110.vcxproj.filters index 7f64a46bc..054293329 100644 --- a/Net/samples/TimeServer/TimeServer_x64_vs110.vcxproj.filters +++ b/Net/samples/TimeServer/TimeServer_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {6cce5792-2d91-48ce-a4c5-de587efd58a3} + {e85f597b-d1ab-4dc6-a118-e8c2102bc0f9} - {8e5ce662-70f5-41fb-a85d-2e7bbfd81219} + {e5847111-79d8-4011-b21d-5926755ab871} diff --git a/Net/samples/TimeServer/TimeServer_x64_vs120.vcxproj b/Net/samples/TimeServer/TimeServer_x64_vs120.vcxproj index 714c935a0..b943ee783 100644 --- a/Net/samples/TimeServer/TimeServer_x64_vs120.vcxproj +++ b/Net/samples/TimeServer/TimeServer_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ TimeServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TimeServerd TimeServerd TimeServerd @@ -111,6 +93,36 @@ TimeServer TimeServer + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/Net/samples/TimeServer/TimeServer_x64_vs120.vcxproj.filters b/Net/samples/TimeServer/TimeServer_x64_vs120.vcxproj.filters index 7f64a46bc..0ba44eb9b 100644 --- a/Net/samples/TimeServer/TimeServer_x64_vs120.vcxproj.filters +++ b/Net/samples/TimeServer/TimeServer_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {6cce5792-2d91-48ce-a4c5-de587efd58a3} + {7da7d6c0-0c58-417f-8e89-9ca99471b50b} - {8e5ce662-70f5-41fb-a85d-2e7bbfd81219} + {d1de04f6-b829-4dbf-a9e6-429274a88410} diff --git a/Net/samples/TwitterClient/TwitterClient_WEC2013_vs110.vcxproj.filters b/Net/samples/TwitterClient/TwitterClient_WEC2013_vs110.vcxproj.filters index 8d7f7692e..b99dec278 100644 --- a/Net/samples/TwitterClient/TwitterClient_WEC2013_vs110.vcxproj.filters +++ b/Net/samples/TwitterClient/TwitterClient_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {33495eab-c19b-44d0-856c-158378da359b} + {49eb9ac2-68f0-4c9f-a468-5e404b4a6977} - {4b2df93c-1d5b-4bd0-9333-c4334bb4f32d} + {78ee8e60-95d7-4232-bd59-ac9f6478ad3f} diff --git a/Net/samples/TwitterClient/TwitterClient_vs100.vcxproj b/Net/samples/TwitterClient/TwitterClient_vs100.vcxproj index 75ac835f6..6a8c72f37 100644 --- a/Net/samples/TwitterClient/TwitterClient_vs100.vcxproj +++ b/Net/samples/TwitterClient/TwitterClient_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TwitterClientd - TwitterClientd - TwitterClientd - TwitterClient - TwitterClient - TwitterClient + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TwitterClientd + TwitterClientd + TwitterClientd + TwitterClient + TwitterClient + TwitterClient - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -127,7 +127,7 @@ ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\TwitterClientd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\TwitterClientd.pdb @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -159,7 +159,7 @@ ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\TwitterClient.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -189,7 +189,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\TwitterClientd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_mt\TwitterClientd.pdb @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -221,7 +221,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\TwitterClient.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -251,7 +251,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\TwitterClientd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TwitterClientd.pdb @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -283,7 +283,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\TwitterClient.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true diff --git a/Net/samples/TwitterClient/TwitterClient_vs100.vcxproj.filters b/Net/samples/TwitterClient/TwitterClient_vs100.vcxproj.filters index dc1508416..65a7c95a8 100644 --- a/Net/samples/TwitterClient/TwitterClient_vs100.vcxproj.filters +++ b/Net/samples/TwitterClient/TwitterClient_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {ed0288b7-4224-472b-b45a-de9fb387226e} + {879e4fb3-b03f-4a92-8a68-249776893e66} - {111a0aa4-2110-4779-8239-44cf687f49e0} + {61343da3-8077-4e14-b5ae-b948d0611c51} diff --git a/Net/samples/TwitterClient/TwitterClient_vs110.vcxproj b/Net/samples/TwitterClient/TwitterClient_vs110.vcxproj index 1d10419f2..c92918181 100644 --- a/Net/samples/TwitterClient/TwitterClient_vs110.vcxproj +++ b/Net/samples/TwitterClient/TwitterClient_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TwitterClientd - TwitterClientd - TwitterClientd - TwitterClient - TwitterClient - TwitterClient + <_ProjectFileVersion>11.0.61030.0 + TwitterClientd + TwitterClientd + TwitterClientd + TwitterClient + TwitterClient + TwitterClient - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,12 +140,11 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\TwitterClientd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\TwitterClientd.pdb @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,12 +171,11 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\TwitterClient.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,12 +200,11 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\TwitterClientd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_mt\TwitterClientd.pdb @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,12 +231,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\TwitterClient.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,12 +260,11 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\TwitterClientd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TwitterClientd.pdb @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,12 +291,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\TwitterClient.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true diff --git a/Net/samples/TwitterClient/TwitterClient_vs110.vcxproj.filters b/Net/samples/TwitterClient/TwitterClient_vs110.vcxproj.filters index bac35cb1f..4a6e25faa 100644 --- a/Net/samples/TwitterClient/TwitterClient_vs110.vcxproj.filters +++ b/Net/samples/TwitterClient/TwitterClient_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {5c8e2227-e595-4e65-96e7-db1a344aca1c} + {2c35fc71-21f6-428f-9c83-bc6bf954f179} - {6ce90bd5-c76a-4464-bf9e-13462f0ded10} + {6278ab0d-9a9d-4256-b911-6639beb7217d} diff --git a/Net/samples/TwitterClient/TwitterClient_vs120.vcxproj b/Net/samples/TwitterClient/TwitterClient_vs120.vcxproj index 5ff8cd19b..f252a5a1b 100644 --- a/Net/samples/TwitterClient/TwitterClient_vs120.vcxproj +++ b/Net/samples/TwitterClient/TwitterClient_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ TwitterClient Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TwitterClientd TwitterClientd TwitterClientd @@ -111,10 +93,40 @@ TwitterClient TwitterClient + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled - .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true true @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -148,7 +159,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -176,7 +186,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -210,7 +219,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -238,7 +246,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,7 +279,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,12 +304,12 @@ - - + + - + - - - \ No newline at end of file + + + diff --git a/Net/samples/TwitterClient/TwitterClient_vs120.vcxproj.filters b/Net/samples/TwitterClient/TwitterClient_vs120.vcxproj.filters index 7155d5029..b36ca9f4b 100644 --- a/Net/samples/TwitterClient/TwitterClient_vs120.vcxproj.filters +++ b/Net/samples/TwitterClient/TwitterClient_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {47c8d32f-111c-4786-b915-2817732b0b8b} + {a45d3995-8850-4d68-b95e-1e5c01b175f3} - {39982a6c-1cf1-4ce5-8510-da3ac8620eff} + {6b38c20f-ffc7-4cee-a1e9-2428d1a6a296} diff --git a/Net/samples/TwitterClient/TwitterClient_x64_vs100.vcxproj b/Net/samples/TwitterClient/TwitterClient_x64_vs100.vcxproj index 45053c1cc..bdc10fc3c 100644 --- a/Net/samples/TwitterClient/TwitterClient_x64_vs100.vcxproj +++ b/Net/samples/TwitterClient/TwitterClient_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TwitterClientd - TwitterClientd - TwitterClientd - TwitterClient - TwitterClient - TwitterClient + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TwitterClientd + TwitterClientd + TwitterClientd + TwitterClient + TwitterClient + TwitterClient - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -127,7 +127,7 @@ ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\TwitterClientd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TwitterClientd.pdb @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -159,7 +159,7 @@ ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\TwitterClient.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -189,7 +189,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\TwitterClientd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_mt\TwitterClientd.pdb @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -221,7 +221,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\TwitterClient.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -251,7 +251,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\TwitterClientd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TwitterClientd.pdb @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -283,7 +283,7 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\TwitterClient.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true diff --git a/Net/samples/TwitterClient/TwitterClient_x64_vs100.vcxproj.filters b/Net/samples/TwitterClient/TwitterClient_x64_vs100.vcxproj.filters index b498a327f..51785c092 100644 --- a/Net/samples/TwitterClient/TwitterClient_x64_vs100.vcxproj.filters +++ b/Net/samples/TwitterClient/TwitterClient_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {1010db01-e030-4f95-8b6b-7e64a920bedd} + {3c7ebd27-db1e-488f-9e31-3df43020775a} - {da5ad370-2fb4-40f4-86ca-622cb8894c38} + {493db3b2-3210-4161-8b91-6fca1c7376e2} diff --git a/Net/samples/TwitterClient/TwitterClient_x64_vs110.vcxproj b/Net/samples/TwitterClient/TwitterClient_x64_vs110.vcxproj index 2d0d4b44c..c8631f917 100644 --- a/Net/samples/TwitterClient/TwitterClient_x64_vs110.vcxproj +++ b/Net/samples/TwitterClient/TwitterClient_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TwitterClientd - TwitterClientd - TwitterClientd - TwitterClient - TwitterClient - TwitterClient + <_ProjectFileVersion>11.0.61030.0 + TwitterClientd + TwitterClientd + TwitterClientd + TwitterClient + TwitterClient + TwitterClient - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,12 +140,11 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\TwitterClientd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TwitterClientd.pdb @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,12 +171,11 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\TwitterClient.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,12 +200,11 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\TwitterClientd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_mt\TwitterClientd.pdb @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,12 +231,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\TwitterClient.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,12 +260,11 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\TwitterClientd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TwitterClientd.pdb @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,12 +291,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\TwitterClient.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true diff --git a/Net/samples/TwitterClient/TwitterClient_x64_vs110.vcxproj.filters b/Net/samples/TwitterClient/TwitterClient_x64_vs110.vcxproj.filters index facee4486..f88388a6a 100644 --- a/Net/samples/TwitterClient/TwitterClient_x64_vs110.vcxproj.filters +++ b/Net/samples/TwitterClient/TwitterClient_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {72d25667-ef67-434c-b60c-9d8a51266563} + {7482354d-e974-4653-98b1-d24cc99b7159} - {ee355d99-0d4e-4dd7-8517-851db9602d4f} + {935418f7-349c-4f48-9746-6b50ee895558} diff --git a/Net/samples/TwitterClient/TwitterClient_x64_vs120.vcxproj b/Net/samples/TwitterClient/TwitterClient_x64_vs120.vcxproj index 1fa983bd0..fd3b74b30 100644 --- a/Net/samples/TwitterClient/TwitterClient_x64_vs120.vcxproj +++ b/Net/samples/TwitterClient/TwitterClient_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ TwitterClient Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TwitterClientd TwitterClientd TwitterClientd @@ -111,10 +93,40 @@ TwitterClient TwitterClient + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled - .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true true @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -148,7 +159,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -176,7 +186,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -210,7 +219,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -238,7 +246,7 @@ Disabled - .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,7 +279,7 @@ true Speed true - .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,12 +304,12 @@ - - + + - + - - - \ No newline at end of file + + + diff --git a/Net/samples/TwitterClient/TwitterClient_x64_vs120.vcxproj.filters b/Net/samples/TwitterClient/TwitterClient_x64_vs120.vcxproj.filters index 6c1df2c60..3dc90e49d 100644 --- a/Net/samples/TwitterClient/TwitterClient_x64_vs120.vcxproj.filters +++ b/Net/samples/TwitterClient/TwitterClient_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {5a5f06d7-0b13-4f12-8605-a2323d04b2b0} + {ce0ef1a0-f992-4102-9fd8-fcd25eaccef2} - {51be98a8-c77a-4287-bef8-ba1833619e59} + {35a4dca5-addf-4cdb-841b-024347194bbb} diff --git a/Net/samples/WebSocketServer/WebSocketServer_WEC2013_vs110.vcxproj.filters b/Net/samples/WebSocketServer/WebSocketServer_WEC2013_vs110.vcxproj.filters index 3a3dab1c4..35aba0f98 100644 --- a/Net/samples/WebSocketServer/WebSocketServer_WEC2013_vs110.vcxproj.filters +++ b/Net/samples/WebSocketServer/WebSocketServer_WEC2013_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {6286e0e7-25ed-4ddb-8a07-d2eeab5ed4bd} + {ad0bd060-6daa-438a-9365-cf97922937b8} diff --git a/Net/samples/WebSocketServer/WebSocketServer_vs100.vcxproj b/Net/samples/WebSocketServer/WebSocketServer_vs100.vcxproj index 6364de571..6e8174fd0 100644 --- a/Net/samples/WebSocketServer/WebSocketServer_vs100.vcxproj +++ b/Net/samples/WebSocketServer/WebSocketServer_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - WebSocketServerd - WebSocketServerd - WebSocketServerd - WebSocketServer - WebSocketServer - WebSocketServer + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + WebSocketServerd + WebSocketServerd + WebSocketServerd + WebSocketServer + WebSocketServer + WebSocketServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Net/samples/WebSocketServer/WebSocketServer_vs100.vcxproj.filters b/Net/samples/WebSocketServer/WebSocketServer_vs100.vcxproj.filters index 787798ff7..4fb98d74b 100644 --- a/Net/samples/WebSocketServer/WebSocketServer_vs100.vcxproj.filters +++ b/Net/samples/WebSocketServer/WebSocketServer_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {6afa4f79-ead9-4d93-a14c-428819f4d9e8} + {8c495bd2-37c0-4c8a-972e-804ed4f202a3} diff --git a/Net/samples/WebSocketServer/WebSocketServer_vs110.vcxproj b/Net/samples/WebSocketServer/WebSocketServer_vs110.vcxproj index 970f1ae6f..1d13c773e 100644 --- a/Net/samples/WebSocketServer/WebSocketServer_vs110.vcxproj +++ b/Net/samples/WebSocketServer/WebSocketServer_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - WebSocketServerd - WebSocketServerd - WebSocketServerd - WebSocketServer - WebSocketServer - WebSocketServer + <_ProjectFileVersion>11.0.61030.0 + WebSocketServerd + WebSocketServerd + WebSocketServerd + WebSocketServer + WebSocketServer + WebSocketServer - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/WebSocketServer/WebSocketServer_vs110.vcxproj.filters b/Net/samples/WebSocketServer/WebSocketServer_vs110.vcxproj.filters index d33670ffd..ccc2dbe5a 100644 --- a/Net/samples/WebSocketServer/WebSocketServer_vs110.vcxproj.filters +++ b/Net/samples/WebSocketServer/WebSocketServer_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {aa22bb1c-d96f-4e47-8e4b-ce8c3cf63115} + {b5d9f0ef-9140-4d03-bbc8-997bd962e97b} diff --git a/Net/samples/WebSocketServer/WebSocketServer_vs120.vcxproj b/Net/samples/WebSocketServer/WebSocketServer_vs120.vcxproj index 3eecd992c..afc7fba85 100644 --- a/Net/samples/WebSocketServer/WebSocketServer_vs120.vcxproj +++ b/Net/samples/WebSocketServer/WebSocketServer_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ WebSocketServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 WebSocketServerd WebSocketServerd WebSocketServerd @@ -111,6 +93,36 @@ WebSocketServer WebSocketServer + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Net/samples/WebSocketServer/WebSocketServer_vs120.vcxproj.filters b/Net/samples/WebSocketServer/WebSocketServer_vs120.vcxproj.filters index d33670ffd..81c31d467 100644 --- a/Net/samples/WebSocketServer/WebSocketServer_vs120.vcxproj.filters +++ b/Net/samples/WebSocketServer/WebSocketServer_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {aa22bb1c-d96f-4e47-8e4b-ce8c3cf63115} + {d906dce4-bbc5-494e-a9a1-fd116e59757a} diff --git a/Net/samples/WebSocketServer/WebSocketServer_x64_vs100.vcxproj b/Net/samples/WebSocketServer/WebSocketServer_x64_vs100.vcxproj index 532f9423b..e09d40148 100644 --- a/Net/samples/WebSocketServer/WebSocketServer_x64_vs100.vcxproj +++ b/Net/samples/WebSocketServer/WebSocketServer_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - WebSocketServerd - WebSocketServerd - WebSocketServerd - WebSocketServer - WebSocketServer - WebSocketServer + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + WebSocketServerd + WebSocketServerd + WebSocketServerd + WebSocketServer + WebSocketServer + WebSocketServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Net/samples/WebSocketServer/WebSocketServer_x64_vs100.vcxproj.filters b/Net/samples/WebSocketServer/WebSocketServer_x64_vs100.vcxproj.filters index d13054ca1..7f216fd26 100644 --- a/Net/samples/WebSocketServer/WebSocketServer_x64_vs100.vcxproj.filters +++ b/Net/samples/WebSocketServer/WebSocketServer_x64_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {3aaf55da-d9d1-42a0-90c3-18e1715f6f75} + {c9d3deee-507f-42de-aa6a-5b08fd4c89b2} diff --git a/Net/samples/WebSocketServer/WebSocketServer_x64_vs110.vcxproj b/Net/samples/WebSocketServer/WebSocketServer_x64_vs110.vcxproj index 111d299a8..d2beb2df9 100644 --- a/Net/samples/WebSocketServer/WebSocketServer_x64_vs110.vcxproj +++ b/Net/samples/WebSocketServer/WebSocketServer_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - WebSocketServerd - WebSocketServerd - WebSocketServerd - WebSocketServer - WebSocketServer - WebSocketServer + <_ProjectFileVersion>11.0.61030.0 + WebSocketServerd + WebSocketServerd + WebSocketServerd + WebSocketServer + WebSocketServer + WebSocketServer - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/WebSocketServer/WebSocketServer_x64_vs110.vcxproj.filters b/Net/samples/WebSocketServer/WebSocketServer_x64_vs110.vcxproj.filters index dc8d8bf25..a1b347bd1 100644 --- a/Net/samples/WebSocketServer/WebSocketServer_x64_vs110.vcxproj.filters +++ b/Net/samples/WebSocketServer/WebSocketServer_x64_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {4b0192d3-8154-4739-bdd5-4b096a5d056d} + {c5ad79c0-666c-470a-8a4d-ea34c54b870e} diff --git a/Net/samples/WebSocketServer/WebSocketServer_x64_vs120.vcxproj b/Net/samples/WebSocketServer/WebSocketServer_x64_vs120.vcxproj index 9d89e1b13..1d06eed54 100644 --- a/Net/samples/WebSocketServer/WebSocketServer_x64_vs120.vcxproj +++ b/Net/samples/WebSocketServer/WebSocketServer_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ WebSocketServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 WebSocketServerd WebSocketServerd WebSocketServerd @@ -111,6 +93,36 @@ WebSocketServer WebSocketServer + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Net/samples/WebSocketServer/WebSocketServer_x64_vs120.vcxproj.filters b/Net/samples/WebSocketServer/WebSocketServer_x64_vs120.vcxproj.filters index dc8d8bf25..88fb5d489 100644 --- a/Net/samples/WebSocketServer/WebSocketServer_x64_vs120.vcxproj.filters +++ b/Net/samples/WebSocketServer/WebSocketServer_x64_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {4b0192d3-8154-4739-bdd5-4b096a5d056d} + {ee0f1511-31a4-45f8-a894-2098671f6ee0} diff --git a/Net/samples/dict/dict_WEC2013_vs110.vcxproj.filters b/Net/samples/dict/dict_WEC2013_vs110.vcxproj.filters index ed4f92f8e..f681a2ed9 100644 --- a/Net/samples/dict/dict_WEC2013_vs110.vcxproj.filters +++ b/Net/samples/dict/dict_WEC2013_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {b4fd8a33-60c9-4482-8eae-8359bbfc6552} + {a549738c-2e06-47e5-acec-c64dceaf3908} diff --git a/Net/samples/dict/dict_vs100.vcxproj b/Net/samples/dict/dict_vs100.vcxproj index d0e3a0dad..2a22ae7cb 100644 --- a/Net/samples/dict/dict_vs100.vcxproj +++ b/Net/samples/dict/dict_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - dictd - dictd - dictd - dict - dict - dict + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + dictd + dictd + dictd + dict + dict + dict - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Net/samples/dict/dict_vs100.vcxproj.filters b/Net/samples/dict/dict_vs100.vcxproj.filters index cab8b8ca8..563b86aba 100644 --- a/Net/samples/dict/dict_vs100.vcxproj.filters +++ b/Net/samples/dict/dict_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {022a1167-ce7c-44db-a636-099f8f340072} + {e28023ca-b695-47b8-8227-90bbe9e39cd1} diff --git a/Net/samples/dict/dict_vs110.vcxproj b/Net/samples/dict/dict_vs110.vcxproj index 9af376d38..5ff5229ae 100644 --- a/Net/samples/dict/dict_vs110.vcxproj +++ b/Net/samples/dict/dict_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - dictd - dictd - dictd - dict - dict - dict + <_ProjectFileVersion>11.0.61030.0 + dictd + dictd + dictd + dict + dict + dict - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/dict/dict_vs110.vcxproj.filters b/Net/samples/dict/dict_vs110.vcxproj.filters index 99b451e55..17a488bb5 100644 --- a/Net/samples/dict/dict_vs110.vcxproj.filters +++ b/Net/samples/dict/dict_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {29801ee7-7c6c-4910-a587-a77818940d89} + {524fe814-d4c9-4b34-bada-3d6704eca30f} diff --git a/Net/samples/dict/dict_vs120.vcxproj b/Net/samples/dict/dict_vs120.vcxproj index feb32ab59..42bde0560 100644 --- a/Net/samples/dict/dict_vs120.vcxproj +++ b/Net/samples/dict/dict_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ dict Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 dictd dictd dictd @@ -111,6 +93,36 @@ dict dict + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Net/samples/dict/dict_vs120.vcxproj.filters b/Net/samples/dict/dict_vs120.vcxproj.filters index 99b451e55..88ef00618 100644 --- a/Net/samples/dict/dict_vs120.vcxproj.filters +++ b/Net/samples/dict/dict_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {29801ee7-7c6c-4910-a587-a77818940d89} + {d146fabf-780a-4c14-a446-66b49815bbf4} diff --git a/Net/samples/dict/dict_x64_vs100.vcxproj b/Net/samples/dict/dict_x64_vs100.vcxproj index b5b123382..8c2170177 100644 --- a/Net/samples/dict/dict_x64_vs100.vcxproj +++ b/Net/samples/dict/dict_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - dictd - dictd - dictd - dict - dict - dict + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + dictd + dictd + dictd + dict + dict + dict - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Net/samples/dict/dict_x64_vs100.vcxproj.filters b/Net/samples/dict/dict_x64_vs100.vcxproj.filters index 7175ee15b..64679124f 100644 --- a/Net/samples/dict/dict_x64_vs100.vcxproj.filters +++ b/Net/samples/dict/dict_x64_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {61ce81d0-7047-4a23-afd0-986622ebb2f9} + {eb9e9b13-b976-4b8b-93ab-d9bf2561115e} diff --git a/Net/samples/dict/dict_x64_vs110.vcxproj b/Net/samples/dict/dict_x64_vs110.vcxproj index 496c9747e..5c4414091 100644 --- a/Net/samples/dict/dict_x64_vs110.vcxproj +++ b/Net/samples/dict/dict_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - dictd - dictd - dictd - dict - dict - dict + <_ProjectFileVersion>11.0.61030.0 + dictd + dictd + dictd + dict + dict + dict - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/dict/dict_x64_vs110.vcxproj.filters b/Net/samples/dict/dict_x64_vs110.vcxproj.filters index 689e5e168..02d8cfb7b 100644 --- a/Net/samples/dict/dict_x64_vs110.vcxproj.filters +++ b/Net/samples/dict/dict_x64_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {16c0bbf5-9d26-498a-8a8d-6f844e8dd472} + {81ba0039-a580-4559-b5a3-af87989855da} diff --git a/Net/samples/dict/dict_x64_vs120.vcxproj b/Net/samples/dict/dict_x64_vs120.vcxproj index 250782e59..2911d3ad2 100644 --- a/Net/samples/dict/dict_x64_vs120.vcxproj +++ b/Net/samples/dict/dict_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ dict Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 dictd dictd dictd @@ -111,6 +93,36 @@ dict dict + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Net/samples/dict/dict_x64_vs120.vcxproj.filters b/Net/samples/dict/dict_x64_vs120.vcxproj.filters index 689e5e168..c1b669585 100644 --- a/Net/samples/dict/dict_x64_vs120.vcxproj.filters +++ b/Net/samples/dict/dict_x64_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {16c0bbf5-9d26-498a-8a8d-6f844e8dd472} + {345a99cc-d5c9-4c5a-b0b2-23d05c8a5f44} diff --git a/Net/samples/download/download_WEC2013_vs110.vcxproj.filters b/Net/samples/download/download_WEC2013_vs110.vcxproj.filters index e53d82174..4b135320d 100644 --- a/Net/samples/download/download_WEC2013_vs110.vcxproj.filters +++ b/Net/samples/download/download_WEC2013_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {d8bea218-02a0-410d-afd1-4fe99b863c23} + {4f2bca9e-13e9-4d18-a114-af69ce317483} diff --git a/Net/samples/download/download_vs100.vcxproj b/Net/samples/download/download_vs100.vcxproj index 20785bf79..defab2e1f 100644 --- a/Net/samples/download/download_vs100.vcxproj +++ b/Net/samples/download/download_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - downloadd - downloadd - downloadd - download - download - download + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + downloadd + downloadd + downloadd + download + download + download - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Net/samples/download/download_vs100.vcxproj.filters b/Net/samples/download/download_vs100.vcxproj.filters index fa4af59ca..d0afd687d 100644 --- a/Net/samples/download/download_vs100.vcxproj.filters +++ b/Net/samples/download/download_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {83f7be8b-e80c-4772-a252-0a82e922575d} + {f0f39a2a-9e9c-4fbc-879b-5d2fbe251901} diff --git a/Net/samples/download/download_vs110.vcxproj b/Net/samples/download/download_vs110.vcxproj index 3914d95e7..0d5c7f846 100644 --- a/Net/samples/download/download_vs110.vcxproj +++ b/Net/samples/download/download_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - downloadd - downloadd - downloadd - download - download - download + <_ProjectFileVersion>11.0.61030.0 + downloadd + downloadd + downloadd + download + download + download - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/download/download_vs110.vcxproj.filters b/Net/samples/download/download_vs110.vcxproj.filters index a4508683b..486692062 100644 --- a/Net/samples/download/download_vs110.vcxproj.filters +++ b/Net/samples/download/download_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {8178cf99-4be5-4049-bed2-6e410e991f70} + {a1ed6e63-140b-4a1a-9342-65a422a8ffca} diff --git a/Net/samples/download/download_vs120.vcxproj b/Net/samples/download/download_vs120.vcxproj index 2d902c592..47370b395 100644 --- a/Net/samples/download/download_vs120.vcxproj +++ b/Net/samples/download/download_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ download Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 downloadd downloadd downloadd @@ -111,6 +93,36 @@ download download + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Net/samples/download/download_vs120.vcxproj.filters b/Net/samples/download/download_vs120.vcxproj.filters index a4508683b..db603a084 100644 --- a/Net/samples/download/download_vs120.vcxproj.filters +++ b/Net/samples/download/download_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {8178cf99-4be5-4049-bed2-6e410e991f70} + {d98ad09e-7285-42c7-a9e5-b244f1db87f6} diff --git a/Net/samples/download/download_x64_vs100.vcxproj b/Net/samples/download/download_x64_vs100.vcxproj index 0b7af1de5..3b3ab255b 100644 --- a/Net/samples/download/download_x64_vs100.vcxproj +++ b/Net/samples/download/download_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - downloadd - downloadd - downloadd - download - download - download + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + downloadd + downloadd + downloadd + download + download + download - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Net/samples/download/download_x64_vs100.vcxproj.filters b/Net/samples/download/download_x64_vs100.vcxproj.filters index f44f30320..c1373339c 100644 --- a/Net/samples/download/download_x64_vs100.vcxproj.filters +++ b/Net/samples/download/download_x64_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {25ce49c0-b3a1-4334-9cc8-0a38996eff3a} + {60418249-53be-415c-ba3d-f65d02d38276} diff --git a/Net/samples/download/download_x64_vs110.vcxproj b/Net/samples/download/download_x64_vs110.vcxproj index faeba3258..40e42be4a 100644 --- a/Net/samples/download/download_x64_vs110.vcxproj +++ b/Net/samples/download/download_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - downloadd - downloadd - downloadd - download - download - download + <_ProjectFileVersion>11.0.61030.0 + downloadd + downloadd + downloadd + download + download + download - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/download/download_x64_vs110.vcxproj.filters b/Net/samples/download/download_x64_vs110.vcxproj.filters index 0255a4b5b..a4a04c085 100644 --- a/Net/samples/download/download_x64_vs110.vcxproj.filters +++ b/Net/samples/download/download_x64_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {466b345c-48bd-4a7a-a48b-0d351ad0ad12} + {58be2dfb-cbee-4496-b20e-df3949bc7460} diff --git a/Net/samples/download/download_x64_vs120.vcxproj b/Net/samples/download/download_x64_vs120.vcxproj index ec689e7da..70a727dc0 100644 --- a/Net/samples/download/download_x64_vs120.vcxproj +++ b/Net/samples/download/download_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ download Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 downloadd downloadd downloadd @@ -111,6 +93,36 @@ download download + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Net/samples/download/download_x64_vs120.vcxproj.filters b/Net/samples/download/download_x64_vs120.vcxproj.filters index 0255a4b5b..29530c822 100644 --- a/Net/samples/download/download_x64_vs120.vcxproj.filters +++ b/Net/samples/download/download_x64_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {466b345c-48bd-4a7a-a48b-0d351ad0ad12} + {66d5343c-3419-4c09-b5ae-f3a155425ffa} diff --git a/Net/samples/httpget/httpget_WEC2013_vs110.vcxproj.filters b/Net/samples/httpget/httpget_WEC2013_vs110.vcxproj.filters index a1133989c..ced6edbe6 100644 --- a/Net/samples/httpget/httpget_WEC2013_vs110.vcxproj.filters +++ b/Net/samples/httpget/httpget_WEC2013_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {c9587d4a-afec-48b8-97de-904ffce8d068} + {7a0b8766-7a49-4db3-87d8-18200ed94a30} diff --git a/Net/samples/httpget/httpget_vs100.vcxproj b/Net/samples/httpget/httpget_vs100.vcxproj index 669748a4e..954abeab1 100644 --- a/Net/samples/httpget/httpget_vs100.vcxproj +++ b/Net/samples/httpget/httpget_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - httpgetd - httpgetd - httpgetd - httpget - httpget - httpget + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + httpgetd + httpgetd + httpgetd + httpget + httpget + httpget - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Net/samples/httpget/httpget_vs100.vcxproj.filters b/Net/samples/httpget/httpget_vs100.vcxproj.filters index 7138180da..3a443edde 100644 --- a/Net/samples/httpget/httpget_vs100.vcxproj.filters +++ b/Net/samples/httpget/httpget_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {dca407d4-1e88-4e6a-a834-2f3536067610} + {8932d7f0-a75f-441a-82c4-e9f530fba44b} diff --git a/Net/samples/httpget/httpget_vs110.vcxproj b/Net/samples/httpget/httpget_vs110.vcxproj index e63179e23..8845adafc 100644 --- a/Net/samples/httpget/httpget_vs110.vcxproj +++ b/Net/samples/httpget/httpget_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - httpgetd - httpgetd - httpgetd - httpget - httpget - httpget + <_ProjectFileVersion>11.0.61030.0 + httpgetd + httpgetd + httpgetd + httpget + httpget + httpget - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/httpget/httpget_vs110.vcxproj.filters b/Net/samples/httpget/httpget_vs110.vcxproj.filters index f41fbb05c..9ce4ff18a 100644 --- a/Net/samples/httpget/httpget_vs110.vcxproj.filters +++ b/Net/samples/httpget/httpget_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {c67e25b4-652d-470a-8586-24514233ea2f} + {f1fec6b9-fbe7-4e77-96bf-fac5f2d40c4f} diff --git a/Net/samples/httpget/httpget_vs120.vcxproj b/Net/samples/httpget/httpget_vs120.vcxproj index 3ba22259a..3c4b470bc 100644 --- a/Net/samples/httpget/httpget_vs120.vcxproj +++ b/Net/samples/httpget/httpget_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ httpget Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 httpgetd httpgetd httpgetd @@ -111,6 +93,36 @@ httpget httpget + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Net/samples/httpget/httpget_vs120.vcxproj.filters b/Net/samples/httpget/httpget_vs120.vcxproj.filters index f41fbb05c..22cfc9961 100644 --- a/Net/samples/httpget/httpget_vs120.vcxproj.filters +++ b/Net/samples/httpget/httpget_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {c67e25b4-652d-470a-8586-24514233ea2f} + {df81493c-ecc6-4f4a-b913-69e17cc8731b} diff --git a/Net/samples/httpget/httpget_x64_vs100.vcxproj b/Net/samples/httpget/httpget_x64_vs100.vcxproj index 0052dd290..b00674f07 100644 --- a/Net/samples/httpget/httpget_x64_vs100.vcxproj +++ b/Net/samples/httpget/httpget_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - httpgetd - httpgetd - httpgetd - httpget - httpget - httpget + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + httpgetd + httpgetd + httpgetd + httpget + httpget + httpget - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Net/samples/httpget/httpget_x64_vs100.vcxproj.filters b/Net/samples/httpget/httpget_x64_vs100.vcxproj.filters index ea22a8b7f..6de1296a4 100644 --- a/Net/samples/httpget/httpget_x64_vs100.vcxproj.filters +++ b/Net/samples/httpget/httpget_x64_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {be24593c-2b97-4870-bee6-8ef609c1093a} + {495633af-d0f4-49b0-9e21-69941aefd729} diff --git a/Net/samples/httpget/httpget_x64_vs110.vcxproj b/Net/samples/httpget/httpget_x64_vs110.vcxproj index dd008fe37..f31033fbc 100644 --- a/Net/samples/httpget/httpget_x64_vs110.vcxproj +++ b/Net/samples/httpget/httpget_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - httpgetd - httpgetd - httpgetd - httpget - httpget - httpget + <_ProjectFileVersion>11.0.61030.0 + httpgetd + httpgetd + httpgetd + httpget + httpget + httpget - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/httpget/httpget_x64_vs110.vcxproj.filters b/Net/samples/httpget/httpget_x64_vs110.vcxproj.filters index b1402b0d1..d6f784d4a 100644 --- a/Net/samples/httpget/httpget_x64_vs110.vcxproj.filters +++ b/Net/samples/httpget/httpget_x64_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {19654011-65f4-4192-aa70-5fc3bb40f838} + {bd5c24d0-7205-4c96-8382-d9b3ef6ea82c} diff --git a/Net/samples/httpget/httpget_x64_vs120.vcxproj b/Net/samples/httpget/httpget_x64_vs120.vcxproj index 8786403be..482eb19a1 100644 --- a/Net/samples/httpget/httpget_x64_vs120.vcxproj +++ b/Net/samples/httpget/httpget_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ httpget Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 httpgetd httpgetd httpgetd @@ -111,6 +93,36 @@ httpget httpget + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Net/samples/httpget/httpget_x64_vs120.vcxproj.filters b/Net/samples/httpget/httpget_x64_vs120.vcxproj.filters index b1402b0d1..98ac2dfe9 100644 --- a/Net/samples/httpget/httpget_x64_vs120.vcxproj.filters +++ b/Net/samples/httpget/httpget_x64_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {19654011-65f4-4192-aa70-5fc3bb40f838} + {58693e70-6cc5-46f4-82c8-236a2948ab78} diff --git a/Net/samples/ifconfig/ifconfig_WEC2013_vs110.vcxproj.filters b/Net/samples/ifconfig/ifconfig_WEC2013_vs110.vcxproj.filters index 90a55bc44..2f6b6249d 100644 --- a/Net/samples/ifconfig/ifconfig_WEC2013_vs110.vcxproj.filters +++ b/Net/samples/ifconfig/ifconfig_WEC2013_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {53b0b101-dd69-456a-9078-b62a0402d220} + {4e5fdb6d-b814-468e-aed3-6541b69a8848} diff --git a/Net/samples/ifconfig/ifconfig_vs100.vcxproj b/Net/samples/ifconfig/ifconfig_vs100.vcxproj index afcfd154e..52b9b2bbf 100644 --- a/Net/samples/ifconfig/ifconfig_vs100.vcxproj +++ b/Net/samples/ifconfig/ifconfig_vs100.vcxproj @@ -1,4 +1,4 @@ - + @@ -28,11 +28,11 @@ ifconfig - {34993998-D465-4BCC-8C37-9B868F8498D0} + {BD3A18C6-22B6-3B10-913B-7A84D1845CA3} ifconfig Win32Proj - + Application MultiByte @@ -57,29 +57,29 @@ Application MultiByte - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.30319.1 + <_ProjectFileVersion>10.0.40219.1 bin\ obj\$(Configuration)\ true @@ -98,9 +98,9 @@ bin\static_md\ obj\$(Configuration)\ false - downloadd - downloadd - downloadd + ifconfigd + ifconfigd + ifconfigd ifconfig ifconfig ifconfig @@ -118,7 +118,7 @@ true true true - + Level3 EditAndContinue Default @@ -126,11 +126,11 @@ ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin\downloadd.exe + bin\ifconfigd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true - bin\downloadd.pdb + bin\ifconfigd.pdb Console MachineX86 @@ -150,9 +150,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -180,7 +180,7 @@ true true true - + Level3 EditAndContinue Default @@ -188,11 +188,11 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin\static_mt\downloadd.exe + bin\static_mt\ifconfigd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true - bin\static_mt\downloadd.pdb + bin\static_mt\ifconfigd.pdb Console MachineX86 @@ -212,9 +212,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -242,7 +242,7 @@ true true true - + Level3 EditAndContinue Default @@ -250,11 +250,11 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin\static_md\downloadd.exe + bin\static_md\ifconfigd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true - bin\static_md\downloadd.pdb + bin\static_md\ifconfigd.pdb Console MachineX86 @@ -274,9 +274,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -292,8 +292,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Net/samples/ifconfig/ifconfig_vs100.vcxproj.filters b/Net/samples/ifconfig/ifconfig_vs100.vcxproj.filters index 759e74882..674d01216 100644 --- a/Net/samples/ifconfig/ifconfig_vs100.vcxproj.filters +++ b/Net/samples/ifconfig/ifconfig_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {83f7be8b-e80c-4772-a252-0a82e922575d} + {9372a30a-38b8-46e6-aca7-499b59663538} diff --git a/Net/samples/ifconfig/ifconfig_vs110.vcxproj b/Net/samples/ifconfig/ifconfig_vs110.vcxproj index bb9cf68d3..40e81d210 100644 --- a/Net/samples/ifconfig/ifconfig_vs110.vcxproj +++ b/Net/samples/ifconfig/ifconfig_vs110.vcxproj @@ -28,90 +28,102 @@ ifconfig - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D} + {BD3A18C6-22B6-3B10-913B-7A84D1845CA3} ifconfig Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - downloadd - downloadd - downloadd - ifconfig - ifconfig - ifconfig + <_ProjectFileVersion>11.0.61030.0 + ifconfigd + ifconfigd + ifconfigd + ifconfig + ifconfig + ifconfig - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,20 +140,19 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin\downloadd.exe + bin\ifconfigd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true - bin\downloadd.pdb + bin\ifconfigd.pdb Console MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,20 +200,19 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin\static_mt\downloadd.exe + bin\static_mt\ifconfigd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true - bin\static_mt\downloadd.pdb + bin\static_mt\ifconfigd.pdb Console MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,20 +260,19 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin\static_md\downloadd.exe + bin\static_md\ifconfigd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true - bin\static_md\downloadd.pdb + bin\static_md\ifconfigd.pdb Console MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/ifconfig/ifconfig_vs110.vcxproj.filters b/Net/samples/ifconfig/ifconfig_vs110.vcxproj.filters index e818d85d6..50633f0ce 100644 --- a/Net/samples/ifconfig/ifconfig_vs110.vcxproj.filters +++ b/Net/samples/ifconfig/ifconfig_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {8178cf99-4be5-4049-bed2-6e410e991f70} + {f75b5556-9c2d-4648-8a05-3cab075c9588} diff --git a/Net/samples/ifconfig/ifconfig_vs120.vcxproj b/Net/samples/ifconfig/ifconfig_vs120.vcxproj index bb9cf68d3..86542247e 100644 --- a/Net/samples/ifconfig/ifconfig_vs120.vcxproj +++ b/Net/samples/ifconfig/ifconfig_vs120.vcxproj @@ -28,90 +28,102 @@ ifconfig - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D} + {BD3A18C6-22B6-3B10-913B-7A84D1845CA3} ifconfig Win32Proj - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - downloadd - downloadd - downloadd - ifconfig - ifconfig - ifconfig + <_ProjectFileVersion>11.0.61030.0 + ifconfigd + ifconfigd + ifconfigd + ifconfig + ifconfig + ifconfig - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,20 +140,19 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin\downloadd.exe + bin\ifconfigd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true - bin\downloadd.pdb + bin\ifconfigd.pdb Console MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,20 +200,19 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin\static_mt\downloadd.exe + bin\static_mt\ifconfigd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true - bin\static_mt\downloadd.pdb + bin\static_mt\ifconfigd.pdb Console MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,20 +260,19 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin\static_md\downloadd.exe + bin\static_md\ifconfigd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true - bin\static_md\downloadd.pdb + bin\static_md\ifconfigd.pdb Console MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/ifconfig/ifconfig_vs120.vcxproj.filters b/Net/samples/ifconfig/ifconfig_vs120.vcxproj.filters index e818d85d6..5d9408760 100644 --- a/Net/samples/ifconfig/ifconfig_vs120.vcxproj.filters +++ b/Net/samples/ifconfig/ifconfig_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {8178cf99-4be5-4049-bed2-6e410e991f70} + {5422255c-4f74-440f-bc89-4c6edd9fe689} diff --git a/Net/samples/ifconfig/ifconfig_x64_vs100.vcxproj b/Net/samples/ifconfig/ifconfig_x64_vs100.vcxproj index c8d6d4094..a39700aab 100644 --- a/Net/samples/ifconfig/ifconfig_x64_vs100.vcxproj +++ b/Net/samples/ifconfig/ifconfig_x64_vs100.vcxproj @@ -28,84 +28,84 @@ ifconfig - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D} + {BD3A18C6-22B6-3B10-913B-7A84D1845CA3} ifconfig Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - downloadd - downloadd - downloadd - ifconfig - ifconfig - ifconfig + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + ifconfigd + ifconfigd + ifconfigd + ifconfig + ifconfig + ifconfig - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -126,16 +126,16 @@ ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin64\downloadd.exe + bin64\ifconfigd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true - bin64\downloadd.pdb + bin64\ifconfigd.pdb Console MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -188,16 +188,16 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin64\static_mt\downloadd.exe + bin64\static_mt\ifconfigd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true - bin64\static_mt\downloadd.pdb + bin64\static_mt\ifconfigd.pdb Console MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -250,16 +250,16 @@ iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin64\static_md\downloadd.exe + bin64\static_md\ifconfigd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true - bin64\static_md\downloadd.pdb + bin64\static_md\ifconfigd.pdb Console MachineX64 - + Disabled OnlyExplicitInline diff --git a/Net/samples/ifconfig/ifconfig_x64_vs100.vcxproj.filters b/Net/samples/ifconfig/ifconfig_x64_vs100.vcxproj.filters index 714b1a3a2..2098ffd0e 100644 --- a/Net/samples/ifconfig/ifconfig_x64_vs100.vcxproj.filters +++ b/Net/samples/ifconfig/ifconfig_x64_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {25ce49c0-b3a1-4334-9cc8-0a38996eff3a} + {7e844382-d130-4d74-b17e-799841244de8} diff --git a/Net/samples/ifconfig/ifconfig_x64_vs110.vcxproj b/Net/samples/ifconfig/ifconfig_x64_vs110.vcxproj index 166b20ca1..476965f95 100644 --- a/Net/samples/ifconfig/ifconfig_x64_vs110.vcxproj +++ b/Net/samples/ifconfig/ifconfig_x64_vs110.vcxproj @@ -28,90 +28,102 @@ ifconfig - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D} + {BD3A18C6-22B6-3B10-913B-7A84D1845CA3} ifconfig Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - downloadd - downloadd - downloadd - ifconfig - ifconfig - ifconfig + <_ProjectFileVersion>11.0.61030.0 + ifconfigd + ifconfigd + ifconfigd + ifconfig + ifconfig + ifconfig - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,20 +140,19 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin64\downloadd.exe + bin64\ifconfigd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true - bin64\downloadd.pdb + bin64\ifconfigd.pdb Console MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,20 +200,19 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin64\static_mt\downloadd.exe + bin64\static_mt\ifconfigd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true - bin64\static_mt\downloadd.pdb + bin64\static_mt\ifconfigd.pdb Console MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,20 +260,19 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin64\static_md\downloadd.exe + bin64\static_md\ifconfigd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true - bin64\static_md\downloadd.pdb + bin64\static_md\ifconfigd.pdb Console MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/ifconfig/ifconfig_x64_vs110.vcxproj.filters b/Net/samples/ifconfig/ifconfig_x64_vs110.vcxproj.filters index f2212302e..0ca8f5be8 100644 --- a/Net/samples/ifconfig/ifconfig_x64_vs110.vcxproj.filters +++ b/Net/samples/ifconfig/ifconfig_x64_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {466b345c-48bd-4a7a-a48b-0d351ad0ad12} + {9019c2fa-1e16-436d-92a0-a7f2c2d0cd52} diff --git a/Net/samples/ifconfig/ifconfig_x64_vs120.vcxproj b/Net/samples/ifconfig/ifconfig_x64_vs120.vcxproj index 166b20ca1..f0a574e2a 100644 --- a/Net/samples/ifconfig/ifconfig_x64_vs120.vcxproj +++ b/Net/samples/ifconfig/ifconfig_x64_vs120.vcxproj @@ -28,90 +28,102 @@ ifconfig - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D} + {BD3A18C6-22B6-3B10-913B-7A84D1845CA3} ifconfig Win32Proj - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - + Application MultiByte - v110 + v120 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - downloadd - downloadd - downloadd - ifconfig - ifconfig - ifconfig + <_ProjectFileVersion>11.0.61030.0 + ifconfigd + ifconfigd + ifconfigd + ifconfig + ifconfig + ifconfig - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,20 +140,19 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin64\downloadd.exe + bin64\ifconfigd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true - bin64\downloadd.pdb + bin64\ifconfigd.pdb Console MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,20 +200,19 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin64\static_mt\downloadd.exe + bin64\static_mt\ifconfigd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true - bin64\static_mt\downloadd.pdb + bin64\static_mt\ifconfigd.pdb Console MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,20 +260,19 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) - bin64\static_md\downloadd.exe + bin64\static_md\ifconfigd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true - bin64\static_md\downloadd.pdb + bin64\static_md\ifconfigd.pdb Console MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Net/samples/ifconfig/ifconfig_x64_vs120.vcxproj.filters b/Net/samples/ifconfig/ifconfig_x64_vs120.vcxproj.filters index f2212302e..3f132720b 100644 --- a/Net/samples/ifconfig/ifconfig_x64_vs120.vcxproj.filters +++ b/Net/samples/ifconfig/ifconfig_x64_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {466b345c-48bd-4a7a-a48b-0d351ad0ad12} + {10f1fdc5-2488-4ae7-8b53-eddb9aae397c} diff --git a/Net/samples/samples_vs100.sln b/Net/samples/samples_vs100.sln index 9e6c8a6cb..5152cf346 100644 --- a/Net/samples/samples_vs100.sln +++ b/Net/samples/samples_vs100.sln @@ -26,264 +26,250 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WebSocketServer", "WebSocke EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SMTPLogger", "SMTPLogger\SMTPLogger_vs100.vcxproj", "{83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ifconfig", "ifconfig\ifconfig_vs100.vcxproj", "{34993998-D465-4BCC-8C37-9B868F8498D0}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_shared|Win32.Build.0 = debug_shared|Win32 {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {90F24341-F59F-385F-A8D6-66AB377FF033}.release_shared|Win32.ActiveCfg = release_shared|Win32 {90F24341-F59F-385F-A8D6-66AB377FF033}.release_shared|Win32.Build.0 = release_shared|Win32 {90F24341-F59F-385F-A8D6-66AB377FF033}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_shared|Win32.Build.0 = debug_shared|Win32 {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_shared|Win32.ActiveCfg = release_shared|Win32 {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_shared|Win32.Build.0 = release_shared|Win32 {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_shared|Win32.Build.0 = debug_shared|Win32 {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_shared|Win32.ActiveCfg = release_shared|Win32 {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_shared|Win32.Build.0 = release_shared|Win32 {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_shared|Win32.Build.0 = debug_shared|Win32 {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_shared|Win32.ActiveCfg = release_shared|Win32 {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_shared|Win32.Build.0 = release_shared|Win32 {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_shared|Win32.Build.0 = debug_shared|Win32 {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_shared|Win32.ActiveCfg = release_shared|Win32 {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_shared|Win32.Build.0 = release_shared|Win32 {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {A140D236-D64B-370A-A7E7-3000725D9869}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {A140D236-D64B-370A-A7E7-3000725D9869}.debug_shared|Win32.Build.0 = debug_shared|Win32 {A140D236-D64B-370A-A7E7-3000725D9869}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {A140D236-D64B-370A-A7E7-3000725D9869}.release_shared|Win32.ActiveCfg = release_shared|Win32 {A140D236-D64B-370A-A7E7-3000725D9869}.release_shared|Win32.Build.0 = release_shared|Win32 {A140D236-D64B-370A-A7E7-3000725D9869}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_shared|Win32.Build.0 = debug_shared|Win32 {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_shared|Win32.ActiveCfg = release_shared|Win32 {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_shared|Win32.Build.0 = release_shared|Win32 {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_shared|Win32.Build.0 = debug_shared|Win32 {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_shared|Win32.ActiveCfg = release_shared|Win32 {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_shared|Win32.Build.0 = release_shared|Win32 {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_shared|Win32.Build.0 = debug_shared|Win32 {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_shared|Win32.ActiveCfg = release_shared|Win32 {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_shared|Win32.Build.0 = release_shared|Win32 {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_shared|Win32.Build.0 = debug_shared|Win32 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_shared|Win32.ActiveCfg = release_shared|Win32 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_shared|Win32.Build.0 = release_shared|Win32 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_shared|Win32.Build.0 = debug_shared|Win32 {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_shared|Win32.ActiveCfg = release_shared|Win32 {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_shared|Win32.Build.0 = release_shared|Win32 {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_shared|Win32.Build.0 = debug_shared|Win32 {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_shared|Win32.ActiveCfg = release_shared|Win32 {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_shared|Win32.Build.0 = release_shared|Win32 {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_shared|Win32.Build.0 = debug_shared|Win32 {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_shared|Win32.ActiveCfg = release_shared|Win32 {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_shared|Win32.Build.0 = release_shared|Win32 {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_shared|Win32.Deploy.0 = release_shared|Win32 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 - {34993998-D465-4BCC-8C37-9B868F8498D0}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 - {34993998-D465-4BCC-8C37-9B868F8498D0}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {34993998-D465-4BCC-8C37-9B868F8498D0}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {34993998-D465-4BCC-8C37-9B868F8498D0}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {34993998-D465-4BCC-8C37-9B868F8498D0}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {34993998-D465-4BCC-8C37-9B868F8498D0}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 - {34993998-D465-4BCC-8C37-9B868F8498D0}.release_shared|Win32.ActiveCfg = release_shared|Win32 - {34993998-D465-4BCC-8C37-9B868F8498D0}.release_shared|Win32.Build.0 = release_shared|Win32 - {34993998-D465-4BCC-8C37-9B868F8498D0}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {34993998-D465-4BCC-8C37-9B868F8498D0}.release_static_md|Win32.Build.0 = release_static_md|Win32 - {34993998-D465-4BCC-8C37-9B868F8498D0}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 - {34993998-D465-4BCC-8C37-9B868F8498D0}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Net/samples/samples_vs120.sln b/Net/samples/samples_vs120.sln index c8daac001..c66851521 100644 --- a/Net/samples/samples_vs120.sln +++ b/Net/samples/samples_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dict", "dict\dict_vs120.vcxproj", "{90F24341-F59F-385F-A8D6-66AB377FF033}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "download", "download\download_vs120.vcxproj", "{D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}" diff --git a/Net/samples/samples_x64_vs120.sln b/Net/samples/samples_x64_vs120.sln index e4f0ce955..80e478901 100644 --- a/Net/samples/samples_x64_vs120.sln +++ b/Net/samples/samples_x64_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dict", "dict\dict_x64_vs120.vcxproj", "{90F24341-F59F-385F-A8D6-66AB377FF033}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "download", "download\download_x64_vs120.vcxproj", "{D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}" diff --git a/Net/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters b/Net/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters index e2c7759c1..86fc1b2ad 100644 --- a/Net/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters +++ b/Net/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters @@ -2,154 +2,154 @@ - {2fbedfe2-054d-4f8f-870c-53762f10e95d} + {1ceaf41d-d102-4d7b-b705-01e563f5f1ff} - {91c4ebb6-fdcc-4817-8bfb-2d81ea3c944b} + {69eb427e-b24a-4fd6-bc24-b6fa87a91e59} - {34bd62d7-6bbd-4972-b1ce-813db954894d} + {37276fa8-e7b2-4eac-9d36-3b2411016b80} - {e2346ee8-8253-4359-bfd0-67c18c633196} + {5b26bc3e-63ac-4e10-bf87-8df33ea30bf0} - {2699a66a-862e-483c-85f1-9a618d1ee656} + {0e648a48-6b3a-4648-b071-f8a0ca0bd0b5} - {b8b0f0ce-0cc7-49a6-bc8c-4da42a16c6ad} + {90b9915e-d77c-4159-965a-79373a9264f0} - {c9453c85-c575-4550-b086-a25e05d4b9d8} + {39df38d2-a8cf-4646-bfb0-ad2a611f6df1} - {890b3e30-501f-435b-be9e-1231b158ddca} + {d44249fa-9ce4-45d9-929b-a5df2f559cac} - {d20333aa-7216-43af-b56a-2477c25de58f} + {cc959f8b-6046-4d2e-840e-c58c84fc9b5b} - {ed2530c5-2bbf-4cb4-bb1b-372a193d2997} + {6f0cd28b-e8ce-4e8f-a6c7-6159c7df5a59} - {77269058-e12e-4d68-8569-3172151a8073} + {63e44671-d088-42a3-8998-2f0ea4cd7b61} - {d415839a-10e1-4193-8745-d92a85d306fc} + {7378f237-b7d9-4e5d-bf92-d2cdc5a9aa6f} - {b731efcc-177a-45e6-a0f9-c376de3df90e} + {c9174ca6-f7c7-4786-975b-770c349918e4} - {20e12ebd-8a91-4910-b31d-34d22c15644a} + {1aa6cb7b-aa03-49c6-ae7f-2614a33a8647} - {9b325063-9239-4b38-bc14-f792dcf4607c} + {c4c97bb9-1c08-4f80-9263-51fde8f6ad05} - {0dbed9c4-4e60-441e-af1a-a8d4dccb386c} + {c2ca12b0-576a-4490-b56e-a1ac8511129c} - {2a184684-55e9-4ae4-ad03-e73f99983237} + {28f9cce8-f5ec-4cd3-be6f-f70d75ffc7b9} - {633fd2fd-764b-4eec-afb9-8cfdc8320c33} + {79b3e6a7-e4a1-4f26-8da1-a79a7f611671} - {eea37b03-73e5-4f37-a14c-14ea039536c0} + {25d83862-5714-497d-a30d-132e48ad2c5d} - {f3a58530-5a74-4541-9a4b-d1ed6af0d129} + {a3d6c32e-8e39-455c-89a1-726081feec47} - {903908f1-3119-49c8-935f-43cceb3e9f63} + {57d31b60-79b7-4b79-9939-d33f77fb9c08} - {1c9f2c4f-3429-472a-bdb7-d6752245ce52} + {634fd284-d38d-4022-a402-ed8e7141e364} - {be9c4301-b6eb-4f41-83de-f2ee0582be90} + {fba568cf-de6b-4229-8f2d-f8d115b2eb67} - {c88a9c35-eec2-434f-b184-5ad02b6848f8} + {5c7c1d4b-adee-4f39-9a86-7713a0ec63b3} - {232e23f5-d452-4728-bcde-8f9e655f1dcf} + {ebd2498b-4aa0-461d-816b-06018f714cc0} - {57b685ba-0488-471a-884e-150f714dff2e} + {f50c0cc4-683e-40e1-a723-2937c51e0b7d} - {29249726-3e6b-4faa-be0b-6dca9f201429} + {5a8880a2-2fd6-4598-b488-4dfde3c24017} - {6aa5d2d6-cccb-4c74-8a77-2cb788695d62} + {de7540fa-5953-42fd-a9f8-da2bbd440de2} - {16d7f1c9-9ae8-4e1e-9af7-48ce45b352b5} + {5022f8a4-3746-4aba-8a35-067e723a7f66} - {92097734-9bf1-47bd-b59d-2d6a18364d29} + {9def7d39-895a-401e-8bdc-87755b4e31d9} - {3b44336c-c8a5-4160-b2f6-3c1356fe5e0f} + {554ef01c-eaec-4d5b-8b03-e59ca8e11204} - {4aa77bc7-c163-4c5e-9019-d9711303c78a} + {cc282f2b-646d-47d7-8b57-c5149b979f0a} - {10b7bc0b-358d-4961-bf28-625fc72400fc} + {7ce567b9-f3e9-4de5-ac7f-c9af7950625f} - {603f39f5-c6de-4d0f-b40b-594e036bf10e} + {933733b4-0c3e-4ab0-bf6b-1adc68b5dbba} - {f9b2daac-3d95-4808-8418-8cec2f52795c} + {70074a63-aa8e-4fb6-8ace-e0afaccb6e97} - {282d10aa-e46a-4d93-9b69-4f75b99cfac5} + {00a90bfc-3ed7-4d65-9fc4-c4bba6059ac7} - {70f7337a-e11a-4c04-99bf-aa49023254c6} + {53666498-6c73-4b82-abe7-de34a18a2bb3} - {18a699d0-2f60-4fc3-b6c1-b21b5791cfc4} + {9d0e1cd8-1fea-4b4a-9b7d-90485abfd00d} - {a6d27d75-f569-47ce-9be6-9cebae15acf2} + {ca7c23f5-c0ff-4475-924f-dd69f796367f} - {3df73689-07df-48a8-bd6c-59de2c8a0eab} + {0a82d005-b638-4b2f-96af-969096768332} - {c375476a-f7d6-4530-b8bb-824c9afc660d} + {66d4e980-7995-4a15-baa0-21eb20f40762} - {36b97401-e913-4db4-843e-6a7f3b937ef6} + {17b2c582-d100-411c-b055-a792386cb201} - {954beb5e-d650-4cfd-8340-7aefcfa11e28} + {6d5c5983-74a5-41b0-8c30-296a23530ccc} - {8e00ba9a-e950-4d07-bd73-aa470b0e0c4c} + {05fb1727-0441-4b3b-8ed5-fa05ddd26135} - {524bcf19-ef9b-4354-841d-0db118fa5b9b} + {76a97011-c213-49d2-8b89-4bbf57b782c7} - {7631333c-46c3-4227-b4d2-c939130353a3} + {cc6e2ddc-fb20-4290-92ee-7750366040ba} - {cb999f63-ed6b-4cb0-9e46-14507990478f} + {b6d827d0-3517-4fd5-8de1-69509aab916b} - {b667f2d5-02e1-449d-8156-f4e01afd7d53} + {4ee934a6-f205-43f4-b687-ffe3aa24545f} - {46269b06-7bd7-4f0c-9630-8f8445e7bb6b} + {8a9b3f6f-547f-49bf-944e-87942b909afb} - {2b4e1c12-325d-4c8f-a327-de106d46937a} + {2e47e13c-f2c5-4e43-b6f3-d68d6f720b01} diff --git a/Net/testsuite/TestSuite_vs100.vcxproj b/Net/testsuite/TestSuite_vs100.vcxproj index 02d96c04b..308ae3e9b 100644 --- a/Net/testsuite/TestSuite_vs100.vcxproj +++ b/Net/testsuite/TestSuite_vs100.vcxproj @@ -1,4 +1,4 @@ - + @@ -32,7 +32,7 @@ TestSuite Win32Proj - + Application Dynamic @@ -63,27 +63,27 @@ Dynamic MultiByte - - + + - + - + - + - + - + - + - + <_ProjectFileVersion>10.0.40219.1 bin\ @@ -124,7 +124,7 @@ true true true - + Level3 EditAndContinue Default @@ -156,9 +156,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -186,7 +186,7 @@ true true true - + Level3 EditAndContinue Default @@ -219,9 +219,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -250,7 +250,7 @@ true true true - + Level3 EditAndContinue Default @@ -282,9 +282,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -300,124 +300,124 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Net/testsuite/TestSuite_vs100.vcxproj.filters b/Net/testsuite/TestSuite_vs100.vcxproj.filters index efb189120..86ea3bd14 100644 --- a/Net/testsuite/TestSuite_vs100.vcxproj.filters +++ b/Net/testsuite/TestSuite_vs100.vcxproj.filters @@ -2,154 +2,154 @@ - {0b165199-f1c2-4c00-b68c-2613130506c5} + {a7115ffc-d124-4bd5-855c-f23a4bc1fce5} - {62365c70-c740-4aa7-8751-ed1f18bf95ca} + {0064d6fa-5f12-429b-aa57-315bc2dfe416} - {6a885aa7-1bb2-4caa-b21b-973a8a3fd26f} + {798da3a7-c240-4990-99a6-cb489e17111e} - {24e43848-1718-4c6f-a182-2a51d0ebbaa3} + {1c46b64a-24f2-4de0-a10f-43de22a3a79c} - {2d9778c7-4877-4a48-bfea-6a3fcbada4b7} + {4259235c-4a54-4501-a76c-9d99134565b6} - {5b5d6f41-c177-4bf5-9db2-994f14935379} + {debe742b-77ae-4439-ad36-7667f26f6659} - {02131860-fe44-4f79-9aed-944adf67154c} + {657237a2-f0f6-4746-a82d-7c9ab3c37cf2} - {e394deaf-e2ca-4825-afaf-4e5b33570a4c} + {158ae8ed-8191-4b91-9433-32819fd0e4f8} - {c68d0345-b2be-42c9-bc8a-54fa3f27770f} + {a996f827-2244-4cf1-a163-b3f8a8d4ca7b} - {0351a155-a5af-4dde-a2db-c95f6bdb3ac3} + {e8b31b45-17e1-4d20-96d2-77c23e4231a2} - {70f1ac1e-1c22-4297-b08c-e7698c88a48b} + {f5f370e1-7b18-46b5-b6c1-e46dfe8e371f} - {3ca11f2e-a2f8-491d-b4a4-a2a5207f0349} + {32d8f6d6-b898-456e-9da2-727bb26bd4b0} - {5ac7a3e9-7075-4cb3-86cf-9f6f172aadb1} + {73628bde-95f8-4db5-b795-5965208ab2f2} - {0f34c87b-0216-4730-a945-45080bb74b1b} + {12b4ac2e-5095-4bf4-8ed7-80239ef48e24} - {5b1160f2-04ed-4c55-a8a4-b33239a926e5} + {b7d3af58-9731-48f8-b469-ad35d4bd2c9a} - {20246217-a061-4fb8-a4ff-78f5a0925397} + {9d8b5109-bc86-4cdc-9e99-120d238fc128} - {74be2be9-19ab-4e48-862c-d827698e696a} + {a794a6cd-e79f-4706-a279-8a452ad27752} - {725e937c-52eb-4a5b-8156-def69b3e1d50} + {4b08bd91-32f4-473c-9769-b7e5b5727cf5} - {a69a784f-7e3b-4980-b7af-d59bd74ea482} + {4c47f71c-fe81-438d-b2d3-9d9f0b8f019f} - {e5c2021a-2289-4403-b7d1-86dc3ff865ac} + {e8717c6e-db2c-4b57-9a1e-7d81668b29fe} - {cc23c194-c0bc-4ee9-a001-a98c01d7356e} + {24632d19-3595-49bc-936d-59d7ddc43c82} - {2d8792d2-c2db-428d-ba42-08ae93f207b4} + {12bd9017-15f3-4bd9-bd70-065a5de0cb9d} - {cc8a5a3f-96b2-4dbe-9495-fc16b4e66137} + {f7e9ef09-caec-4b70-ae5c-db7e89fe02f4} - {414fcd9c-8ee8-4b0d-97d4-ea41ee473706} + {9ef76c70-a3f3-4bbb-8d20-60195d9d14f4} - {5b1ef38d-ae03-47ae-bc0a-329e0613140f} + {65f79dab-58ef-4b5d-a22c-597c44850a8f} - {b496eae8-118f-49a0-8966-e9a0cc6c3510} + {9a22445c-ff74-434e-8974-412140bed89a} - {98e4dd19-5111-46c2-973d-e286d14b4465} + {28c4ab71-5522-4aa8-b2e3-7ba8f32c931e} - {3c1a034e-d7c0-4626-b1fd-5e2ac3507b05} + {25b9c798-b014-48eb-8c6d-1b10475ee09d} - {fcf9dd04-1a9a-4116-b4f6-2f0f3ca94759} + {2bbd65e2-5d4b-47d7-887d-e07486c3f214} - {69e9a32a-d7d8-4331-8ae7-15fa6fbc81cf} + {cfdd972e-1a67-43f4-addb-6d01af93c62f} - {1c35d033-f660-433a-90c5-154734a623d3} + {32caadcc-ceac-4d36-b28b-6d0423556587} - {2ddf0c98-6629-4be1-adc5-2d5bf532cb5a} + {8fb94095-9e9a-4d99-99bb-6f47d1f5b347} - {2f10773e-e9af-4044-bd9f-68ba05b6ecfd} + {e9086686-506a-4d66-b8fa-017b4e77c565} - {aa5d66bf-4e64-4e5f-83b5-81ff73df3c09} + {3291b772-73a7-4961-a394-e0b1880b4534} - {4fb51376-75a0-4df3-ae41-a6b74e0f87d3} + {5292bf46-d656-4cdd-a73f-63b32aa5dbfc} - {dfbf8989-d472-41f9-977c-b71c4b68cb44} + {9c6af3a8-42c7-4c58-8029-9b5c908f5731} - {5a5da396-0fb0-4b41-80be-5c984507af93} + {ffc64058-5958-4e85-bb19-d1507881daf4} - {47ece144-d629-4352-8b32-f4826dcc66a3} + {f8112cad-73a3-4b27-a86f-1406f9082cd2} - {fb6227f7-c08c-49d2-bf64-320dd1756fad} + {85900ac4-9450-4709-8c96-e69889cbc783} - {f211df9c-2209-402c-8464-b2744db162d0} + {7df1335f-28e4-47bd-a542-f94a27e0b84d} - {b43aa5b9-877e-41bf-a477-4bd6e8927b76} + {06cc64e4-544e-4f96-842d-5d8c16a3337e} + + + {b7a7a4b2-d2a6-4638-b59c-ebd1aaba305e} + + + {ac88dcda-b149-46db-b263-f7365cbe4cd1} + + + {f5a9229b-83a9-4021-8814-ad0290c76acf} - {6e70814c-57d7-4e9c-9fab-e94e41002713} + {cc7f34bc-8e64-4f98-974a-b596f43c05bb} - {b8bcd46e-3569-459a-801b-1c0a021e3cdd} + {bbb1ce1e-e43a-4a1f-a9ee-8265f281fc0a} - {2fb3fdbb-636c-4104-9c07-452b200336f8} + {9eac391a-ff7a-486f-a250-af880698399b} - {1b040bcc-694f-4e05-a609-8bdbde3b9cf3} + {3c7e8981-12a7-4a8f-9103-086e9ddc75a0} - {70931d30-a87e-4360-a194-4b2d78fabe6a} + {fe904e37-a165-4416-a1ad-38a3157baa69} - {713c4782-210c-4445-a809-8f69cb1321e0} - - - {ae1526ee-c26e-44a9-87cd-a93a4f53d767} - - - {27258d95-fc91-49f5-91f6-394bbc22ab87} - - - {c3807303-d9a4-4f19-bde7-352357a270e3} + {4e955e68-3310-4c72-b418-e1f8504e1211} @@ -309,6 +309,12 @@ ICMP\Header Files + + NTP\Header Files + + + NTP\Header Files + Logging\Header Files @@ -318,12 +324,6 @@ WebSocket\Header Files - - NTPClient\HeaderFiles - - - NTPClient\HeaderFiles - @@ -485,6 +485,12 @@ ICMP\Source Files + + NTP\Source Files + + + NTP\Source Files + Logging\Source Files @@ -494,11 +500,5 @@ WebSocket\Source Files - - NTPClient\Source Files - - - NTPClient\Source Files - \ No newline at end of file diff --git a/Net/testsuite/TestSuite_vs110.vcxproj b/Net/testsuite/TestSuite_vs110.vcxproj index 3d6b0adfd..3336630ff 100644 --- a/Net/testsuite/TestSuite_vs110.vcxproj +++ b/Net/testsuite/TestSuite_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -310,8 +316,6 @@ - - @@ -360,6 +364,8 @@ + + @@ -369,8 +375,6 @@ - - @@ -420,6 +424,8 @@ + + diff --git a/Net/testsuite/TestSuite_vs110.vcxproj.filters b/Net/testsuite/TestSuite_vs110.vcxproj.filters index 0a5e14325..a1c8778e0 100644 --- a/Net/testsuite/TestSuite_vs110.vcxproj.filters +++ b/Net/testsuite/TestSuite_vs110.vcxproj.filters @@ -2,154 +2,154 @@ - {48ca70f9-786b-4493-9a5d-6ea87fbc8045} + {0bae87a1-affe-4eff-b36a-3f5bf6ffd468} - {7b27113a-9c7b-4e42-b094-f063fa76a6be} + {803512ef-ad06-4c60-91bc-dc5ad166a7ff} - {63644439-2d95-429d-af99-9e2df30e9885} + {68c8eed3-cfbc-4d8c-91fa-d25c2ef33dc0} - {5773c8db-1013-400b-ae3d-8d09abe20808} + {d43f81d4-d9bd-404d-84f8-1ec1e3126d5e} - {65ad36c2-2f99-4d3c-bc41-ec926cce1600} + {39653ab2-7476-4b8f-a02b-55fb951a1ab9} - {c3eacb0c-763f-4884-8829-9ac68f02d7ca} + {62650e54-9763-4d28-b6e7-8178f3cf4728} - {e87975e6-1c4c-4840-9731-dea2698fa17a} + {118bcf82-cb49-47da-8957-8ed4850c2063} - {c333645b-e62c-4c42-b138-2a43f6e1729b} + {037b7c25-3021-4bee-b704-d60a96485974} - {80b63c9a-3767-4bcc-9964-2d11368e2393} + {8c7d4482-2329-441a-9a8e-50f99f01219d} - {219a3092-f0d8-4e6d-97cd-043a2383cf2d} + {c8eba6a7-7873-4cb6-95e2-ec9767c18b24} - {9a64f56e-b760-4e2b-b724-11ed963593dd} + {f1791b3d-d119-49ae-b1ee-0ebb699f0d4e} - {054dd0a0-5eb9-44a6-bf36-b451df7c2f49} + {2dfc1438-6513-45c9-920b-ddee10c20020} - {59cdac54-609f-4dc5-8196-243a2f18248f} + {c76799a2-5982-4b3f-a735-de69b9bcabf7} - {734418de-08bf-4de5-8b3e-6e2cd3e54594} + {c493a16e-36c5-42ee-b064-d88afae4997a} - {1062f6be-f10c-47df-8d94-0a61060d86a9} + {908d885e-c63b-48f0-b3c9-a045584752f2} - {ea257d81-66d1-4147-b5c5-2e794a73b420} + {7c2ca5a4-abd3-4be3-bfbd-a01cf884d2f5} - {f95255e7-cb67-406d-8db9-a9b16148fe98} + {1653d9ba-e149-4cd6-a606-035dbd905894} - {48408d36-c6a0-4b79-9b30-274976867bdf} + {511086d5-476c-4bbc-bded-71f2078fe47c} - {e7b05308-e6b6-4662-81d9-af8e0c9cd45d} + {23c90a01-5256-43aa-b85e-77d993f1e76e} - {7ef12770-0229-46a5-836b-5037bbcdd228} + {6a7f44ff-53dd-4ea7-be8c-a59d52c731ea} - {8192788c-358c-4309-a278-6b7575cd4ff2} + {259056c0-4931-4ef9-8bda-70b7bfc84cb2} - {61e8851e-0a0a-40f6-9c0d-ec8174c8fa35} + {3393b441-0b5c-4b52-844e-2a0a23bb87d4} - {eef545aa-5443-47cd-a739-ae31908f6c25} + {8cf719ec-69a4-4383-8862-c0c3aacd12b4} - {41b2b5cb-149e-4f95-8f41-52d3d6c523c8} + {1bb1b70f-b8a4-4b94-a82d-5b96074a9bcc} - {71bab8e9-2c1a-4ef4-a51b-e2fbc0f18033} + {3026d6d7-21c7-4fa4-8512-92b9ce0d41d2} - {a28b8a9d-e2c5-4d21-b752-0045a5414eac} + {c6a6d73b-f990-49d6-a23a-0e2f7da4cfe7} - {75f0cef6-da4e-4f73-87fa-389a86b5495a} + {c3d9a265-0f65-4b23-a691-f6063487f167} - {3deecd78-447c-4059-98b2-5c238b137321} + {7fd4acb3-43ed-4360-a598-2a44f8858e86} - {126bdee4-4ec4-4f4f-a95e-9af62e849619} + {a79d5c85-c4da-43a2-913a-e746ec7c5597} - {71893c8f-9949-4d38-ba3e-993e0f0befa4} + {a39c656d-38ce-417c-9514-8113628af35a} - {4d7262fa-d505-4531-b66f-e6d9555c8cf0} + {cb18c4d5-8393-4077-bd10-42f492aafd3a} - {cc691761-70e0-469f-8638-feca5de5ad75} + {b9c1827d-8628-49e2-a85e-2274e2d614a0} - {9f4ce2b4-24cb-4eba-a1e1-926f0c714327} + {bd954893-6d1f-4491-be41-565b0a7778e9} - {1ba2fc47-9573-4055-a7d3-d1e7115e3eb2} + {34b676e7-9960-45f3-a82e-21ff5302f8f7} - {171276dc-2346-4746-9ff1-04e519c459f0} + {f3c24d99-b1e4-4428-9b88-9d2dc80a83ca} - {98625488-1f08-4ce2-a1be-16596a811b3b} + {2cc23f66-e6b8-4486-a274-7614ac5a1e45} - {522d02ea-bcac-4d80-8291-b2617fd01a3c} + {3fc65bd5-71ed-4a35-b34f-617c6452a117} - {ee204760-6414-4a5a-81aa-8d7b4ba16ee7} + {16e164f9-9f55-4fb7-8f81-3f7e93718597} - {3f558096-292d-490c-a0a6-2b87f1f0007e} + {a597dd24-8219-4906-96c3-597f043b276c} - {e449d0a8-da61-4eb9-b33f-6689db5da998} + {d9423b0a-c554-4374-bbfd-3e6e610ce87f} - {ee043df7-781f-4e7b-99c9-75c571ba97df} - - - {56640d20-c9b0-4445-b167-5a5ae14a4b7c} - - - {c2645a28-101a-438f-a6c0-8f9c53e4b38d} - - - {ed6ae9e8-2e31-40ff-8220-2f5e2a5141f6} - - - {dea3bf66-314f-4c92-9a5f-bb3e047e3bfa} - - - {7e0a6c62-ad03-4583-8cb5-9e9febfbb244} - - - {243e661e-059d-497b-a9ec-0d9584b94a98} + {063b2e28-a9e9-461e-afe1-b22ffe0d3899} - {cb64113a-b8ea-4ddc-a022-78b01ab6e5b9} + {1a1055d7-ba78-48dc-bc37-143057cba9ea} - {db878702-424f-4858-8c28-6b94267cf08b} + {d41da626-0316-45f4-b09b-3f57a6964cd4} - {77a81b0d-ee76-41b0-b1e5-12ace10db70d} + {30cd0454-3d02-4a69-9569-ee3f55b906ae} + + + {ef8fe8ff-a5f0-4390-b5d4-b1a64454c5a2} + + + {72889f5b-600c-4b96-9078-d8d801a0bb12} + + + {d1446cc7-1517-4578-8952-8b585aa099b3} + + + {3f193812-2659-47a4-8271-6f2fd1013cc6} + + + {73a1fdbf-3f9f-481e-8343-d391fe554a34} + + + {b23e5ebe-82c1-4420-8c25-ec3f24ef142e} @@ -309,6 +309,12 @@ ICMP\Header Files + + NTP\Header Files + + + NTP\Header Files + Logging\Header Files @@ -318,12 +324,6 @@ WebSocket\Header Files - - NTP\Header Files - - - NTP\Header Files - @@ -485,6 +485,12 @@ ICMP\Source Files + + NTP\Source Files + + + NTP\Source Files + Logging\Source Files @@ -494,11 +500,5 @@ WebSocket\Source Files - - NTP\Source Files - - - NTP\Source Files - \ No newline at end of file diff --git a/Net/testsuite/TestSuite_vs120.vcxproj b/Net/testsuite/TestSuite_vs120.vcxproj index 391711922..4346656ab 100644 --- a/Net/testsuite/TestSuite_vs120.vcxproj +++ b/Net/testsuite/TestSuite_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Console + Windows MachineX86 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 @@ -192,21 +202,20 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Console + Windows MachineX86 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX86 @@ -256,20 +264,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Console + Windows MachineX86 @@ -288,142 +295,141 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Net/testsuite/TestSuite_vs120.vcxproj.filters b/Net/testsuite/TestSuite_vs120.vcxproj.filters index 4290255e3..103e4463f 100644 --- a/Net/testsuite/TestSuite_vs120.vcxproj.filters +++ b/Net/testsuite/TestSuite_vs120.vcxproj.filters @@ -2,154 +2,154 @@ - {48ca70f9-786b-4493-9a5d-6ea87fbc8045} + {f259ee4e-29da-474b-bd43-02850764391d} - {7b27113a-9c7b-4e42-b094-f063fa76a6be} + {b34bc993-7def-420e-9d67-7560b5d590b3} - {63644439-2d95-429d-af99-9e2df30e9885} + {c70d6cca-6ae5-4d2e-b6b9-c9853d8f47ce} - {5773c8db-1013-400b-ae3d-8d09abe20808} + {115733e0-cac9-4d06-851a-51b883e086f4} - {65ad36c2-2f99-4d3c-bc41-ec926cce1600} + {0b821bb5-9a22-4eb2-94aa-b9329acbb89d} - {c3eacb0c-763f-4884-8829-9ac68f02d7ca} + {45dc3033-c32a-4bd1-8546-4544c084576b} - {e87975e6-1c4c-4840-9731-dea2698fa17a} + {8e3f80fb-3912-4ae8-9dbf-079f4f9ab35e} - {c333645b-e62c-4c42-b138-2a43f6e1729b} + {27c6d776-cdc5-49a5-89e6-5c10b2963665} - {80b63c9a-3767-4bcc-9964-2d11368e2393} + {23021f90-e466-4d8a-be7a-4cc575ad2ffc} - {219a3092-f0d8-4e6d-97cd-043a2383cf2d} + {e61a8945-039a-409d-889e-b717a5d95e90} - {9a64f56e-b760-4e2b-b724-11ed963593dd} + {95f28ac6-f3e7-42e3-84d9-c318e961749b} - {054dd0a0-5eb9-44a6-bf36-b451df7c2f49} + {afc8308b-b468-4076-8655-cdaaf8d901ff} - {59cdac54-609f-4dc5-8196-243a2f18248f} + {b88a418d-c8e0-4381-8647-4d2cb71dde51} - {734418de-08bf-4de5-8b3e-6e2cd3e54594} + {341110bf-7038-44fc-a191-6148c2aa6969} - {1062f6be-f10c-47df-8d94-0a61060d86a9} + {89974cf5-8695-4292-b608-05f1458815e8} - {ea257d81-66d1-4147-b5c5-2e794a73b420} + {75b6055a-a69a-46b8-b33a-0ea331a3892d} - {f95255e7-cb67-406d-8db9-a9b16148fe98} + {3204e935-260e-4735-bd2b-073829f29034} - {48408d36-c6a0-4b79-9b30-274976867bdf} + {253ab061-1355-4464-8d75-1bc312083677} - {e7b05308-e6b6-4662-81d9-af8e0c9cd45d} + {89f5eb92-90d5-4017-8266-deeba57f38c4} - {7ef12770-0229-46a5-836b-5037bbcdd228} + {fc31dd8f-d31a-4760-9dc8-568fde5fcf64} - {8192788c-358c-4309-a278-6b7575cd4ff2} + {b83495da-2b73-4ec0-afc4-a1c71888864e} - {61e8851e-0a0a-40f6-9c0d-ec8174c8fa35} + {606ba02f-782f-4a91-acdd-86d7b25da55c} - {eef545aa-5443-47cd-a739-ae31908f6c25} + {4aa73fb5-cda7-4fdc-be84-92225c315d3a} - {41b2b5cb-149e-4f95-8f41-52d3d6c523c8} + {ceca51e3-2b82-4172-831f-d5d498bf7d12} - {71bab8e9-2c1a-4ef4-a51b-e2fbc0f18033} + {1a014a2d-b909-486f-9021-42c958c88135} - {a28b8a9d-e2c5-4d21-b752-0045a5414eac} + {a58f9a29-fc53-4316-ad04-53b157dc1842} - {75f0cef6-da4e-4f73-87fa-389a86b5495a} + {d7af737c-55d4-4744-ada5-ae21dca91551} - {3deecd78-447c-4059-98b2-5c238b137321} + {bff62639-0e2c-426a-85c3-91df2cbd174b} - {126bdee4-4ec4-4f4f-a95e-9af62e849619} + {a80b35b7-1aaf-4067-a780-d0c1c93c73ff} - {71893c8f-9949-4d38-ba3e-993e0f0befa4} + {75411303-b933-4e7b-b1cf-8c147ca0a345} - {4d7262fa-d505-4531-b66f-e6d9555c8cf0} + {46c9a9ca-38f8-4732-bc41-0339322f433c} - {cc691761-70e0-469f-8638-feca5de5ad75} + {0d1cd85e-265d-435b-a144-5c6d2781ce7d} - {9f4ce2b4-24cb-4eba-a1e1-926f0c714327} + {196936d5-0c96-4391-b54a-eb247bd0fa09} - {1ba2fc47-9573-4055-a7d3-d1e7115e3eb2} + {c32ad16c-dcd8-4848-82c6-14bd98305084} - {171276dc-2346-4746-9ff1-04e519c459f0} + {e30442c4-2fd2-4145-bfd6-29ad0b6dfd8e} - {98625488-1f08-4ce2-a1be-16596a811b3b} + {459a4d69-f197-4762-b1d3-5a37c920e276} - {522d02ea-bcac-4d80-8291-b2617fd01a3c} + {cc61c5a1-0158-4ee7-aceb-585878a990ca} - {ee204760-6414-4a5a-81aa-8d7b4ba16ee7} + {abf6732c-0e23-4c0e-9a18-31002926a5b6} - {3f558096-292d-490c-a0a6-2b87f1f0007e} + {8d246811-767c-4b6b-b209-f885cfb3aea9} - {e449d0a8-da61-4eb9-b33f-6689db5da998} + {8af8f963-820c-49fb-a0a0-9fc68fec2d23} - {ee043df7-781f-4e7b-99c9-75c571ba97df} - - - {56640d20-c9b0-4445-b167-5a5ae14a4b7c} - - - {c2645a28-101a-438f-a6c0-8f9c53e4b38d} - - - {ed6ae9e8-2e31-40ff-8220-2f5e2a5141f6} - - - {dea3bf66-314f-4c92-9a5f-bb3e047e3bfa} - - - {7e0a6c62-ad03-4583-8cb5-9e9febfbb244} - - - {243e661e-059d-497b-a9ec-0d9584b94a98} + {734cc281-21f5-4577-ad8e-04d9cd21a76d} - {cb64113a-b8ea-4ddc-a022-78b01ab6e5b9} + {09ea8b28-b73c-4a46-a639-62ea4ec76233} - {db878702-424f-4858-8c28-6b94267cf08b} + {0fe85948-34c8-46f0-a682-fdd37367039d} - {77a81b0d-ee76-41b0-b1e5-12ace10db70d} + {3b770e03-ccd6-426b-a341-425e757bacd1} + + + {c27b6618-b5ba-4187-bcfb-37d280408b31} + + + {2df00f6a-0ca9-4ca1-a741-178eb0d5245e} + + + {f54ab8a4-30ba-42c2-b39f-0a42cc487965} + + + {3914a50e-2ec7-42cc-bab1-1f6cbd1fd068} + + + {a9045b65-ce0f-4143-8608-0df94bed0dc2} + + + {63e53517-5881-4994-984d-9d90d726a6b6} @@ -309,6 +309,12 @@ ICMP\Header Files + + NTP\Header Files + + + NTP\Header Files + Logging\Header Files @@ -318,12 +324,6 @@ WebSocket\Header Files - - NTP\Header Files - - - NTP\Header Files - @@ -344,6 +344,9 @@ _Suite\Source Files + + _Driver\Source Files + Sockets\Source Files @@ -482,6 +485,12 @@ ICMP\Source Files + + NTP\Source Files + + + NTP\Source Files + Logging\Source Files @@ -491,14 +500,5 @@ WebSocket\Source Files - - _Driver\Source Files - - - NTP\Source Files - - - NTP\Source Files - \ No newline at end of file diff --git a/Net/testsuite/TestSuite_x64_vs100.vcxproj b/Net/testsuite/TestSuite_x64_vs100.vcxproj index 3407d2f8b..c21dedcb1 100644 --- a/Net/testsuite/TestSuite_x64_vs100.vcxproj +++ b/Net/testsuite/TestSuite_x64_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -304,8 +304,6 @@ - - @@ -354,6 +352,8 @@ + + @@ -363,8 +363,6 @@ - - @@ -414,6 +412,8 @@ + + diff --git a/Net/testsuite/TestSuite_x64_vs100.vcxproj.filters b/Net/testsuite/TestSuite_x64_vs100.vcxproj.filters index a24be786a..e2fa87ae7 100644 --- a/Net/testsuite/TestSuite_x64_vs100.vcxproj.filters +++ b/Net/testsuite/TestSuite_x64_vs100.vcxproj.filters @@ -2,145 +2,154 @@ - {77c47d24-d3c7-407c-9237-a01e8c2d09d6} + {bbd07028-a7df-42d4-9a2e-0081eeefde14} - {529473dc-463d-4ab4-bf10-94f5378ee677} + {55b7d087-9d6c-4753-b3d7-afd99ae43e2d} - {652cffe5-372d-426e-9836-6f281151aa44} + {d2881035-8cfe-4201-aa96-0801def520cd} - {0928671f-c3a7-4b4a-997b-981795b974e3} + {8fd99951-1231-406f-9b3b-e822a454841f} - {5a9a3ac0-956d-4855-8910-eccbf2744dba} + {4efb0c16-d87e-4f5a-bb21-9539272a3b48} - {7e088eec-3caf-4af1-94be-658376c28a5f} + {d96f51bc-3a7c-41a7-8064-43498ea38275} - {e384f32d-a546-4f17-9a82-919f8c6f66ed} + {bd3e669c-83f0-4c11-bceb-74a6c905805c} - {63384ac3-1472-48b4-bdfd-680db5726253} + {4f4f1c1b-e6f2-4dd1-9fd2-3f934e1aebbb} - {2aa06336-9308-43bc-9c29-8cc7be44aa97} + {f855edd4-c8e9-4034-9bac-19ef3a374972} - {feb009fe-be29-42ff-b062-3e02030b9164} + {4ad183dd-1762-4fc8-a4e2-f359476d0e1d} - {f01f759f-21c1-4f52-8aab-c2ecd402666f} + {bac658d7-c473-415a-bd60-e5d296879510} - {72918a15-0100-4767-8b00-a84278839c53} + {1c4252ea-0808-4b35-82b1-857f71dcdeb4} - {1d03de2e-7265-40dd-b066-f774e2fcee21} + {68349a96-ce83-42a9-b670-0115c7be0ad7} - {e2a72d89-3d32-4d8d-9d3d-bd99f5dfe89c} + {0c9b2c33-a3a7-4994-892b-e6cd9982e0fa} - {9f37a570-a8f6-475d-a6d7-56eab3b75a0c} + {a0960cd4-dc74-4c5b-945d-7797bc48a667} - {c7953ca6-cd5b-40af-ae00-d3ace26029e9} + {b096430f-5ae0-448f-8cb5-d8d7f7d5581a} - {18ecb268-11cd-4096-852d-49e65b9d1647} + {8f9c68b9-c4cc-431c-9e29-d51ab558ada1} - {921d6d48-2558-48c3-9126-8635da900abd} + {1b3a7631-544d-4f25-8a50-4083bc45b14c} - {fb0bfab3-2407-4bd9-a467-04684d9d2c8b} + {ca3b66d2-66f9-404b-a518-0c0629e003cb} - {3499350f-3045-4deb-bdad-c49975d90c28} + {061d8b74-2c58-4f35-aff8-5367964dc849} - {71dcf508-c68c-4885-9e26-415006377187} + {3a733e35-8d2d-47da-a1ce-7eec8d494ca6} - {0c6233a7-0429-4e66-beed-6962e7468c1c} + {5c1a44f0-c6c2-400c-b985-6ded7b34057c} - {fc3774e0-c563-40db-a5ea-d6126e119fde} + {53aabef3-464f-432c-a91f-c630a1728bc6} - {bd5e96ae-ae5c-45b7-98e9-6d880105ad6a} + {d33491e8-61ec-47fd-84e1-b60a6e18feef} - {754f561d-bf1e-494a-92ac-6eda35bac1a8} + {24a3ce5d-9ff1-42ce-88ab-f0a19da4ef05} - {e84a24c7-0319-4e30-b4e7-af42f1282ad3} + {c16c0625-e0d9-4e30-9826-e9243f92222b} - {6897c8ba-ba66-48dc-8d36-f854bb3aaf1c} + {ef9c421b-14b5-4bdb-86e8-964bb0a57b08} - {700d70ea-c941-451f-9ea4-dfbdf95183d0} + {1d85bbdc-74fd-4f3f-9a85-d712dffd7101} - {65664f90-65f9-4fbd-a0fc-838a807461de} + {d0ac63bc-addb-494a-b780-a590d81f206d} - {f13bf5e3-9009-4a6c-89f7-f29668bb292f} + {25634c7f-1a3d-4c0e-89f8-df3bd3cbafe4} - {a5611d4c-d8d1-4d79-a527-64503f1ae638} + {6eaa046f-efb5-4586-871c-77bb07a70b42} - {b3cea2f6-8270-44f6-80d0-039fcc61480b} + {c7e76419-cfd7-40ce-ab1d-95e8567f5d56} - {7a9fd8d6-dc2f-4290-8ac9-c0dde8a16484} + {14c436e5-a9d6-43fe-9071-81baf2789753} - {858abde3-37e8-48e4-a45e-6cabd78968e1} + {5d98a975-e10f-4d10-8b98-472c55751418} - {74afe8f6-ba81-4c02-bc79-b5fcec69c74e} + {99b797b8-f54c-468e-9a1a-1016118354df} - {b48ebc26-5939-45eb-8dc2-c021f71c997a} + {2d203d04-4b25-419a-af1c-b280761c2242} - {2e5d8446-e38b-499c-9735-9a970aeca803} + {02dac707-f85b-40d9-945b-6af752bc8350} - {b0f703f3-1a51-482f-9042-70d75c24d455} + {deebffd4-833b-4952-9424-078d83d8ba78} - {0276d7cd-b7da-4403-9b7c-c79243f2fc4b} + {a095fea8-d7d4-46d9-91eb-7f6a02f28d78} - {65ead7bc-8025-4908-9134-7da5f52fccfe} + {62d0d1f8-21e4-4ff5-ab57-d06a14280cc4} - {d978d9d4-4226-4d4c-822d-dd464101d355} + {02d52b00-3d12-45a8-ba30-05e18ecd72b1} + + + {e49ebf49-da45-4fb3-85b1-8ad3b95725de} + + + {7fcb8c7d-ed39-4b85-8134-5602bb070a09} + + + {33af4ff1-d65f-48be-83fd-79ba1934462d} - {85af2e3d-da2d-491a-92e4-5f8822537422} + {26b2ea08-ebac-440f-b892-ba2611794d2c} - {7a538e7f-99fb-45aa-b561-29f1d02c1d47} + {34af4549-b3b8-429a-bf72-6d3c27bfe083} - {be89433c-2324-40e8-8c71-97f17e4c47ea} + {9b73f6f0-6e13-4dfb-b4ba-6bf60c5c2b6c} - {074dc9a8-e03d-4933-9053-d8c1352779c9} + {8dc7169d-70c0-42da-9679-8780fb04dfa3} - {37bfd746-32f8-47cd-b5aa-c409c9046f35} + {3ca3ccae-9102-45cb-85e8-ad79cbb35eb3} - {bf80ffd2-d2ca-41bc-b4df-f0f161b92dde} + {55751300-1ed7-4393-a63b-063fd63eb6a0} @@ -300,6 +309,12 @@ ICMP\Header Files + + NTP\Header Files + + + NTP\Header Files + Logging\Header Files @@ -470,6 +485,12 @@ ICMP\Source Files + + NTP\Source Files + + + NTP\Source Files + Logging\Source Files diff --git a/Net/testsuite/TestSuite_x64_vs110.vcxproj b/Net/testsuite/TestSuite_x64_vs110.vcxproj index a94e1d0d1..ce503219b 100644 --- a/Net/testsuite/TestSuite_x64_vs110.vcxproj +++ b/Net/testsuite/TestSuite_x64_vs110.vcxproj @@ -1,4 +1,4 @@ - + @@ -32,7 +32,7 @@ TestSuite Win32Proj - + Application Dynamic @@ -69,47 +69,29 @@ MultiByte v110 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -130,11 +142,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -162,11 +173,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -192,11 +202,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -225,11 +234,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -256,11 +264,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -288,11 +295,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -306,124 +312,124 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Net/testsuite/TestSuite_x64_vs110.vcxproj.filters b/Net/testsuite/TestSuite_x64_vs110.vcxproj.filters index 9c3d67348..685560ae4 100644 --- a/Net/testsuite/TestSuite_x64_vs110.vcxproj.filters +++ b/Net/testsuite/TestSuite_x64_vs110.vcxproj.filters @@ -2,154 +2,154 @@ - {a40de0e6-077d-4016-8961-2d291535fc53} + {46620d72-21f6-49e6-a78f-a9627cd23930} - {f4278951-5c77-40e6-90fe-9b594ba13213} + {5ab45996-4070-444f-a783-974b1dd17019} - {66ea243a-3011-4cfc-8660-77fed04904bb} + {83c99480-9e70-492f-9689-7149757d6304} - {290079c2-6e0b-4942-9006-19d78a86323b} + {0a4eda59-429d-4667-8906-5ec739729c26} - {a23fd6b6-53c9-49f8-ba36-6b569cc6d799} + {fed9e397-ed33-4aae-a4af-7ea7e0c6ce7d} - {194ca8aa-5d90-4c76-b454-1ccd8eec1beb} + {9dcf0667-6d6d-48fd-88a5-5bbd988e8a11} - {1a67fedb-4c72-4444-9997-fdf081419b72} + {65b28fdd-4535-4d36-8e94-766dc9ef1414} - {8307c619-e5e5-4a7d-b8f4-78261889bcd7} + {045436be-49a6-48da-a803-916c65d58f27} - {9316ab7b-1c9e-4771-9587-d484791ccbfe} + {e01bff15-d6a0-4647-859a-a2b3667d486b} - {37802786-7b41-469b-9b22-dbeda933a83e} + {44bb1098-0ea3-4077-9373-b65dc2e588b6} - {2f36961c-f56c-4758-a331-9abb052aab5c} + {0a7e55ac-b815-4c0e-a6cd-cfd55a65e2c3} - {4518ba14-79f2-4d66-ab26-09c6adade144} + {0fbb597a-99c5-4e27-8c8b-be2f2dcd79a8} - {c5b8787f-c9ee-40e0-aed7-287010dee150} + {a902d8a4-b923-46cb-bd61-19ce8b751f10} - {737526eb-c4ff-4852-9050-f9a2c3aed43a} + {f75cfcbc-8596-4dc7-87a7-703e239431c2} - {0ddb2e9d-f9bf-40a7-be99-ad2657c8159c} + {5f0a7e08-e841-4daf-a914-c08f0954ab36} - {aa332089-2ea6-4078-b2ae-460ada33843e} + {a959d14a-007a-4e61-8ae6-325525cd58e2} - {9eae516a-6a35-4c1f-8f70-e6b0bf3364d6} + {599b8c64-d609-4f1f-89cd-e662a6703c44} - {1a491bcb-6b16-4330-8004-8f63012fd297} + {2774794c-62e1-4d4a-ae34-89553fdd7d87} - {cbd512c4-1c6c-4074-a713-07b2836d9560} + {272241b3-58b3-4956-8c52-0909f002f386} - {dccd80bb-6c44-4aa1-84e0-d53123bed8c1} + {c874f64e-46fd-4c58-a1d4-7a56293362c0} - {dbaff751-c7b4-4d3a-89d0-6bdf664cd968} + {7bc28830-964f-4b82-afad-442ba0c20834} - {455352e6-7d8f-4403-8539-25229146bc3d} + {7dfe4cec-25a6-4d41-87fe-c5b31580d029} - {1b536a48-fc9a-4abe-b39e-bbd594d24321} + {45dd5425-48f7-4613-93a5-d143e16b3289} - {e71c3da8-ead4-428e-b59c-3fb1c7e87dc0} + {5f17fcc8-b9c8-444e-9cb2-ff532d2986ba} - {4a23e67a-46ed-4064-8557-137f484b0b3c} + {e8ef3e5e-7925-450b-9607-89593b2863e6} - {4c773167-a5aa-4426-8df7-fa3292ed4ad4} + {2729c97a-2fce-4a9f-9776-a2113f8244c9} - {6f915783-6047-4f5d-b275-5d61022683a4} + {71d61c72-0bac-42aa-b8e4-96603ded4e86} - {1bf3fb9b-e607-4b04-a6c1-23cfc375c637} + {9cdb1e20-7e62-4b19-bb62-396accfd6808} - {db522701-b92f-4e9c-9db8-eec76412fc28} + {dc8839c2-0e33-4099-b5b2-7bce63ab6ae4} - {adbf2dc8-8409-4957-b0d0-a6315bc795a1} + {af82bbbc-f960-406a-901f-bfb6f5d9416c} - {9609a12e-f345-4207-8353-c07de23807f4} + {ab7273f3-a075-4d84-9b4a-d419f803417e} - {053b7fc8-dd95-46ee-8e74-6999a6715ff9} + {86fe84eb-c099-4315-9959-b4bd8422a1e6} - {55da466b-924f-42dc-a413-b57ad9ed6a29} + {0436b459-dee6-499b-80aa-22f079fbed98} - {d73dff11-fbd6-412a-9b3a-d80fb1b63f99} + {e8230279-643f-401a-a57d-818773d44ec5} - {85a35477-9bdb-42c2-b2a3-a40c16c6f998} + {0ef2d4e0-44ac-405c-aa77-aee11712ae20} - {c86f67b5-41d0-437a-8684-b80e32df6895} + {e0f241c4-4f6d-4157-992a-fc32a6601b38} - {ad17749e-0806-470f-9da5-04c91c2218d7} + {4dc84ebe-11ea-4b6d-b06a-5f2f8b0492c0} - {18019ebe-8513-4107-b4ff-c6e87d9ff841} + {b3dd6dac-b360-4275-bbd6-aa335029afb8} - {31659994-968d-45bc-aba8-ed5ed0c4cd92} + {3ba08410-d6db-4d61-8fbf-0dbee61dba06} - {cbe0c223-ef30-4e88-ac1d-133c7a213bba} + {66ebf194-8b92-4113-9508-7b8d8e033b2f} - {6c3252f7-e24b-4116-8587-fc3615790ba4} - - - {d3597b2a-1553-4bbb-b99d-2f0a6e22ec70} - - - {1171f9e4-57d2-4a36-9e5f-8db13664f946} - - - {4b3de3ae-cd0c-43f3-adcc-1bd73ab18199} - - - {189c65af-e1ff-442e-88d6-235bbfbafeda} - - - {9b27de4e-307e-468e-9358-a68c1a264867} - - - {027a0d27-1419-4c02-9225-83322286c346} + {09fe8801-6cc2-4aa6-b8ce-41f741741451} - {9eaa67d3-a23f-43d7-a00b-5a0ed9a86d01} - - - {3098f700-22b8-41ca-9bbc-5c7c128246ba} + {9947e15b-e453-4d1d-ac00-27281bf5e092} - {db2c7e4d-b7f1-4d91-b957-8213ee776742} + {628dd549-3535-4346-ba67-36108948c109} + + + {dd1043e5-3494-4254-98d2-9cb380fb5899} + + + {4524def8-e693-4a86-b293-3f7ebc342d65} + + + {fbbcc33c-654a-4279-bbf5-ac6153a9d4cc} + + + {c9cf4a0a-e910-47bc-9633-752a1b9c344a} + + + {97a18bcb-f6d2-4c26-b78d-ffee65a10fa5} + + + {97a4d62e-8fd6-499f-a9ee-d2d0e1fe6039} + + + {2d11ffc9-e75f-46f8-a1f5-f7b88ef0f884} @@ -309,6 +309,12 @@ ICMP\Header Files + + NTP\Header Files + + + NTP\Header Files + Logging\Header Files @@ -318,12 +324,6 @@ WebSocket\Header Files - - NTP\Header Files - - - NTP\Header Files - @@ -485,6 +485,12 @@ ICMP\Source Files + + NTP\Source Files + + + NTP\Source Files + Logging\Source Files @@ -494,11 +500,5 @@ WebSocket\Source Files - - NTP\Source Files - - - NTP\Source Files - \ No newline at end of file diff --git a/Net/testsuite/TestSuite_x64_vs120.vcxproj b/Net/testsuite/TestSuite_x64_vs120.vcxproj index 012341772..f7a61c390 100644 --- a/Net/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Net/testsuite/TestSuite_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Console + Windows MachineX64 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 @@ -192,21 +202,20 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Console + Windows MachineX64 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX64 @@ -256,20 +264,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Console + Windows MachineX64 @@ -288,142 +295,141 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Net/testsuite/TestSuite_x64_vs120.vcxproj.filters b/Net/testsuite/TestSuite_x64_vs120.vcxproj.filters index d54662668..85ccf5312 100644 --- a/Net/testsuite/TestSuite_x64_vs120.vcxproj.filters +++ b/Net/testsuite/TestSuite_x64_vs120.vcxproj.filters @@ -2,154 +2,154 @@ - {a40de0e6-077d-4016-8961-2d291535fc53} + {c94d6394-402e-40e3-b93a-81073d093f7f} - {f4278951-5c77-40e6-90fe-9b594ba13213} + {7b58dc54-3231-40ff-9e8e-90b3618b5e25} - {66ea243a-3011-4cfc-8660-77fed04904bb} + {e79e47c0-cf29-4d84-820e-57351575b81c} - {290079c2-6e0b-4942-9006-19d78a86323b} + {9f985b13-7592-458e-b589-a056462d71c6} - {a23fd6b6-53c9-49f8-ba36-6b569cc6d799} + {a0e88b04-0a97-4674-9ab5-089f6a9e8e4a} - {194ca8aa-5d90-4c76-b454-1ccd8eec1beb} + {508af6b6-1582-4cd0-8ad5-dd54339bd0ad} - {1a67fedb-4c72-4444-9997-fdf081419b72} + {8d0d6350-1ed4-482a-a0d4-cd821ea46b68} - {8307c619-e5e5-4a7d-b8f4-78261889bcd7} + {dec504e1-19ca-45ae-ad68-2d501800b592} - {9316ab7b-1c9e-4771-9587-d484791ccbfe} + {f9fb2527-08ca-4991-82c9-4d4a84deff06} - {37802786-7b41-469b-9b22-dbeda933a83e} + {6f8f6e61-52c0-449a-8e1a-7621c5e3a2b9} - {2f36961c-f56c-4758-a331-9abb052aab5c} + {bd9e3792-b356-40f0-b304-cabab361e8a3} - {4518ba14-79f2-4d66-ab26-09c6adade144} + {b92a7937-1610-4386-a8eb-ece48e9a0adb} - {c5b8787f-c9ee-40e0-aed7-287010dee150} + {1056b86d-2c3e-4ffd-b000-36968a86fa0c} - {737526eb-c4ff-4852-9050-f9a2c3aed43a} + {50222b8d-5d0e-44a8-9709-d2cf8e8acd6a} - {0ddb2e9d-f9bf-40a7-be99-ad2657c8159c} + {219fc0af-3a97-495b-9461-c9ae4ecb13f4} - {aa332089-2ea6-4078-b2ae-460ada33843e} + {8c0b9fa9-f0a5-4da6-8439-d18da22b6493} - {9eae516a-6a35-4c1f-8f70-e6b0bf3364d6} + {6e58985a-daef-4fe6-b3b0-773022cb336f} - {1a491bcb-6b16-4330-8004-8f63012fd297} + {75024ed4-abc4-4679-9db1-73148f422952} - {cbd512c4-1c6c-4074-a713-07b2836d9560} + {0b1ad7e9-c50d-45a5-b237-a05a9f5e1743} - {dccd80bb-6c44-4aa1-84e0-d53123bed8c1} + {42aa238e-93b5-4afc-b770-506dc5b09628} - {dbaff751-c7b4-4d3a-89d0-6bdf664cd968} + {bca99ecc-e216-4b20-a81c-bf3ff255f76a} - {455352e6-7d8f-4403-8539-25229146bc3d} + {89638577-1d64-4995-b370-ef27604c8674} - {1b536a48-fc9a-4abe-b39e-bbd594d24321} + {c71f3143-2bf3-41a0-96fe-aaa330220588} - {e71c3da8-ead4-428e-b59c-3fb1c7e87dc0} + {af99916f-b7e5-42fa-bebe-51cf7755a8a9} - {4a23e67a-46ed-4064-8557-137f484b0b3c} + {d453c80d-0ca1-4a76-9f2a-cbeec00fe557} - {4c773167-a5aa-4426-8df7-fa3292ed4ad4} + {d054d029-3159-4dae-a336-c8dd004dd7e7} - {6f915783-6047-4f5d-b275-5d61022683a4} + {a64c6fcd-2444-4843-9955-209c397e2569} - {1bf3fb9b-e607-4b04-a6c1-23cfc375c637} + {c1091f57-a3d9-4e0b-aa88-8a457fd78321} - {db522701-b92f-4e9c-9db8-eec76412fc28} + {45a26252-c64e-4cb6-bdbd-8051b0fe520e} - {adbf2dc8-8409-4957-b0d0-a6315bc795a1} + {87a12d76-e746-49e0-b7ea-494c6c545874} - {9609a12e-f345-4207-8353-c07de23807f4} + {ea9049ae-c04a-418f-bc18-8d3ffc5babd2} - {053b7fc8-dd95-46ee-8e74-6999a6715ff9} + {cb047819-013b-4603-9f5b-70f4ecc322df} - {55da466b-924f-42dc-a413-b57ad9ed6a29} + {072a8303-e7f0-45d3-8cec-24430bb5e5ac} - {d73dff11-fbd6-412a-9b3a-d80fb1b63f99} + {306bdc98-7e31-44dd-bb87-ae5ae7077900} - {85a35477-9bdb-42c2-b2a3-a40c16c6f998} + {813dccea-82be-4ee1-881e-2d589f63d3b6} - {c86f67b5-41d0-437a-8684-b80e32df6895} + {4a470da4-e069-486e-a3fd-fbe5e8a79297} - {ad17749e-0806-470f-9da5-04c91c2218d7} + {8b13fc05-4cdd-4cf2-8d0b-f693f2e731ca} - {18019ebe-8513-4107-b4ff-c6e87d9ff841} + {709d3738-fb5c-40e8-8c87-e1b0f2c5a2bc} - {31659994-968d-45bc-aba8-ed5ed0c4cd92} + {4eeaba04-779a-49e5-8a47-4f4501e4fc4e} - {cbe0c223-ef30-4e88-ac1d-133c7a213bba} + {e8db5d32-acd2-4e52-935a-f591fcb32bf9} - {6c3252f7-e24b-4116-8587-fc3615790ba4} - - - {d3597b2a-1553-4bbb-b99d-2f0a6e22ec70} - - - {1171f9e4-57d2-4a36-9e5f-8db13664f946} - - - {4b3de3ae-cd0c-43f3-adcc-1bd73ab18199} - - - {189c65af-e1ff-442e-88d6-235bbfbafeda} - - - {9b27de4e-307e-468e-9358-a68c1a264867} - - - {027a0d27-1419-4c02-9225-83322286c346} + {16fd29a3-45af-4717-8cc5-326dad6196d0} - {a83553ef-ac3f-4ad7-9fb4-dc7869f63b2e} - - - {0401be42-2cd1-4f0d-81b9-be6d17529096} + {f45bc672-806c-4236-9172-27cd30883b6a} - {0292c28f-ef4e-4fa5-8a6d-bb76f36ed8ef} + {e135ebef-6de0-4126-9821-ff479ec7bf1b} + + + {49d50539-34de-4790-8ff1-98097280264a} + + + {ce0b83b4-25df-47cb-afc2-67bc1be468c1} + + + {a9a62400-f050-4ae9-a7a1-0c776f3b92be} + + + {d83b8da6-eb3e-4127-ac81-98a93fafa25b} + + + {532fb66b-6e8b-4ffd-8538-64955c333e91} + + + {fa8a9da8-13d5-44bb-a5e1-9790f5de43f4} + + + {59d15f40-dbbe-4094-b17b-5cb82666cc9e} @@ -309,6 +309,12 @@ ICMP\Header Files + + NTP\Header Files + + + NTP\Header Files + Logging\Header Files @@ -318,12 +324,6 @@ WebSocket\Header Files - - NTP\Header Files - - - NTP\Header Files - @@ -344,6 +344,9 @@ _Suite\Source Files + + _Driver\Source Files + Sockets\Source Files @@ -482,6 +485,12 @@ ICMP\Source Files + + NTP\Source Files + + + NTP\Source Files + Logging\Source Files @@ -491,14 +500,5 @@ WebSocket\Source Files - - _Driver\Source Files - - - NTP\Source Files - - - NTP\Source Files - \ No newline at end of file diff --git a/NetSSL_OpenSSL/NetSSL_OpenSSL_vs100.vcxproj b/NetSSL_OpenSSL/NetSSL_OpenSSL_vs100.vcxproj index e05e655bc..f314b1c17 100644 --- a/NetSSL_OpenSSL/NetSSL_OpenSSL_vs100.vcxproj +++ b/NetSSL_OpenSSL/NetSSL_OpenSSL_vs100.vcxproj @@ -1,4 +1,4 @@ - + @@ -32,7 +32,7 @@ NetSSL_OpenSSL Win32Proj - + StaticLibrary MultiByte @@ -57,27 +57,27 @@ DynamicLibrary MultiByte - - + + - + - + - + - + - + - + - + <_ProjectFileVersion>10.0.40219.1 ..\bin\ @@ -100,18 +100,6 @@ PocoNetSSL PocoNetSSLmd PocoNetSSLmt - C:\OpenSSL\include;$(IncludePath) - C:\OpenSSL\lib;$(LibraryPath) - C:\OpenSSL\include;$(IncludePath) - C:\OpenSSL\include;$(IncludePath) - C:\OpenSSL\include;$(IncludePath) - C:\OpenSSL\include;$(IncludePath) - C:\OpenSSL\include;$(IncludePath) - C:\OpenSSL\lib;$(LibraryPath) - C:\OpenSSL\lib;$(LibraryPath) - C:\OpenSSL\lib;$(LibraryPath) - C:\OpenSSL\lib;$(LibraryPath) - C:\OpenSSL\lib;$(LibraryPath) @@ -126,7 +114,7 @@ true true true - + Level3 EditAndContinue Default @@ -159,9 +147,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -191,7 +179,7 @@ true true true - + ..\lib\PocoNetSSLmtd.pdb Level3 EditAndContinue @@ -217,9 +205,9 @@ true true true - + Level3 - + Default %(DisableSpecificWarnings) @@ -240,7 +228,7 @@ true true true - + ..\lib\PocoNetSSLmdd.pdb Level3 EditAndContinue @@ -266,85 +254,85 @@ true true true - + ..\lib\PocoNetSSLmd.pdb Level3 - + Default %(DisableSpecificWarnings) - libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) ..\lib\PocoNetSSLmd.lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - true - true - true - true + true + true + true + true - - - \ No newline at end of file + + + diff --git a/NetSSL_OpenSSL/NetSSL_OpenSSL_vs100.vcxproj.filters b/NetSSL_OpenSSL/NetSSL_OpenSSL_vs100.vcxproj.filters index b54a328dd..507006f2d 100644 --- a/NetSSL_OpenSSL/NetSSL_OpenSSL_vs100.vcxproj.filters +++ b/NetSSL_OpenSSL/NetSSL_OpenSSL_vs100.vcxproj.filters @@ -2,40 +2,40 @@ - {58b1e632-a8dc-4407-9a8c-a7cb816d9bef} + {196c8340-4e4f-4a52-bf50-84f476f4e0c0} - {da14f96c-b3fe-4252-b6fb-817e1feab527} + {c5e03230-cf62-4b1b-a951-bb77cade256f} - {dbd3bb75-a02d-45f2-856f-9c3259b4291e} + {ccc3f629-43f1-4794-916d-17bf92c5c3a9} - {88bfd333-57f7-4ee6-a39b-641c02a77307} + {d26e2c60-d006-4d92-966b-49313d60a83b} - {32199df8-d35e-4c04-ab3c-27485475bb2a} + {bbbb4a52-5f7d-4207-857e-350267bbb28f} - {e5b50143-37a9-4e13-bf11-36e3b91516c9} + {a567c33b-5680-4828-a912-8c1914e32e7a} - {e1117922-b489-4ee6-b2b2-818e0d7d67e1} + {8eced87a-8b6a-4500-bd7e-be0f9e2d1554} - {dd79045d-5ea3-468f-9522-d0d03a0520d8} + {783c8129-014f-437a-bde2-8de2966ba400} - {46ea8cd9-fbe1-400a-a975-6320ce733395} + {3677335e-1974-4c6a-a7e5-5008758acf1d} - {742885af-67a6-4732-948a-9abeb541988c} + {849af966-a630-4ed4-8c36-679ef44523cc} - {789e75e9-3e30-4b43-8568-37b42a016479} + {9dd31307-192c-48db-9aa0-5d020ecdfd11} - {514d3d3f-3d79-4168-a0f9-5aa9c9526c98} + {594f0837-3eb2-4f5d-8796-3b7af6cb1847} diff --git a/NetSSL_OpenSSL/NetSSL_OpenSSL_vs110.vcxproj b/NetSSL_OpenSSL/NetSSL_OpenSSL_vs110.vcxproj index 4f5e97488..ce7f00111 100644 --- a/NetSSL_OpenSSL/NetSSL_OpenSSL_vs110.vcxproj +++ b/NetSSL_OpenSSL/NetSSL_OpenSSL_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoNetSSLd - PocoNetSSLmdd - PocoNetSSLmtd - PocoNetSSL - PocoNetSSLmd - PocoNetSSLmt + <_ProjectFileVersion>11.0.61030.0 + PocoNetSSLd + PocoNetSSLmdd + PocoNetSSLmtd + PocoNetSSL + PocoNetSSLmd + PocoNetSSLmt - + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + Disabled .\include;..\Foundation\include;..\Net\include;..\Util\include;..\Crypto\include;%(AdditionalIncludeDirectories) @@ -124,7 +136,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -138,7 +149,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -157,7 +168,6 @@ Level3 Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -172,7 +182,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\Net\include;..\Util\include;..\Crypto\include;%(AdditionalIncludeDirectories) @@ -190,13 +200,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoNetSSLmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +224,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib\PocoNetSSLmt.lib - + Disabled .\include;..\Foundation\include;..\Net\include;..\Util\include;..\Crypto\include;%(AdditionalIncludeDirectories) @@ -239,13 +247,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoNetSSLmdd.lib - + Disabled OnlyExplicitInline @@ -265,7 +272,6 @@ Level3 Default - %(DisableSpecificWarnings) libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -333,10 +339,10 @@ - true - true - true - true + true + true + true + true diff --git a/NetSSL_OpenSSL/NetSSL_OpenSSL_vs110.vcxproj.filters b/NetSSL_OpenSSL/NetSSL_OpenSSL_vs110.vcxproj.filters index 1df812617..9cdf8e7e0 100644 --- a/NetSSL_OpenSSL/NetSSL_OpenSSL_vs110.vcxproj.filters +++ b/NetSSL_OpenSSL/NetSSL_OpenSSL_vs110.vcxproj.filters @@ -2,40 +2,40 @@ - {b341b0bd-370f-4585-8562-a74078cc8a94} + {5762a142-c301-458b-9788-6009d6a88236} - {d129d83b-8a99-4f61-8186-be9c9d28fb33} + {001ee87d-3ce4-46ce-af92-91df211e3f77} - {4439c653-71ee-49f2-9496-d2b4c888af32} + {1a058151-905d-4512-83a0-045f87a61578} - {17549117-7a16-4066-a6ff-4d4fc1d4a4d0} + {bdafa831-a19a-40fb-8400-07f8434a739a} - {588eef25-7426-447e-91be-3d9ac8869234} + {6fc8ea4d-0895-4689-a2de-4ff707d07bee} - {dd02d9ab-7e92-4197-a78b-460a0cfb923a} + {2b1ade5f-d93b-404d-8267-c1d24119ead6} - {95227542-ef0f-4d3a-9694-b9a0f9070fb3} + {15196e2b-c804-456a-9267-fb17684cbc88} - {80e81ec9-1c89-47a5-8510-a929e74a7172} + {5c68fdcf-ad0d-4325-b09d-eae980ab5610} - {16cb7696-4476-4b76-89c2-ce163be4ed28} + {e833fce7-2199-4e9e-832d-4c5f67dc119a} - {0f3bcd76-c792-4cba-9564-b93b9632b847} + {771fb31a-8e21-4553-a35d-de18d22caf07} - {ef555b49-55fa-452a-8ded-0b01a25ff2dc} + {45f879b8-4e4d-4be5-aabe-ee8f54f21f3f} - {f617c9e5-244b-49e3-b532-f14946f6b74d} + {9592e240-9af5-4d69-98e2-d57fc5be901a} diff --git a/NetSSL_OpenSSL/NetSSL_OpenSSL_vs120.sln b/NetSSL_OpenSSL/NetSSL_OpenSSL_vs120.sln index 93b0edac3..b4fde7a9d 100644 --- a/NetSSL_OpenSSL/NetSSL_OpenSSL_vs120.sln +++ b/NetSSL_OpenSSL/NetSSL_OpenSSL_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NetSSL_OpenSSL", "NetSSL_OpenSSL_vs120.vcxproj", "{5AECC55E-A469-11DA-8DA6-005056C00008}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_vs120.vcxproj", "{B2B88092-5BCE-4AC0-941E-88167138B4A7}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {5AECC55E-A469-11DA-8DA6-005056C00008}.release_shared|Win32.ActiveCfg = release_shared|Win32 {5AECC55E-A469-11DA-8DA6-005056C00008}.release_shared|Win32.Build.0 = release_shared|Win32 - {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {5AECC55E-A469-11DA-8DA6-005056C00008}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_shared|Win32.ActiveCfg = release_shared|Win32 {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_shared|Win32.Build.0 = release_shared|Win32 - {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/NetSSL_OpenSSL/NetSSL_OpenSSL_vs120.vcxproj b/NetSSL_OpenSSL/NetSSL_OpenSSL_vs120.vcxproj index 83b83c312..4287dc832 100644 --- a/NetSSL_OpenSSL/NetSSL_OpenSSL_vs120.vcxproj +++ b/NetSSL_OpenSSL/NetSSL_OpenSSL_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ NetSSL_OpenSSL Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoNetSSLd PocoNetSSLmdd PocoNetSSLmtd @@ -107,29 +93,31 @@ PocoNetSSLmd PocoNetSSLmt - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + + ..\bin\ + obj\$(Configuration)\ + true - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + ..\bin\ + obj\$(Configuration)\ + false - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ @@ -144,14 +132,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - libeay32MDd.lib;ssleay32MDd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) ..\bin\PocoNetSSLd.dll true true @@ -177,14 +164,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - libeay32MD.lib;ssleay32MD.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) ..\bin\PocoNetSSL.dll true false @@ -209,12 +195,11 @@ true true true - + ..\lib\PocoNetSSLmtd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoNetSSLmtd.lib @@ -235,11 +220,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib\PocoNetSSLmt.lib @@ -258,12 +242,11 @@ true true true - + ..\lib\PocoNetSSLmdd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoNetSSLmdd.lib @@ -284,12 +267,11 @@ true true true - + ..\lib\PocoNetSSLmd.pdb Level3 - + Default - %(DisableSpecificWarnings) libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -297,63 +279,63 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -363,6 +345,6 @@ true - - - \ No newline at end of file + + + diff --git a/NetSSL_OpenSSL/NetSSL_OpenSSL_vs120.vcxproj.filters b/NetSSL_OpenSSL/NetSSL_OpenSSL_vs120.vcxproj.filters index 1df812617..cfa85ab77 100644 --- a/NetSSL_OpenSSL/NetSSL_OpenSSL_vs120.vcxproj.filters +++ b/NetSSL_OpenSSL/NetSSL_OpenSSL_vs120.vcxproj.filters @@ -2,40 +2,40 @@ - {b341b0bd-370f-4585-8562-a74078cc8a94} + {d91f4fbe-7778-446b-928e-b791bef54b36} - {d129d83b-8a99-4f61-8186-be9c9d28fb33} + {48166c53-5c41-4734-8526-6aaa2acee154} - {4439c653-71ee-49f2-9496-d2b4c888af32} + {c6261157-4d47-42d6-8463-92cb0b141ac7} - {17549117-7a16-4066-a6ff-4d4fc1d4a4d0} + {0f821db7-0eb8-465f-9799-e0713e4ce686} - {588eef25-7426-447e-91be-3d9ac8869234} + {3fecce8e-5bd0-4c16-b3a7-2d24760b5616} - {dd02d9ab-7e92-4197-a78b-460a0cfb923a} + {528c5c75-14a9-412b-b35b-ae308dbcc376} - {95227542-ef0f-4d3a-9694-b9a0f9070fb3} + {ea2aa8ed-5d9c-403e-950b-30ea4ef7f262} - {80e81ec9-1c89-47a5-8510-a929e74a7172} + {3b3187fc-01a4-42a8-b1c2-fc0a43d8e36a} - {16cb7696-4476-4b76-89c2-ce163be4ed28} + {0a325c87-01dc-45d9-a016-c3b8a853f3f2} - {0f3bcd76-c792-4cba-9564-b93b9632b847} + {484ae211-fed8-4334-9969-454c812bc78a} - {ef555b49-55fa-452a-8ded-0b01a25ff2dc} + {c33f77d6-fde4-4a55-9a72-d5707d164000} - {f617c9e5-244b-49e3-b532-f14946f6b74d} + {9c4fdb82-7fc0-408b-b800-5bbf2871afd8} diff --git a/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs100.vcxproj b/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs100.vcxproj index 35f46a1cd..afcbf7d3a 100644 --- a/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs100.vcxproj +++ b/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoNetSSL64d - PocoNetSSLmdd - PocoNetSSLmtd - PocoNetSSL64 - PocoNetSSLmd - PocoNetSSLmt + ..\bin64\ + obj64\$(Configuration)\ + true + ..\bin64\ + obj64\$(Configuration)\ + false + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + PocoNetSSL64d + PocoNetSSLmdd + PocoNetSSLmtd + PocoNetSSL64 + PocoNetSSLmd + PocoNetSSLmt - + Disabled .\include;..\Foundation\include;..\Net\include;..\Util\include;..\Crypto\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\Net\include;..\Util\include;..\Crypto\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib64\PocoNetSSLmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib64\PocoNetSSLmt.lib - + Disabled .\include;..\Foundation\include;..\Net\include;..\Util\include;..\Crypto\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib64\PocoNetSSLmdd.lib - + Disabled OnlyExplicitInline @@ -325,10 +325,10 @@ - true - true - true - true + true + true + true + true diff --git a/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs100.vcxproj.filters b/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs100.vcxproj.filters index e902333da..cc829ad81 100644 --- a/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs100.vcxproj.filters +++ b/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs100.vcxproj.filters @@ -2,40 +2,40 @@ - {c86d70f3-0bbc-4831-81e0-97b9feda1e6c} + {2257cd38-e131-412e-acd6-b5a2e0e4fcee} - {42ef2922-1cbc-41d1-beec-3b6495140c71} + {d317c775-9ca2-4f70-811f-60540946a207} - {e16e3506-7e61-438e-a413-82b9dd8e1745} + {fd6a57df-1817-431a-8b4c-7d8ffc9e4832} - {08f15249-e779-4d75-bb4e-42c9861f776f} + {3bb642a7-00f3-4ac9-8bb2-8f7ac70a7cfb} - {8a262f7d-adb4-4c1f-a4ef-a3687b9e3666} + {4d0dc3ca-1d65-4c4e-8a70-b87561c591db} - {60925eab-3f97-44fb-a6cb-3f9c00734335} + {e9d285ed-6693-4a8c-b3f6-62ba8debc6f8} - {c69fb107-50bf-4cd7-9c2c-f7d8e1b9c548} + {72c52934-c0ec-419f-9c15-5e7eb788fbde} - {9d830ad9-05f2-4eb4-9b3f-41a0b5e51baa} + {f3f55441-657d-4b66-83ef-2dc741c2ac04} - {80ff035d-c1f9-438b-acbc-8f2c068c2b70} + {9969357a-c420-447b-b604-bc3738c4863a} - {a2ab4fa5-fccf-4f10-8318-0e64fb82a71d} + {bc8d383a-2152-4891-a0ec-0aca396b073c} - {a19dbda4-44ac-43a8-a179-169d6f377470} + {85bb204d-3c1d-4784-bd52-846b1c9e7fff} - {8fa2e8aa-5b86-4f9a-bb67-425c699d6891} + {3bf594a4-4a84-44b4-8bd9-2a4c8f78b77b} diff --git a/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs110.vcxproj b/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs110.vcxproj index 1ec75472f..0445649a3 100644 --- a/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs110.vcxproj +++ b/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoNetSSL64d - PocoNetSSLmdd - PocoNetSSLmtd - PocoNetSSL64 - PocoNetSSLmd - PocoNetSSLmt + <_ProjectFileVersion>11.0.61030.0 + PocoNetSSL64d + PocoNetSSLmdd + PocoNetSSLmtd + PocoNetSSL64 + PocoNetSSLmd + PocoNetSSLmt - + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + Disabled .\include;..\Foundation\include;..\Net\include;..\Util\include;..\Crypto\include;%(AdditionalIncludeDirectories) @@ -124,7 +136,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -138,7 +149,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -157,7 +168,6 @@ Level3 Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -172,7 +182,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\Net\include;..\Util\include;..\Crypto\include;%(AdditionalIncludeDirectories) @@ -190,13 +200,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoNetSSLmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +224,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoNetSSLmt.lib - + Disabled .\include;..\Foundation\include;..\Net\include;..\Util\include;..\Crypto\include;%(AdditionalIncludeDirectories) @@ -239,13 +247,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoNetSSLmdd.lib - + Disabled OnlyExplicitInline @@ -264,7 +271,6 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoNetSSLmd.lib @@ -331,10 +337,10 @@ - true - true - true - true + true + true + true + true diff --git a/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs110.vcxproj.filters b/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs110.vcxproj.filters index 7fa41fbd4..93ff876ba 100644 --- a/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs110.vcxproj.filters +++ b/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs110.vcxproj.filters @@ -2,40 +2,40 @@ - {7dea921b-d2b7-4473-af37-0e6f1faa8ad8} + {9171e409-edf7-4a92-9390-01939ef2a825} - {93acc539-4ddc-4220-95fd-355e1dfa801f} + {412d77a2-f24b-455d-8093-f8efe288d544} - {86f3bc56-5e34-49b1-8923-ad524cebf57e} + {7976977c-c929-42c3-a2b7-627732b6ebd2} - {cacf7506-072f-4c46-a83c-3e6ca19c05b5} + {5f5479f3-0b4c-4025-8d83-273a8ae5579f} - {2030e8e5-d090-4e97-8b7f-ccb7113eff1b} + {cdd45d3c-dab9-408d-9909-151ccad23169} - {2e38a0b9-79a8-4a8b-a848-aeb435e07c9f} + {4b212949-7368-40dd-bb32-0c294d14b24e} - {d29c1d9d-b1af-4b3a-b9df-15e1721ce9bb} + {202e5447-f850-4afc-a025-6dba52882956} - {2af6ed6f-4d9e-42ed-9d7c-88a8f3967430} + {8393f1db-30bf-4afb-a301-6abce92a5e9c} - {8808bb3a-19ca-4e04-b06b-320acc1e7ecc} + {549c231e-be51-4a19-9539-e8aa44840a1f} - {dac7f847-b3d2-4e21-8220-0026930d1b5f} + {174c564c-5fa9-43f1-bc09-0621669b7b35} - {433488bb-0ba6-4e59-b71e-13c16e46efd2} + {e81d290e-a238-47d7-8e97-a97cacbc25cd} - {dd986b53-d96c-467c-9dba-aa1eac2f0de1} + {de8433d3-3c4c-4446-af2c-c9dfe90bf642} diff --git a/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs120.sln b/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs120.sln index 0592535af..ba6ef53b2 100644 --- a/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs120.sln +++ b/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NetSSL_OpenSSL", "NetSSL_OpenSSL_x64_vs120.vcxproj", "{5AECC55E-A469-11DA-8DA6-005056C00008}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_x64_vs120.vcxproj", "{B2B88092-5BCE-4AC0-941E-88167138B4A7}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_shared|x64.ActiveCfg = debug_shared|x64 {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_shared|x64.Build.0 = debug_shared|x64 - {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_shared|x64.Deploy.0 = debug_shared|x64 {5AECC55E-A469-11DA-8DA6-005056C00008}.release_shared|x64.ActiveCfg = release_shared|x64 {5AECC55E-A469-11DA-8DA6-005056C00008}.release_shared|x64.Build.0 = release_shared|x64 - {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_md|x64.Build.0 = release_static_md|x64 + {5AECC55E-A469-11DA-8DA6-005056C00008}.release_shared|x64.Deploy.0 = release_shared|x64 + {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {5AECC55E-A469-11DA-8DA6-005056C00008}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_md|x64.Build.0 = release_static_md|x64 + {5AECC55E-A469-11DA-8DA6-005056C00008}.release_static_md|x64.Deploy.0 = release_static_md|x64 {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_shared|x64.ActiveCfg = debug_shared|x64 {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_shared|x64.Build.0 = debug_shared|x64 - {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_shared|x64.Deploy.0 = debug_shared|x64 {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_shared|x64.ActiveCfg = release_shared|x64 {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_shared|x64.Build.0 = release_shared|x64 - {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_md|x64.Build.0 = release_static_md|x64 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_shared|x64.Deploy.0 = release_shared|x64 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_md|x64.Build.0 = release_static_md|x64 + {B2B88092-5BCE-4AC0-941E-88167138B4A7}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs120.vcxproj b/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs120.vcxproj index 9307e271c..3716fef40 100644 --- a/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs120.vcxproj +++ b/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ NetSSL_OpenSSL Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoNetSSL64d PocoNetSSLmdd PocoNetSSLmtd @@ -107,29 +93,31 @@ PocoNetSSLmd PocoNetSSLmt - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\VC\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\VC\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\VC\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\VC\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + + ..\bin64\ + obj64\$(Configuration)\ + true - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\VC;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + ..\bin64\ + obj64\$(Configuration)\ + false - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\VC;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ @@ -144,14 +132,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - libeay32MDd.lib;ssleay32MDd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) ..\bin64\PocoNetSSL64d.dll true true @@ -177,14 +164,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - libeay32MD.lib;ssleay32MD.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) ..\bin64\PocoNetSSL64.dll true false @@ -209,12 +195,11 @@ true true true - + ..\lib64\PocoNetSSLmtd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoNetSSLmtd.lib @@ -235,11 +220,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoNetSSLmt.lib @@ -258,12 +242,11 @@ true true true - + ..\lib64\PocoNetSSLmdd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoNetSSLmdd.lib @@ -284,74 +267,73 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoNetSSLmd.lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -361,6 +343,6 @@ true - - - \ No newline at end of file + + + diff --git a/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs120.vcxproj.filters b/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs120.vcxproj.filters index 7fa41fbd4..9b4d15cf7 100644 --- a/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs120.vcxproj.filters +++ b/NetSSL_OpenSSL/NetSSL_OpenSSL_x64_vs120.vcxproj.filters @@ -2,40 +2,40 @@ - {7dea921b-d2b7-4473-af37-0e6f1faa8ad8} + {90b792a5-c35b-4a33-b2ff-80a23fe15517} - {93acc539-4ddc-4220-95fd-355e1dfa801f} + {9af4ec28-0d17-45ac-9756-bc274d0cefe1} - {86f3bc56-5e34-49b1-8923-ad524cebf57e} + {58a2f936-9c0a-4b55-a201-b5e7259cf737} - {cacf7506-072f-4c46-a83c-3e6ca19c05b5} + {ef90a651-cc08-475f-9444-8d95d0013baa} - {2030e8e5-d090-4e97-8b7f-ccb7113eff1b} + {1f234799-1529-463b-9d8b-bcacbf681a2b} - {2e38a0b9-79a8-4a8b-a848-aeb435e07c9f} + {86070c03-76f2-409e-8b51-a24f22728ec1} - {d29c1d9d-b1af-4b3a-b9df-15e1721ce9bb} + {84c4b21d-7191-49bf-af67-7712fc5a96b1} - {2af6ed6f-4d9e-42ed-9d7c-88a8f3967430} + {4bf787ac-12d0-4214-a709-4442a1be51a0} - {8808bb3a-19ca-4e04-b06b-320acc1e7ecc} + {cfc0c87d-082b-4cbf-bd06-99bf3673945d} - {dac7f847-b3d2-4e21-8220-0026930d1b5f} + {fbdabebe-add3-4b20-a7dc-ca0ce195fa3c} - {433488bb-0ba6-4e59-b71e-13c16e46efd2} + {110e3732-69a3-41d9-ae80-5c1ee68b8b0b} - {dd986b53-d96c-467c-9dba-aa1eac2f0de1} + {bce02570-1bc3-4fa7-b7ec-9f8c7b54826e} diff --git a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs100.vcxproj b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs100.vcxproj index 1c396f03d..86f17c4b6 100644 --- a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs100.vcxproj +++ b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - HTTPSTimeServerd - HTTPSTimeServerd - HTTPSTimeServerd - HTTPSTimeServer - HTTPSTimeServer - HTTPSTimeServer + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + HTTPSTimeServerd + HTTPSTimeServerd + HTTPSTimeServerd + HTTPSTimeServer + HTTPSTimeServer + HTTPSTimeServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs100.vcxproj.filters b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs100.vcxproj.filters index e9a2c264c..774098e18 100644 --- a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs100.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {5a011c4a-080d-4f23-806d-5af024a6d5a9} + {ef179555-49bf-42d5-8877-437f82c598b9} - {52a69981-0631-46f8-8526-d209d325688b} + {0beb2aab-99b1-404d-8f52-a3d14d909734} diff --git a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs110.vcxproj b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs110.vcxproj index 068f11647..d194f3d19 100644 --- a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs110.vcxproj +++ b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - HTTPSTimeServerd - HTTPSTimeServerd - HTTPSTimeServerd - HTTPSTimeServer - HTTPSTimeServer - HTTPSTimeServer + <_ProjectFileVersion>11.0.61030.0 + HTTPSTimeServerd + HTTPSTimeServerd + HTTPSTimeServerd + HTTPSTimeServer + HTTPSTimeServer + HTTPSTimeServer - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs110.vcxproj.filters b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs110.vcxproj.filters index 2273763ef..790dabe51 100644 --- a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs110.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {32603814-e14d-45c1-81ff-9163db54a721} + {9f447ffb-1449-4e11-95a4-a53b4b857c40} - {febad288-99e2-43a1-bf13-aa0e88fb6edf} + {452fc0a9-cd7e-42b9-b1d8-632159cbd09f} diff --git a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs120.vcxproj b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs120.vcxproj index 473689609..4f63d2d05 100644 --- a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs120.vcxproj +++ b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ HTTPSTimeServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 HTTPSTimeServerd HTTPSTimeServerd HTTPSTimeServerd @@ -111,29 +93,35 @@ HTTPSTimeServer HTTPSTimeServer - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + + bin\ + obj\$(Configuration)\ + true - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + bin\ + obj\$(Configuration)\ + false - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false @@ -148,14 +136,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - libeay32MDd.lib;ssleay32MDd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\HTTPSTimeServerd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -180,14 +167,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - libeay32MD.lib;ssleay32MD.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\HTTPSTimeServer.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -210,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -242,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -304,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -322,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs120.vcxproj.filters b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs120.vcxproj.filters index 2273763ef..7e98195d3 100644 --- a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs120.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {32603814-e14d-45c1-81ff-9163db54a721} + {0bf95475-6140-48d3-bec1-742149377f95} - {febad288-99e2-43a1-bf13-aa0e88fb6edf} + {ff5f336a-08da-44c3-9cdb-88572ddd8968} diff --git a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs100.vcxproj b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs100.vcxproj index 88f18e1aa..4a0e91f46 100644 --- a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs100.vcxproj +++ b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - HTTPSTimeServerd - HTTPSTimeServerd - HTTPSTimeServerd - HTTPSTimeServer - HTTPSTimeServer - HTTPSTimeServer + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + HTTPSTimeServerd + HTTPSTimeServerd + HTTPSTimeServerd + HTTPSTimeServer + HTTPSTimeServer + HTTPSTimeServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs100.vcxproj.filters b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs100.vcxproj.filters index acb05fbbe..61449c1fe 100644 --- a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs100.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {045f722c-ab77-4fe0-b590-723b238e5a3a} + {14eb2c6f-c001-46f1-be13-97788549e867} - {2b6e5907-eb28-4d59-9e39-52b0a16438e5} + {d8f5f860-0bb3-49f5-b5f0-9ee7484c95e9} diff --git a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs110.vcxproj b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs110.vcxproj index bee33450f..287e27705 100644 --- a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs110.vcxproj +++ b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - HTTPSTimeServerd - HTTPSTimeServerd - HTTPSTimeServerd - HTTPSTimeServer - HTTPSTimeServer - HTTPSTimeServer + <_ProjectFileVersion>11.0.61030.0 + HTTPSTimeServerd + HTTPSTimeServerd + HTTPSTimeServerd + HTTPSTimeServer + HTTPSTimeServer + HTTPSTimeServer - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs110.vcxproj.filters b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs110.vcxproj.filters index a313cae68..a76eca451 100644 --- a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs110.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {0a0bc1f8-072c-4d6c-b1d0-493a744ac00b} + {027ba51a-dee1-4960-bd1c-4089def11599} - {5987cb93-5cc2-492c-924a-f36aba105b46} + {6ca8df04-9cd0-45f0-b44d-01636d37b25d} diff --git a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs120.vcxproj b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs120.vcxproj index 2c1240ebb..12b19b8ad 100644 --- a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs120.vcxproj +++ b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ HTTPSTimeServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 HTTPSTimeServerd HTTPSTimeServerd HTTPSTimeServerd @@ -111,29 +93,35 @@ HTTPSTimeServer HTTPSTimeServer - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + + bin64\ + obj64\$(Configuration)\ + true - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + bin64\ + obj64\$(Configuration)\ + false - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false @@ -148,14 +136,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - libeay32MDd.lib;ssleay32MDd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\HTTPSTimeServerd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -180,14 +167,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - libeay32MD.lib;ssleay32MD.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\HTTPSTimeServer.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -210,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -242,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -304,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -322,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs120.vcxproj.filters b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs120.vcxproj.filters index a313cae68..9709b550e 100644 --- a/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs120.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/HTTPSTimeServer/HTTPSTimeServer_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {0a0bc1f8-072c-4d6c-b1d0-493a744ac00b} + {8fc3a782-e9e6-45af-9b4d-0547f4be35a3} - {5987cb93-5cc2-492c-924a-f36aba105b46} + {ae66ac73-8cf4-4656-87cd-cc233d4e7ed5} diff --git a/NetSSL_OpenSSL/samples/Mail/Mail_vs100.vcxproj b/NetSSL_OpenSSL/samples/Mail/Mail_vs100.vcxproj index 3ab4df8a1..d5be006c1 100644 --- a/NetSSL_OpenSSL/samples/Mail/Mail_vs100.vcxproj +++ b/NetSSL_OpenSSL/samples/Mail/Mail_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Maild - Maild - Maild - Mail - Mail - Mail + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + Maild + Maild + Maild + Mail + Mail + Mail - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/NetSSL_OpenSSL/samples/Mail/Mail_vs100.vcxproj.filters b/NetSSL_OpenSSL/samples/Mail/Mail_vs100.vcxproj.filters index 7ace5b5d8..9b1fd48ec 100644 --- a/NetSSL_OpenSSL/samples/Mail/Mail_vs100.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/Mail/Mail_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {b360540e-d203-4f65-8a35-0122755cdf37} + {427482d5-d631-4e92-a94f-de8371c19689} diff --git a/NetSSL_OpenSSL/samples/Mail/Mail_vs110.vcxproj b/NetSSL_OpenSSL/samples/Mail/Mail_vs110.vcxproj index cd5ead7e7..432c02c4e 100644 --- a/NetSSL_OpenSSL/samples/Mail/Mail_vs110.vcxproj +++ b/NetSSL_OpenSSL/samples/Mail/Mail_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Maild - Maild - Maild - Mail - Mail - Mail + <_ProjectFileVersion>11.0.61030.0 + Maild + Maild + Maild + Mail + Mail + Mail - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/NetSSL_OpenSSL/samples/Mail/Mail_vs110.vcxproj.filters b/NetSSL_OpenSSL/samples/Mail/Mail_vs110.vcxproj.filters index c37731d5d..e4ab5b4aa 100644 --- a/NetSSL_OpenSSL/samples/Mail/Mail_vs110.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/Mail/Mail_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {f257091a-410e-4c45-a6d9-37b44c234498} + {a2da2560-593b-4b22-b99b-3e6fd833d255} diff --git a/NetSSL_OpenSSL/samples/Mail/Mail_vs120.vcxproj b/NetSSL_OpenSSL/samples/Mail/Mail_vs120.vcxproj index 2870b2eb3..3792a8412 100644 --- a/NetSSL_OpenSSL/samples/Mail/Mail_vs120.vcxproj +++ b/NetSSL_OpenSSL/samples/Mail/Mail_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Mail Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Maild Maild Maild @@ -111,29 +93,35 @@ Mail Mail - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + + bin\ + obj\$(Configuration)\ + true - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + bin\ + obj\$(Configuration)\ + false - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false @@ -148,14 +136,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - libeay32MDd.lib;ssleay32MDd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\Maild.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -180,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -210,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -242,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -304,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -322,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/NetSSL_OpenSSL/samples/Mail/Mail_vs120.vcxproj.filters b/NetSSL_OpenSSL/samples/Mail/Mail_vs120.vcxproj.filters index c37731d5d..6f4255320 100644 --- a/NetSSL_OpenSSL/samples/Mail/Mail_vs120.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/Mail/Mail_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {f257091a-410e-4c45-a6d9-37b44c234498} + {b2ade56c-c211-4529-8b27-3e4c06aeff22} diff --git a/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs100.vcxproj b/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs100.vcxproj index d294242a6..d0322b275 100644 --- a/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs100.vcxproj +++ b/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Maild - Maild - Maild - Mail - Mail - Mail + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + Maild + Maild + Maild + Mail + Mail + Mail - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs100.vcxproj.filters b/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs100.vcxproj.filters index 2a493c2e0..d2c1f42f5 100644 --- a/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs100.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {dbd35b19-170c-43ca-b78e-3073c6bac0e0} + {d1d7cccd-9640-47ab-bb25-2e5109299cc4} diff --git a/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs110.vcxproj b/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs110.vcxproj index 866393e83..2f87cf65f 100644 --- a/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs110.vcxproj +++ b/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Maild - Maild - Maild - Mail - Mail - Mail + <_ProjectFileVersion>11.0.61030.0 + Maild + Maild + Maild + Mail + Mail + Mail - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs110.vcxproj.filters b/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs110.vcxproj.filters index e47ecfbb9..29693de4f 100644 --- a/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs110.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {6d4de019-6cd5-4cc6-bb9c-5cf7637b1b7c} + {b5becc13-17af-462f-a36d-deff75c35d6f} diff --git a/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs120.vcxproj b/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs120.vcxproj index 9468fb471..8ee2f6162 100644 --- a/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs120.vcxproj +++ b/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Mail Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Maild Maild Maild @@ -111,29 +93,35 @@ Mail Mail - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + + bin64\ + obj64\$(Configuration)\ + true - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + bin64\ + obj64\$(Configuration)\ + false - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false @@ -148,14 +136,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - libeay32MDd.lib;ssleay32MDd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\Maild.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -180,14 +167,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - libeay32MD.lib;ssleay32MD.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\Mail.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -210,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -242,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -304,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -322,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs120.vcxproj.filters b/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs120.vcxproj.filters index e47ecfbb9..3f495d9b1 100644 --- a/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs120.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/Mail/Mail_x64_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {6d4de019-6cd5-4cc6-bb9c-5cf7637b1b7c} + {88bfd2dd-9f39-459c-ba51-e0826f95d65a} diff --git a/NetSSL_OpenSSL/samples/download/download_vs100.vcxproj b/NetSSL_OpenSSL/samples/download/download_vs100.vcxproj index 58f80545c..2db13080b 100644 --- a/NetSSL_OpenSSL/samples/download/download_vs100.vcxproj +++ b/NetSSL_OpenSSL/samples/download/download_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - downloadd - downloadd - downloadd - download - download - download + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + downloadd + downloadd + downloadd + download + download + download - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/NetSSL_OpenSSL/samples/download/download_vs100.vcxproj.filters b/NetSSL_OpenSSL/samples/download/download_vs100.vcxproj.filters index 2ba1e55a0..f96df4a4a 100644 --- a/NetSSL_OpenSSL/samples/download/download_vs100.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/download/download_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {f86f35b9-fd52-453c-b295-48b2ec472321} + {80df44f4-2d5f-4b4a-8a3e-1debb474beac} diff --git a/NetSSL_OpenSSL/samples/download/download_vs110.vcxproj b/NetSSL_OpenSSL/samples/download/download_vs110.vcxproj index bcd0da931..f8c41ff9a 100644 --- a/NetSSL_OpenSSL/samples/download/download_vs110.vcxproj +++ b/NetSSL_OpenSSL/samples/download/download_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - downloadd - downloadd - downloadd - download - download - download + <_ProjectFileVersion>11.0.61030.0 + downloadd + downloadd + downloadd + download + download + download - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/NetSSL_OpenSSL/samples/download/download_vs110.vcxproj.filters b/NetSSL_OpenSSL/samples/download/download_vs110.vcxproj.filters index 9dcaf6e83..f3937ca09 100644 --- a/NetSSL_OpenSSL/samples/download/download_vs110.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/download/download_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {0d9dfbf4-9f71-4ead-80d6-9abe2a25a518} + {62aefcd0-85c2-49f2-80c1-edb4b198646c} diff --git a/NetSSL_OpenSSL/samples/download/download_vs120.vcxproj b/NetSSL_OpenSSL/samples/download/download_vs120.vcxproj index ac1d4d76f..2e5cbcc58 100644 --- a/NetSSL_OpenSSL/samples/download/download_vs120.vcxproj +++ b/NetSSL_OpenSSL/samples/download/download_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ download Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 downloadd downloadd downloadd @@ -111,29 +93,35 @@ download download - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + + bin\ + obj\$(Configuration)\ + true - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + bin\ + obj\$(Configuration)\ + false - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false @@ -148,14 +136,13 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - libeay32MDd.lib;ssleay32MDd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\downloadd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -180,14 +167,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - libeay32MD.lib;ssleay32MD.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\download.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -210,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -242,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -304,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -322,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/NetSSL_OpenSSL/samples/download/download_vs120.vcxproj.filters b/NetSSL_OpenSSL/samples/download/download_vs120.vcxproj.filters index 9dcaf6e83..28934b274 100644 --- a/NetSSL_OpenSSL/samples/download/download_vs120.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/download/download_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {0d9dfbf4-9f71-4ead-80d6-9abe2a25a518} + {bf104554-9146-4469-933e-e5d17f29e279} diff --git a/NetSSL_OpenSSL/samples/download/download_x64_vs100.vcxproj b/NetSSL_OpenSSL/samples/download/download_x64_vs100.vcxproj index c260acf2e..ba1aa723f 100644 --- a/NetSSL_OpenSSL/samples/download/download_x64_vs100.vcxproj +++ b/NetSSL_OpenSSL/samples/download/download_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - downloadd - downloadd - downloadd - download - download - download + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + downloadd + downloadd + downloadd + download + download + download - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/NetSSL_OpenSSL/samples/download/download_x64_vs100.vcxproj.filters b/NetSSL_OpenSSL/samples/download/download_x64_vs100.vcxproj.filters index f25aee2f2..9dbc94b39 100644 --- a/NetSSL_OpenSSL/samples/download/download_x64_vs100.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/download/download_x64_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {714d421c-769d-4a8b-873d-b228b091ad3a} + {1cc5f4d1-1b82-4576-81a1-bb7f5cb89525} diff --git a/NetSSL_OpenSSL/samples/download/download_x64_vs110.vcxproj b/NetSSL_OpenSSL/samples/download/download_x64_vs110.vcxproj index befcbf20a..71c563364 100644 --- a/NetSSL_OpenSSL/samples/download/download_x64_vs110.vcxproj +++ b/NetSSL_OpenSSL/samples/download/download_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - downloadd - downloadd - downloadd - download - download - download + <_ProjectFileVersion>11.0.61030.0 + downloadd + downloadd + downloadd + download + download + download - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;..\..\..\NetSSL_OpenSSL\include;..\..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/NetSSL_OpenSSL/samples/download/download_x64_vs110.vcxproj.filters b/NetSSL_OpenSSL/samples/download/download_x64_vs110.vcxproj.filters index 8743aa47c..ad646398b 100644 --- a/NetSSL_OpenSSL/samples/download/download_x64_vs110.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/download/download_x64_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {7baaa480-1d84-410a-b420-109078ea4a2c} + {e4dabe03-c3f7-4f96-bdd2-b6ed1f46dc40} diff --git a/NetSSL_OpenSSL/samples/download/download_x64_vs120.vcxproj b/NetSSL_OpenSSL/samples/download/download_x64_vs120.vcxproj index c51ed8de2..371bc4b7d 100644 --- a/NetSSL_OpenSSL/samples/download/download_x64_vs120.vcxproj +++ b/NetSSL_OpenSSL/samples/download/download_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ download Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 downloadd downloadd downloadd @@ -111,29 +93,35 @@ download download - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + + bin64\ + obj64\$(Configuration)\ + true - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + bin64\ + obj64\$(Configuration)\ + false - - C:\OpenSSL-Win64\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win64\lib;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false @@ -148,14 +136,13 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - libeay32MDd.lib;ssleay32MDd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\downloadd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -180,14 +167,13 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - libeay32MD.lib;ssleay32MD.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\download.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -210,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -242,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -272,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -304,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -322,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/NetSSL_OpenSSL/samples/download/download_x64_vs120.vcxproj.filters b/NetSSL_OpenSSL/samples/download/download_x64_vs120.vcxproj.filters index 8743aa47c..34515360e 100644 --- a/NetSSL_OpenSSL/samples/download/download_x64_vs120.vcxproj.filters +++ b/NetSSL_OpenSSL/samples/download/download_x64_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {7baaa480-1d84-410a-b420-109078ea4a2c} + {62305436-69b7-4821-a828-2d90b4878af7} diff --git a/NetSSL_OpenSSL/samples/samples_vs120.sln b/NetSSL_OpenSSL/samples/samples_vs120.sln index 18056b264..3db78f8b7 100644 --- a/NetSSL_OpenSSL/samples/samples_vs120.sln +++ b/NetSSL_OpenSSL/samples/samples_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "download", "download\download_vs120.vcxproj", "{D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HTTPSTimeServer", "HTTPSTimeServer\HTTPSTimeServer_vs120.vcxproj", "{F8DE5054-3EC1-3FB4-9FE6-38EE974745A9}" diff --git a/NetSSL_OpenSSL/samples/samples_x64_vs120.sln b/NetSSL_OpenSSL/samples/samples_x64_vs120.sln index 3d6ce2a39..c03e39656 100644 --- a/NetSSL_OpenSSL/samples/samples_x64_vs120.sln +++ b/NetSSL_OpenSSL/samples/samples_x64_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "download", "download\download_x64_vs120.vcxproj", "{D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HTTPSTimeServer", "HTTPSTimeServer\HTTPSTimeServer_x64_vs120.vcxproj", "{F8DE5054-3EC1-3FB4-9FE6-38EE974745A9}" diff --git a/NetSSL_OpenSSL/testsuite/TestSuite_vs100.vcxproj b/NetSSL_OpenSSL/testsuite/TestSuite_vs100.vcxproj index b75c919dd..bc1b6d69b 100644 --- a/NetSSL_OpenSSL/testsuite/TestSuite_vs100.vcxproj +++ b/NetSSL_OpenSSL/testsuite/TestSuite_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/NetSSL_OpenSSL/testsuite/TestSuite_vs100.vcxproj.filters b/NetSSL_OpenSSL/testsuite/TestSuite_vs100.vcxproj.filters index ffb7e5459..8ea4f4b67 100644 --- a/NetSSL_OpenSSL/testsuite/TestSuite_vs100.vcxproj.filters +++ b/NetSSL_OpenSSL/testsuite/TestSuite_vs100.vcxproj.filters @@ -2,55 +2,55 @@ - {09799a93-d5f5-42e1-8820-80048cd0abf4} + {04c845a4-a1d5-4ca1-853f-11a51baeaee0} - {143ba239-cbda-428e-938e-574771a7076d} + {d69adea7-f2ef-4065-bf7a-3699a09f7d59} - {1967191b-6035-4248-9982-850960023592} + {9a94579e-156a-4a8e-9ba8-fc454e3b4653} - {9b6328ec-b339-4b27-b95c-6ff401c6774c} + {7391dae5-400d-4442-8322-8afef93061f7} - {82b0b143-58ce-4a30-90d9-8210f072346f} + {8db378dd-3a9e-49c7-9062-3db1b793bfa7} - {b8584c6b-d954-4ee0-8574-25006d231b51} + {2b8a56c2-0927-40b2-9a3f-811926272c76} - {ddbafe2a-3896-4061-a626-faa6ab7894fe} + {b759ad93-b332-4da2-9077-8df56ff97ceb} - {f6a793c9-dd43-421c-9804-e1b26b920a10} + {2b3e7c8e-d20a-462e-8f92-8b1b8b23a7ad} - {0c858cd5-ae34-43b7-9afc-5d9533ef42f7} + {26778788-d897-47ff-9386-361eb58f9290} - {eab80bc5-0773-4224-bdae-4550e2ea05a3} + {774ac90a-ad97-47e3-8f05-cd5dd3f69d39} - {5c63f48d-9747-4280-bb60-01515ab672f8} + {7fc0005c-8bc4-4aaa-84e2-72396f48327d} - {d58dac87-c320-4722-8ad0-1591af2cad08} + {4fc39320-ca2b-47e2-95ec-4330640fa655} - {8f3d4aeb-6d7a-4f6b-923c-04942dacb6a3} + {fabd227f-6488-4cd1-b18d-41d219481061} - {19beeb02-13cc-421f-994e-0cf6d3a804c0} + {355c2294-7117-4951-9d33-02a392ec0457} - {590387e5-6dc1-4be6-8116-0dc741488191} + {298e7192-2e13-44fb-898a-1b6833806700} - {15780aec-a0e2-4e5f-a984-587381534ece} + {d4a670bb-56cf-4480-a02c-210446fedbb1} - {4b762ba7-da7b-4b93-ab54-0818d3f604ec} + {bfcada03-42e5-4594-9867-81acb7a0f611} diff --git a/NetSSL_OpenSSL/testsuite/TestSuite_vs110.vcxproj b/NetSSL_OpenSSL/testsuite/TestSuite_vs110.vcxproj index 0303ac7cf..f3945434f 100644 --- a/NetSSL_OpenSSL/testsuite/TestSuite_vs110.vcxproj +++ b/NetSSL_OpenSSL/testsuite/TestSuite_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/NetSSL_OpenSSL/testsuite/TestSuite_vs110.vcxproj.filters b/NetSSL_OpenSSL/testsuite/TestSuite_vs110.vcxproj.filters index 7b6effaf3..2447a4159 100644 --- a/NetSSL_OpenSSL/testsuite/TestSuite_vs110.vcxproj.filters +++ b/NetSSL_OpenSSL/testsuite/TestSuite_vs110.vcxproj.filters @@ -2,55 +2,55 @@ - {a84fd8e1-e2d3-44c1-91f9-a5eba304790a} + {e4b9f945-a2fd-4abd-8407-47559054e053} - {93ccbf30-e95b-4bf6-a7de-4b62c6d02e57} + {c4da88d9-bad1-4eb5-b836-6127a56abd4a} - {f8bfd4a1-7968-4d2a-b000-870f7f2b6952} + {0a7ced01-30e0-41ca-b187-f86ed3de473e} - {a4b883b3-318f-424b-8806-252049056558} + {3f8092f3-c495-4fa0-860c-3c5733949bbb} - {50ab5995-e298-4904-bfc9-88d381b822af} + {2bfd7493-75bf-4d3d-93b3-8a9ff5d0c23c} - {50b71629-fa72-4d6b-8c9e-1c22713ee2de} + {dcdef37d-546f-458c-866f-8331ee7dc406} - {9fa5cecc-d01c-4256-afed-d2f1e7d82090} + {cc933665-c885-49a2-8cae-5067e0f93f7a} - {682cdb5e-98af-409e-8ab8-91ddfe194222} + {06b5adfc-5fd3-4c1d-96d6-9bcc04aee04d} - {bfc30760-8e76-4a3a-a826-5f9e2905007b} + {cc0ef768-409b-4b86-8aca-ea171e7a5d43} - {d3c8800c-b278-4340-8efe-343696e2686e} + {b1d6f1a2-1938-4e9e-9979-7d3e8db6eb66} - {c9964c99-a290-4fb1-87a9-d1b732ac3a67} + {e0c00d12-c63a-4581-915b-5d9fd896f588} - {a54263d2-16e2-484c-8642-1ecfd79a50b0} + {1223ab27-3d18-4bcb-9f79-c60fe5201b08} - {1d75a615-2511-45af-b407-596a8431e8e3} + {1d064b08-3961-4487-836a-08e8476cf81a} - {4bad92c6-fdae-4e30-b4de-906627dd54a5} + {7e9f1c0a-4d72-4238-ac66-ef5e31419687} - {a3f277cf-1c7b-4b54-a39b-1b569ff51423} + {5656bb55-540a-4ab0-8e52-547a2e306ee4} - {5546e0fe-7619-4905-9736-b43ceac95f91} + {cd5a8379-9153-4973-8a85-957702526ea6} - {d8913810-fd05-43bb-bd4c-eff75b4fb207} + {0665244c-b0e6-4df1-81f9-8ec6c6c5a0f2} diff --git a/NetSSL_OpenSSL/testsuite/TestSuite_vs120.vcxproj b/NetSSL_OpenSSL/testsuite/TestSuite_vs120.vcxproj index 94e864c02..f43136db3 100644 --- a/NetSSL_OpenSSL/testsuite/TestSuite_vs120.vcxproj +++ b/NetSSL_OpenSSL/testsuite/TestSuite_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,29 +99,35 @@ TestSuite TestSuite - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); - - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC\static;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + + bin\ + obj\$(Configuration)\ + true - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + bin\ + obj\$(Configuration)\ + false - - C:\OpenSSL-Win32\include;$(VC_IncludePath);$(WindowsSDK_IncludePath); - C:\OpenSSL-Win32\lib\VC;$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86); + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false @@ -154,20 +142,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitd.lib;libeay32MDd.lib;ssleay32MDd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Console + Windows MachineX86 @@ -186,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;libeay32MD.lib;ssleay32MD.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 @@ -216,21 +202,20 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Console + Windows MachineX86 @@ -249,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX86 @@ -280,20 +264,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Console + Windows MachineX86 @@ -312,46 +295,45 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 - - - - - - - - - + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/NetSSL_OpenSSL/testsuite/TestSuite_vs120.vcxproj.filters b/NetSSL_OpenSSL/testsuite/TestSuite_vs120.vcxproj.filters index 4955924be..bcee3d610 100644 --- a/NetSSL_OpenSSL/testsuite/TestSuite_vs120.vcxproj.filters +++ b/NetSSL_OpenSSL/testsuite/TestSuite_vs120.vcxproj.filters @@ -2,55 +2,55 @@ - {a84fd8e1-e2d3-44c1-91f9-a5eba304790a} + {31c6f998-e6ce-4cef-888f-6f54258dccdd} - {93ccbf30-e95b-4bf6-a7de-4b62c6d02e57} + {a43fda4d-fab2-46e2-a7fc-79c9566d3a49} - {f8bfd4a1-7968-4d2a-b000-870f7f2b6952} + {b743c71e-d522-49b8-af88-131efa671207} - {a4b883b3-318f-424b-8806-252049056558} + {4acd6dcb-1bbd-4331-8cc7-7fd90646b493} - {50ab5995-e298-4904-bfc9-88d381b822af} + {8e72840e-449e-42b9-a663-0bee82eb017d} - {50b71629-fa72-4d6b-8c9e-1c22713ee2de} + {7d4a3ee6-70dd-4d67-a107-5831fb590001} - {9fa5cecc-d01c-4256-afed-d2f1e7d82090} + {7cb45d51-b293-4191-9edf-2bdd5ceae39e} - {682cdb5e-98af-409e-8ab8-91ddfe194222} + {b339fece-88ab-4a45-80f3-f53972373064} - {bfc30760-8e76-4a3a-a826-5f9e2905007b} + {f7931536-fa0c-4fbe-9e1e-695399c670bb} - {d3c8800c-b278-4340-8efe-343696e2686e} + {308309b7-d3f4-44fe-b4a8-abc1629e5719} - {c9964c99-a290-4fb1-87a9-d1b732ac3a67} + {7e53308a-f84d-4ece-8047-c8b1b058d70d} - {a54263d2-16e2-484c-8642-1ecfd79a50b0} + {e42ae314-3ea4-43c2-b395-49f1c8ca3e9d} - {1d75a615-2511-45af-b407-596a8431e8e3} + {1d0b68b7-16dc-4958-be47-ffcf5faa3167} - {4bad92c6-fdae-4e30-b4de-906627dd54a5} + {97ebf5dd-7267-4045-ba63-10866a0b7ef0} - {a3f277cf-1c7b-4b54-a39b-1b569ff51423} + {4af368b3-1827-4f35-863b-b47177f48cca} - {5546e0fe-7619-4905-9736-b43ceac95f91} + {2340a3fb-eb62-444c-ad1b-86fbb4980012} - {d8913810-fd05-43bb-bd4c-eff75b4fb207} + {b252d9d8-477b-4da4-a9a3-d88be99a9f1e} @@ -89,6 +89,9 @@ _Suite\Source Files + + _Driver\Source Files + TCPServer\Source Files @@ -110,8 +113,5 @@ HTTPSClient\Source Files - - _Driver\Source Files - \ No newline at end of file diff --git a/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs100.vcxproj b/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs100.vcxproj index 2d2dddaac..b69be61a6 100644 --- a/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs100.vcxproj +++ b/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs100.vcxproj.filters b/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs100.vcxproj.filters index e1d7c160d..2c6d76625 100644 --- a/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs100.vcxproj.filters +++ b/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs100.vcxproj.filters @@ -2,55 +2,55 @@ - {a6faf716-7b6b-4315-a8f3-cb4d46dbdd04} + {70375afa-ccf0-4af5-b000-0a6ff757b8ec} - {9de764d8-fa67-41b6-9f77-cf6598037cc3} + {d99c449d-db9f-42d8-af3c-6ee359d02ef9} - {93e9b5b7-1af5-42e9-9fdb-f79805bb80bc} + {bc69f2f1-6449-478a-b720-1b902b3173d2} - {55d5ae2f-64a6-4602-b28d-6aa416f14006} + {6669d773-120b-40b0-87e4-dd56fbe374fb} - {e0b2ea10-8988-43a7-9c86-e1b6ea78dd53} + {48f2d47f-69e3-46b5-b788-198c4506c2cc} - {740bb072-1f24-48e6-8b49-d7cf0ed63ad7} + {0d8d1e21-aa04-4ab6-9c53-7b654d7e6b6f} - {859ac282-18a2-492b-beaf-d53f24f0d010} + {c0fe975c-e7ab-4b38-bc5f-d3e6be1f0d8e} - {ca3b5f89-0641-42ed-969b-25f1eb25733b} + {ea1b5476-6bbc-48c4-a879-775a2467a5b9} - {b926f3b0-9f5b-47e3-b31b-fd162d47943a} + {baf12987-c12f-4d27-a8cb-fe0228711433} - {62fe6f1b-6803-43fd-bdd2-c19968d9d2d7} + {8dc05d1a-01f0-493c-b599-21c412a91651} - {7db7987e-5b20-4eee-9e72-bcb15ba579cc} + {2966a42d-263a-4188-9a8d-1fdc0443a958} - {3553ffa6-2727-45ff-808a-e3fb147dbf2d} + {91a785f4-f1e9-4c03-afb0-8d7cfa59431b} - {0488b4ac-a862-4e52-8c2a-e116b127d2df} + {62539809-eb2f-48a7-be82-a7ee2aa73253} - {85e9d69e-0811-45c8-a7dc-66d3fe31f5a8} + {bf521e83-e869-4b14-b016-9d6ebd85fb08} - {373e0c69-fac5-4644-98e0-28c94d19cc20} + {f100e511-16ef-4e99-bba7-9bd81761f24c} - {12073787-0de1-416f-bfc8-4888eaf50823} + {a8c9d3de-4d36-418e-9010-e11f446e5621} - {1ed5a499-03f8-4589-b095-7dd45969c16b} + {e3b02e29-0d4e-423a-a5b3-b2298899d487} diff --git a/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs110.vcxproj b/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs110.vcxproj index 854628e81..c2222d930 100644 --- a/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs110.vcxproj +++ b/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;..\..\Crypto\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs110.vcxproj.filters b/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs110.vcxproj.filters index 46ff41a92..da7d59357 100644 --- a/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs110.vcxproj.filters +++ b/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs110.vcxproj.filters @@ -2,55 +2,55 @@ - {e9540f26-a859-4cc3-881e-3a9aa9099f28} + {e0db9f48-da55-47ed-ac37-ae4497ebd40c} - {45869e26-c300-4d11-93a5-a7ccba5ea1c9} + {7647e65b-3c92-432a-815a-ad419b2d3c29} - {8472b174-1f22-4db8-a625-3fa3e240ddaa} + {132d9087-1cf1-42e2-8348-1cc970208e61} - {04faec72-64ff-4813-bf71-f6957c3c9dab} + {b95c3365-d554-4928-994b-e51f791b8998} - {31ad6c2b-4658-49d9-a893-e96f92f3f5f3} + {fbf4300c-54c0-46ba-8d20-e0624c815e28} - {bd69d3b5-bbad-4126-b297-63c8dcf59ccf} + {d57e403c-f8ba-4e87-94ee-5543ac067c01} - {9ef44efc-1937-42b3-a9fa-2731c68f01ca} + {a2710ba0-f756-4a83-873a-e47521224948} - {58bba8ed-a163-4d32-9d20-df259e374389} + {28c69b44-2960-41c4-8804-8fbb360a5400} - {7ebd8e93-3cdf-4548-a8fa-c9155f3291b9} + {8a39a0f9-bd5c-458b-a8cd-2a9d56ffa57a} - {7fd15a94-3bdd-4c38-b585-64b4a5336411} + {63884e14-01cb-4540-bc57-06dd895a8b97} - {40f9166a-3679-4102-8c67-f2dd2e09e759} + {31a3943a-0aab-436e-86a6-be02ed0dd593} - {5259c28f-a0e2-4299-a15a-ebb48dbfdcf8} + {8759ba94-73d9-4d8a-a785-511574bebcbd} - {dcc427da-afec-4765-a3f2-4fe07e344c2c} + {47bd21a1-e383-4070-a985-4008b31a55ff} - {8b1dfecd-ddfc-4b33-9fad-ed479af4754a} + {3f71d5af-7df1-458a-874b-3a2942b9d8f5} - {09276556-f1ff-48ce-ac54-787809e25101} + {40e6d89e-9bae-4cf3-8859-696979daefe0} - {10369b33-9566-4e90-8cfd-6692888b6517} + {d802f16d-f2bd-4f9f-9c26-51bd70f18c9a} - {a6da70e1-264c-44d5-b94b-c1178cd9bfcc} + {3ad505d2-a05e-4c6a-abdf-e60f9b6adf14} diff --git a/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs120.vcxproj b/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs120.vcxproj index c07e13f2c..9f2f6cc90 100644 --- a/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs120.vcxproj +++ b/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,29 +99,35 @@ TestSuite TestSuite - - C:\OpenSSL-Win64\include;$(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(FxCopDir);$(PATH); - C:\OpenSSL-Win64\lib\VC\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(FxCopDir);$(PATH); - C:\OpenSSL-Win64\lib\VC;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(FxCopDir);$(PATH); - C:\OpenSSL-Win64\lib\VC;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); - - - C:\OpenSSL-Win64\include;$(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(FxCopDir);$(PATH); - C:\OpenSSL-Win64\lib\VC\static;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + + bin64\ + obj64\$(Configuration)\ + true - C:\OpenSSL-Win64\include;$(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(FxCopDir);$(PATH); - C:\OpenSSL-Win64\lib\VC;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + bin64\ + obj64\$(Configuration)\ + false - - C:\OpenSSL-Win64\include;$(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(FxCopDir);$(PATH); - C:\OpenSSL-Win64\lib\VC;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64); + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false @@ -154,20 +142,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitd.lib;libeay32MDd.lib;ssleay32MDd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Console + Windows MachineX64 @@ -186,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;libeay32MD.lib;ssleay32MD.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 @@ -216,21 +202,20 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Console + Windows MachineX64 @@ -249,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX64 @@ -280,20 +264,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Console + Windows MachineX64 @@ -312,46 +295,45 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 - - - - - - - - - + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs120.vcxproj.filters b/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs120.vcxproj.filters index 7bf566c8c..a50a79fa4 100644 --- a/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs120.vcxproj.filters +++ b/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs120.vcxproj.filters @@ -2,55 +2,55 @@ - {e9540f26-a859-4cc3-881e-3a9aa9099f28} + {0dea3c22-7b89-405e-8e2d-1f4b0e3426b2} - {45869e26-c300-4d11-93a5-a7ccba5ea1c9} + {059f897a-0971-4a47-be5d-ecd6fa2fd3da} - {8472b174-1f22-4db8-a625-3fa3e240ddaa} + {b8a5b3c3-e834-4bdb-8452-4b9d32c452a7} - {04faec72-64ff-4813-bf71-f6957c3c9dab} + {1dcc2e65-2f9e-4ecb-996c-1f945bafe487} - {31ad6c2b-4658-49d9-a893-e96f92f3f5f3} + {a99d595a-220b-4b63-99e5-6609a06d8d74} - {bd69d3b5-bbad-4126-b297-63c8dcf59ccf} + {0d78e6f4-dfa6-4331-a3b7-1eddd1e669ed} - {9ef44efc-1937-42b3-a9fa-2731c68f01ca} + {38adbaa2-19ed-4fd6-922c-dab0a4f556f7} - {58bba8ed-a163-4d32-9d20-df259e374389} + {033fea73-0f55-4db6-8a9e-f8720707a7ab} - {7ebd8e93-3cdf-4548-a8fa-c9155f3291b9} + {8633bf5d-d3bd-44f4-8cdc-af50b2ef29f0} - {7fd15a94-3bdd-4c38-b585-64b4a5336411} + {6aabe40b-375a-4d86-9469-3c7ff55f1fa0} - {40f9166a-3679-4102-8c67-f2dd2e09e759} + {59c23d38-b4a0-4c29-8b0b-95acdb7f5021} - {5259c28f-a0e2-4299-a15a-ebb48dbfdcf8} + {dc8abba8-6663-485e-855c-6fe2f97bd254} - {dcc427da-afec-4765-a3f2-4fe07e344c2c} + {5f7effc6-e70a-4e01-b7a0-c7b6b76bf883} - {8b1dfecd-ddfc-4b33-9fad-ed479af4754a} + {9948768c-81c2-4325-a2b6-2d9f97a54a4e} - {09276556-f1ff-48ce-ac54-787809e25101} + {e160acb7-73c6-4aaf-9e4b-73fdf529c914} - {10369b33-9566-4e90-8cfd-6692888b6517} + {a602e7ab-b423-42b1-9d85-412f62690035} - {a6da70e1-264c-44d5-b94b-c1178cd9bfcc} + {e000c2be-ea75-4617-9e2f-7940f0ee6466} @@ -89,6 +89,9 @@ _Suite\Source Files + + _Driver\Source Files + TCPServer\Source Files @@ -110,8 +113,5 @@ HTTPSClient\Source Files - - _Driver\Source Files - \ No newline at end of file diff --git a/PDF/PDF_vs100.vcxproj b/PDF/PDF_vs100.vcxproj index 1d843a965..daed9fb17 100644 --- a/PDF/PDF_vs100.vcxproj +++ b/PDF/PDF_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoPDFd - PocoPDFmdd - PocoPDFmtd - PocoPDF - PocoPDFmd - PocoPDFmt + ..\bin\ + obj\$(Configuration)\ + true + ..\bin\ + obj\$(Configuration)\ + false + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + PocoPDFd + PocoPDFmdd + PocoPDFmtd + PocoPDF + PocoPDFmd + PocoPDFmt - + Disabled .\include;.\include\Poco\PDF;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX86 - + Disabled .\include;.\include\Poco\PDF;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib\PocoPDFmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib\PocoPDFmt.lib - + Disabled .\include;.\include\Poco\PDF;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib\PocoPDFmdd.lib - + Disabled OnlyExplicitInline diff --git a/PDF/PDF_vs100.vcxproj.filters b/PDF/PDF_vs100.vcxproj.filters index cac09a4cc..b96332908 100644 --- a/PDF/PDF_vs100.vcxproj.filters +++ b/PDF/PDF_vs100.vcxproj.filters @@ -2,40 +2,40 @@ - {eb80a6ad-aad6-4651-ac3d-c36452504a0d} + {c3eede4a-eb63-4d73-a422-8d9ee20ff6bb} - {c445cf69-21b2-4ff5-b717-0972e9141776} + {9f0c5282-c866-49dd-82df-3776dc3fcab4} - {536d730a-8130-443a-ae15-dbe7c55a7097} + {0084cdb6-239e-47cb-aad3-1d6f8e9adbe0} - {614ba759-3cbe-4a32-b919-89d12f2ac188} + {54efbe88-8267-4d23-8701-195348d003c4} - {a5482a28-4397-4593-910e-baaf2a84d3c1} + {79e77e4a-bea6-4e2d-9721-6d9114947ba5} - {513f17bc-9951-4f4c-b587-50ec54ee49b0} + {ae1e04e2-8d5f-4645-9a3e-ecac51429991} - {64de40e2-ea97-4d6e-a1b0-2cfbff35544e} + {f40110f9-e4aa-405d-b6e7-2f11acec2d05} - {02834fd1-4400-4f67-bed3-81293acfaf5e} + {4d3379fd-d769-45e0-b4cf-fe2cd06f94b2} - {081d0f3e-54aa-4309-9cc3-b7d0d669c591} + {0cc35841-b9c6-43fa-bf2b-b5cb27e6e464} - {6b567849-1fb0-427f-b1fa-8cb825d9e301} + {7c250f7b-ede0-48ba-9f6b-d7c731fea217} - {583a9f34-6cc9-412d-a9da-0fde56d6a8e3} + {149d85f9-5a39-4856-9294-1a7bfdadec6f} - {22698123-d793-4d94-a738-9fc25fe31dac} + {332b8a6a-8873-4775-8149-3883886dfacc} diff --git a/PDF/PDF_vs110.vcxproj b/PDF/PDF_vs110.vcxproj index f0db8abe9..3fe8b7c61 100644 --- a/PDF/PDF_vs110.vcxproj +++ b/PDF/PDF_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoPDFd - PocoPDFmdd - PocoPDFmtd - PocoPDF - PocoPDFmd - PocoPDFmt + <_ProjectFileVersion>11.0.61030.0 + PocoPDFd + PocoPDFmdd + PocoPDFmtd + PocoPDF + PocoPDFmd + PocoPDFmt - + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + Disabled .\include;.\include\Poco\PDF;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -124,10 +136,8 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoPDFd.dll true true @@ -138,7 +148,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -157,10 +167,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoPDF.dll true false @@ -172,7 +180,7 @@ MachineX86 - + Disabled .\include;.\include\Poco\PDF;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,13 +198,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoPDFmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +222,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib\PocoPDFmt.lib - + Disabled .\include;.\include\Poco\PDF;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,13 +245,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoPDFmdd.lib - + Disabled OnlyExplicitInline @@ -265,10 +270,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\lib\PocoPDFmd.lib diff --git a/PDF/PDF_vs110.vcxproj.filters b/PDF/PDF_vs110.vcxproj.filters index 13834bb26..3b1739b98 100644 --- a/PDF/PDF_vs110.vcxproj.filters +++ b/PDF/PDF_vs110.vcxproj.filters @@ -2,40 +2,40 @@ - {a29a2343-53b7-4848-8bf6-ebf516c8432d} + {36bb3a72-d6ed-4d7b-b361-79f6cfd911c5} - {49fe1d71-8c1c-4aca-b084-b044cb8837a0} + {f8aff78e-a385-43f3-876e-7301294c4b2c} - {66e33f55-2ee5-409c-8b19-730f0b093b50} + {8e8bd928-c3ba-47c4-b492-28038db9a5f6} - {a0852c74-74ea-41cd-a907-f857f535d4ab} + {377243bc-0851-4e4a-9b32-840b591ff715} - {ed4de118-7998-438e-aa68-1513958bda4f} + {6fc4c12c-96bc-48c4-88de-9a908a73efe5} - {602d9217-6670-45a5-9349-07dd42c1a79d} + {c237cee3-5e12-4b18-b40b-88c4acd052b7} - {d474a281-f9f5-4759-8f42-4ace3dd3cc91} + {05e0e050-d8db-4b29-9ab6-82f093045a66} - {bbbf6bbb-759a-4bdc-bb69-c5c1e94dd7b7} + {1f4be6a4-7bfc-46ad-8f2a-3e189e760e3e} - {e81094a6-9792-4d45-90b3-242380085ccd} + {71b3ec26-ebc4-4b59-81b8-cf2e9d1ef5d5} - {e31362a4-8e58-40ac-9ea4-cd47fec60847} + {5b9ca146-ecc2-4973-b111-cc1a2bdb3999} - {21ff73a5-e37d-47bc-a023-0fddd7c44a40} + {28efc7ea-91f5-462a-8139-7ce5c15fcae0} - {0037cd74-a4f5-4327-a3ed-d20d5c4e46a8} + {619bceff-adc1-4025-8082-de73ac1179f5} diff --git a/PDF/PDF_vs120.sln b/PDF/PDF_vs120.sln index b086aed8f..1baf95834 100644 --- a/PDF/PDF_vs120.sln +++ b/PDF/PDF_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PDF", "PDF_vs120.vcxproj", "{E12E5C71-79A4-495A-848F-F1710111E610}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_vs120.vcxproj", "{24134877-368D-11DB-9FBC-00123FC423B5}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {E12E5C71-79A4-495A-848F-F1710111E610}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {E12E5C71-79A4-495A-848F-F1710111E610}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {E12E5C71-79A4-495A-848F-F1710111E610}.release_shared|Win32.ActiveCfg = release_shared|Win32 {E12E5C71-79A4-495A-848F-F1710111E610}.release_shared|Win32.Build.0 = release_shared|Win32 - {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {24134877-368D-11DB-9FBC-00123FC423B5}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {24134877-368D-11DB-9FBC-00123FC423B5}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {24134877-368D-11DB-9FBC-00123FC423B5}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {24134877-368D-11DB-9FBC-00123FC423B5}.release_shared|Win32.ActiveCfg = release_shared|Win32 {24134877-368D-11DB-9FBC-00123FC423B5}.release_shared|Win32.Build.0 = release_shared|Win32 - {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {24134877-368D-11DB-9FBC-00123FC423B5}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/PDF/PDF_vs120.vcxproj b/PDF/PDF_vs120.vcxproj index ea18b186a..7d851a6ee 100644 --- a/PDF/PDF_vs120.vcxproj +++ b/PDF/PDF_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ PDF Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoPDFd PocoPDFmdd PocoPDFmtd @@ -107,6 +93,32 @@ PocoPDFmd PocoPDFmt + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + Disabled @@ -120,14 +132,12 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoPDFd.dll true true @@ -153,14 +163,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoPDF.dll true false @@ -185,12 +193,11 @@ true true true - + ..\lib\PocoPDFmtd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoPDFmtd.lib @@ -211,11 +218,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib\PocoPDFmt.lib @@ -234,12 +240,11 @@ true true true - + ..\lib\PocoPDFmdd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoPDFmdd.lib @@ -260,161 +265,159 @@ true true true - + ..\lib\PocoPDFmd.pdb Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\lib\PocoPDFmd.lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/PDF/PDF_vs120.vcxproj.filters b/PDF/PDF_vs120.vcxproj.filters index 13834bb26..8217fd446 100644 --- a/PDF/PDF_vs120.vcxproj.filters +++ b/PDF/PDF_vs120.vcxproj.filters @@ -2,40 +2,40 @@ - {a29a2343-53b7-4848-8bf6-ebf516c8432d} + {cf92c1d4-72d5-401c-8ad1-59bd4c87fd61} - {49fe1d71-8c1c-4aca-b084-b044cb8837a0} + {738922bc-066e-460c-a913-a3bc01eab019} - {66e33f55-2ee5-409c-8b19-730f0b093b50} + {0a170b88-f96e-4aae-baca-76ddcf7c3ae9} - {a0852c74-74ea-41cd-a907-f857f535d4ab} + {71b7bf64-a373-42c5-ae91-14b91528a18c} - {ed4de118-7998-438e-aa68-1513958bda4f} + {bdbbb2ff-25e8-4b65-ba36-11970b7b3850} - {602d9217-6670-45a5-9349-07dd42c1a79d} + {7e15b5d1-eb65-4569-bf65-8953dbc6a1f3} - {d474a281-f9f5-4759-8f42-4ace3dd3cc91} + {2cbb4a7b-5bd5-4c06-a566-be1dbe40087d} - {bbbf6bbb-759a-4bdc-bb69-c5c1e94dd7b7} + {49ec9e3b-7159-4264-8592-3d6f02c8931d} - {e81094a6-9792-4d45-90b3-242380085ccd} + {09a50d52-e33c-4f6c-bc4a-18251127af57} - {e31362a4-8e58-40ac-9ea4-cd47fec60847} + {95a08a43-4b4d-4df7-b7b3-aa27d3aed5ae} - {21ff73a5-e37d-47bc-a023-0fddd7c44a40} + {beb5a57a-3a23-41f1-9235-320d1fbd1d89} - {0037cd74-a4f5-4327-a3ed-d20d5c4e46a8} + {afa7846c-cca7-415b-9ef5-faf072209649} diff --git a/PDF/PDF_x64_vs100.vcxproj b/PDF/PDF_x64_vs100.vcxproj index 89e14710d..e1b3e2cdf 100644 --- a/PDF/PDF_x64_vs100.vcxproj +++ b/PDF/PDF_x64_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoPDF64d - PocoPDFmdd - PocoPDFmtd - PocoPDF64 - PocoPDFmd - PocoPDFmt + ..\bin64\ + obj64\$(Configuration)\ + true + ..\bin64\ + obj64\$(Configuration)\ + false + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + PocoPDF64d + PocoPDFmdd + PocoPDFmtd + PocoPDF64 + PocoPDFmd + PocoPDFmt - + Disabled .\include;.\include\Poco\PDF;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX64 - + Disabled .\include;.\include\Poco\PDF;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib64\PocoPDFmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib64\PocoPDFmt.lib - + Disabled .\include;.\include\Poco\PDF;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib64\PocoPDFmdd.lib - + Disabled OnlyExplicitInline diff --git a/PDF/PDF_x64_vs100.vcxproj.filters b/PDF/PDF_x64_vs100.vcxproj.filters index c6891d862..e514195dc 100644 --- a/PDF/PDF_x64_vs100.vcxproj.filters +++ b/PDF/PDF_x64_vs100.vcxproj.filters @@ -2,40 +2,40 @@ - {ace9b429-8955-4c90-b35f-4cf301d3edf2} + {03e11a87-a006-4386-a19a-8ae05dc8ed2e} - {e411d4f0-1986-48d2-9ff5-969b96c0ef40} + {fe8ffbd3-4c41-4083-be4a-7e96113ed012} - {8d01c769-e22d-44cd-8d24-31e0ad49dcd6} + {0215e4d4-4092-4e64-b7d4-2f812b4ef4a5} - {0efc5ede-9f29-46eb-8578-32ebb0495d31} + {84949814-7cf6-40d5-9f1a-dbe01b1dadca} - {b431ef33-6c11-4da5-aa36-aec2e9488564} + {de25c581-e952-49e1-8cb0-954ce38e8b79} - {afef030b-0563-4ce8-addc-ca6c61bee243} + {d09233fd-c1b7-44dd-8b5a-e630fde28489} - {45ba950e-6ebb-4f82-a8c4-7dd7e52f0bfa} + {4e71cb72-5664-48e6-9786-99678498b183} - {f6ad2f22-d066-45d7-89ef-45220f5a39f0} + {58d15f60-1f92-4180-bcc9-399bfe456151} - {3232997c-d477-4837-ac56-b15ce7337d1d} + {95f13367-79e6-4908-b74c-fe7263928af0} - {a05d2379-fb74-456f-898b-a65579661c39} + {2515d742-349b-44c1-9ed0-4206cf3eea7c} - {dc129a30-834b-4eca-9c9f-e4ec726e3dc8} + {0f073157-8ef1-45e6-9cd1-c89d332a02c3} - {afb11505-18c7-49ee-ad68-81932438c279} + {e8d8dbf6-f4bf-4576-ae29-6c3ce99f0b1e} diff --git a/PDF/PDF_x64_vs110.vcxproj b/PDF/PDF_x64_vs110.vcxproj index 9e6d67542..73baa9a0c 100644 --- a/PDF/PDF_x64_vs110.vcxproj +++ b/PDF/PDF_x64_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoPDF64d - PocoPDFmdd - PocoPDFmtd - PocoPDF64 - PocoPDFmd - PocoPDFmt + <_ProjectFileVersion>11.0.61030.0 + PocoPDF64d + PocoPDFmdd + PocoPDFmtd + PocoPDF64 + PocoPDFmd + PocoPDFmt - + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + Disabled .\include;.\include\Poco\PDF;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -124,10 +136,8 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoPDF64d.dll true true @@ -138,7 +148,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -157,10 +167,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoPDF64.dll true false @@ -172,7 +180,7 @@ MachineX64 - + Disabled .\include;.\include\Poco\PDF;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,13 +198,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoPDFmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +222,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoPDFmt.lib - + Disabled .\include;.\include\Poco\PDF;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,13 +245,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoPDFmdd.lib - + Disabled OnlyExplicitInline @@ -264,7 +269,6 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoPDFmd.lib diff --git a/PDF/PDF_x64_vs110.vcxproj.filters b/PDF/PDF_x64_vs110.vcxproj.filters index 33ea84506..bb80e2eb6 100644 --- a/PDF/PDF_x64_vs110.vcxproj.filters +++ b/PDF/PDF_x64_vs110.vcxproj.filters @@ -2,40 +2,40 @@ - {07872aee-558b-4b0c-90a0-f1ebb4b151e1} + {677351ca-5a29-4dbe-9925-5db63862ed5a} - {4c1733bd-b1d1-4356-a7cd-1c51fd0786cf} + {439e4660-d12d-4852-b931-ce4bdb369500} - {dde33cbe-a24e-4cde-849b-fff6c84d6289} + {a2c23f53-b9a1-4878-9cbf-0e6b5efd3710} - {257adace-5acc-40ce-9e13-aa89e337ad29} + {5313cabf-1086-4eb8-8f72-620f597bf0c9} - {da1aef32-96b1-4d78-85cf-1c8d72cf6baf} + {1bb378b4-e950-4f97-bb24-ad21756e5f93} - {e6e63fe8-4ed8-493e-8e0b-dcbff019ec91} + {ebc0b2f7-2969-4efa-a22f-bcee4e147876} - {cd6f5183-2c61-4be2-b3bc-8cc31757eb3f} + {b2b3a87f-06df-4419-bacd-cd53669351df} - {fc199e0b-da39-4e04-8ba3-826ee72319c9} + {713529b5-cb08-400a-83d8-2a33e8425546} - {93551a02-d1b5-426d-b61c-0f277d0bfe2a} + {7a9f68f4-0ff8-4adc-b364-c7a1ca48561c} - {c1551d52-b11f-4ded-9339-b714943c52fd} + {4e070201-b404-49fe-9fcf-b64f68c823f0} - {e6eada70-700c-4417-9a33-dff99a290372} + {0b0b5f1c-9e31-47dd-945b-410252cf155a} - {3679ad2c-3f85-495e-aefe-34ca6e8135b6} + {08f4e720-44a2-4e70-818b-4b209e6519e5} diff --git a/PDF/PDF_x64_vs120.sln b/PDF/PDF_x64_vs120.sln index b7fcefb19..794d7fac5 100644 --- a/PDF/PDF_x64_vs120.sln +++ b/PDF/PDF_x64_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PDF", "PDF_x64_vs120.vcxproj", "{E12E5C71-79A4-495A-848F-F1710111E610}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_x64_vs120.vcxproj", "{24134877-368D-11DB-9FBC-00123FC423B5}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {E12E5C71-79A4-495A-848F-F1710111E610}.debug_shared|x64.ActiveCfg = debug_shared|x64 {E12E5C71-79A4-495A-848F-F1710111E610}.debug_shared|x64.Build.0 = debug_shared|x64 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_shared|x64.Deploy.0 = debug_shared|x64 {E12E5C71-79A4-495A-848F-F1710111E610}.release_shared|x64.ActiveCfg = release_shared|x64 {E12E5C71-79A4-495A-848F-F1710111E610}.release_shared|x64.Build.0 = release_shared|x64 - {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|x64.Build.0 = release_static_md|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_shared|x64.Deploy.0 = release_shared|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|x64.Build.0 = release_static_md|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|x64.Deploy.0 = release_static_md|x64 {24134877-368D-11DB-9FBC-00123FC423B5}.debug_shared|x64.ActiveCfg = debug_shared|x64 {24134877-368D-11DB-9FBC-00123FC423B5}.debug_shared|x64.Build.0 = debug_shared|x64 - {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {24134877-368D-11DB-9FBC-00123FC423B5}.debug_shared|x64.Deploy.0 = debug_shared|x64 {24134877-368D-11DB-9FBC-00123FC423B5}.release_shared|x64.ActiveCfg = release_shared|x64 {24134877-368D-11DB-9FBC-00123FC423B5}.release_shared|x64.Build.0 = release_shared|x64 - {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_md|x64.Build.0 = release_static_md|x64 + {24134877-368D-11DB-9FBC-00123FC423B5}.release_shared|x64.Deploy.0 = release_shared|x64 + {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {24134877-368D-11DB-9FBC-00123FC423B5}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_md|x64.Build.0 = release_static_md|x64 + {24134877-368D-11DB-9FBC-00123FC423B5}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/PDF/PDF_x64_vs120.vcxproj b/PDF/PDF_x64_vs120.vcxproj index da202e31c..23bc79776 100644 --- a/PDF/PDF_x64_vs120.vcxproj +++ b/PDF/PDF_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ PDF Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoPDF64d PocoPDFmdd PocoPDFmtd @@ -107,6 +93,32 @@ PocoPDFmd PocoPDFmt + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + Disabled @@ -120,14 +132,12 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoPDF64d.dll true true @@ -153,14 +163,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoPDF64.dll true false @@ -185,12 +193,11 @@ true true true - + ..\lib64\PocoPDFmtd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoPDFmtd.lib @@ -211,11 +218,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoPDFmt.lib @@ -234,12 +240,11 @@ true true true - + ..\lib64\PocoPDFmdd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoPDFmdd.lib @@ -260,159 +265,158 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoPDFmd.lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/PDF/PDF_x64_vs120.vcxproj.filters b/PDF/PDF_x64_vs120.vcxproj.filters index 33ea84506..fa8efb871 100644 --- a/PDF/PDF_x64_vs120.vcxproj.filters +++ b/PDF/PDF_x64_vs120.vcxproj.filters @@ -2,40 +2,40 @@ - {07872aee-558b-4b0c-90a0-f1ebb4b151e1} + {ed00ee20-3906-47fb-9267-da7fcf1de969} - {4c1733bd-b1d1-4356-a7cd-1c51fd0786cf} + {fed58c1e-6969-4368-b7fe-8c141a1e29ae} - {dde33cbe-a24e-4cde-849b-fff6c84d6289} + {ad61b104-83ee-4869-8edf-2155195f16a3} - {257adace-5acc-40ce-9e13-aa89e337ad29} + {83987f57-7632-4659-a15e-34aba36e98a6} - {da1aef32-96b1-4d78-85cf-1c8d72cf6baf} + {d40ff84a-413e-4a87-bdbb-ff09b65f76d2} - {e6e63fe8-4ed8-493e-8e0b-dcbff019ec91} + {2393de42-6ff2-4b67-9fa9-8495a7660a6d} - {cd6f5183-2c61-4be2-b3bc-8cc31757eb3f} + {d1d91531-8d07-4086-92f7-69857f42af04} - {fc199e0b-da39-4e04-8ba3-826ee72319c9} + {653c62a6-0f26-40ec-b99c-cb38b0e8da27} - {93551a02-d1b5-426d-b61c-0f277d0bfe2a} + {e49ae632-f957-4586-8544-1deea89e72da} - {c1551d52-b11f-4ded-9339-b714943c52fd} + {734f89d5-1669-4f23-9b00-3d1c077c6f9f} - {e6eada70-700c-4417-9a33-dff99a290372} + {59a53323-3a4e-48f9-84bf-5f22da8b5627} - {3679ad2c-3f85-495e-aefe-34ca6e8135b6} + {ba02a720-fe1e-45d3-a98c-4aa8b4e932dd} diff --git a/PDF/samples/Image/Image_vs100.vcxproj b/PDF/samples/Image/Image_vs100.vcxproj index 9badc81fd..c7440a3a9 100644 --- a/PDF/samples/Image/Image_vs100.vcxproj +++ b/PDF/samples/Image/Image_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Imaged - Imaged - Imaged - Image - Image - Image + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + Imaged + Imaged + Imaged + Image + Image + Image - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -127,7 +127,7 @@ %(AdditionalDependencies) bin\Imaged.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\Imaged.pdb @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -159,7 +159,7 @@ %(AdditionalDependencies) bin\Image.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -189,7 +189,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\Imaged.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_mt\Imaged.pdb @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -221,7 +221,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\Image.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -251,7 +251,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\Imaged.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\Imaged.pdb @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -283,7 +283,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\Image.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true diff --git a/PDF/samples/Image/Image_vs100.vcxproj.filters b/PDF/samples/Image/Image_vs100.vcxproj.filters index a1aca0d9d..92f1fd107 100644 --- a/PDF/samples/Image/Image_vs100.vcxproj.filters +++ b/PDF/samples/Image/Image_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {88e07e33-9288-466f-887c-b4ef84273828} + {887219a2-fb78-4311-958e-0601d815c680} - {eae2e34a-7731-418a-bd10-d397facbf517} + {39403f66-f4f9-4450-af1f-7a6690d4cd5e} diff --git a/PDF/samples/Image/Image_vs110.vcxproj b/PDF/samples/Image/Image_vs110.vcxproj index 33f32b3a3..c958e2fb2 100644 --- a/PDF/samples/Image/Image_vs110.vcxproj +++ b/PDF/samples/Image/Image_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Imaged - Imaged - Imaged - Image - Image - Image + <_ProjectFileVersion>11.0.61030.0 + Imaged + Imaged + Imaged + Image + Image + Image - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -128,12 +140,10 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin\Imaged.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\Imaged.pdb @@ -141,7 +151,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,12 +170,10 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin\Image.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -173,7 +181,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -190,12 +198,11 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\Imaged.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_mt\Imaged.pdb @@ -203,7 +210,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,12 +229,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\Image.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -235,7 +241,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -252,12 +258,11 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\Imaged.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\Imaged.pdb @@ -265,7 +270,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,12 +289,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\Image.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true diff --git a/PDF/samples/Image/Image_vs110.vcxproj.filters b/PDF/samples/Image/Image_vs110.vcxproj.filters index f51ed2bf4..530bf5e04 100644 --- a/PDF/samples/Image/Image_vs110.vcxproj.filters +++ b/PDF/samples/Image/Image_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {f34229d4-1395-4541-87c1-7e33a5b2306f} + {6c57a01f-a9ad-4cab-9d19-c1fe341cd5a0} - {646d20ac-0025-460c-8f18-d21e76f3b69a} + {964e2eb9-4c34-4172-baec-da21d986a5cf} diff --git a/PDF/samples/Image/Image_vs120.vcxproj b/PDF/samples/Image/Image_vs120.vcxproj index a12351c2c..8b59b4f4a 100644 --- a/PDF/samples/Image/Image_vs120.vcxproj +++ b/PDF/samples/Image/Image_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Image Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Imaged Imaged Imaged @@ -111,10 +93,40 @@ Image Image + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled - .\include;..\..\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true true @@ -124,14 +136,12 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin\Imaged.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -148,7 +158,7 @@ true Speed true - .\include;..\..\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -156,14 +166,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin\Image.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -176,7 +184,7 @@ Disabled - .\include;..\..\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -186,11 +194,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -210,7 +217,7 @@ true Speed true - .\include;..\..\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded @@ -218,11 +225,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -238,7 +244,7 @@ Disabled - .\include;..\..\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -248,11 +254,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -272,7 +277,7 @@ true Speed true - .\include;..\..\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -280,11 +285,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -298,8 +302,8 @@ - + - - - \ No newline at end of file + + + diff --git a/PDF/samples/Image/Image_vs120.vcxproj.filters b/PDF/samples/Image/Image_vs120.vcxproj.filters index fbb443ee1..4ff455e4e 100644 --- a/PDF/samples/Image/Image_vs120.vcxproj.filters +++ b/PDF/samples/Image/Image_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {5d1177cf-b38a-427f-8629-b616a697f272} + {5f40007c-409b-4081-8c27-8ea280c8a1aa} - {fca6d858-3c2c-494b-bcdb-666d83d5bd4c} + {2118afc8-779a-48ce-8e1d-c6c5e8afb944} diff --git a/PDF/samples/Image/Image_x64_vs100.vcxproj b/PDF/samples/Image/Image_x64_vs100.vcxproj index 89222b53f..da6eabdc3 100644 --- a/PDF/samples/Image/Image_x64_vs100.vcxproj +++ b/PDF/samples/Image/Image_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Imaged - Imaged - Imaged - Image - Image - Image + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + Imaged + Imaged + Imaged + Image + Image + Image - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -127,7 +127,7 @@ %(AdditionalDependencies) bin64\Imaged.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\Imaged.pdb @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -159,7 +159,7 @@ %(AdditionalDependencies) bin64\Image.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -189,7 +189,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\Imaged.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_mt\Imaged.pdb @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -221,7 +221,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\Image.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -251,7 +251,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\Imaged.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\Imaged.pdb @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -283,7 +283,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\Image.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true diff --git a/PDF/samples/Image/Image_x64_vs100.vcxproj.filters b/PDF/samples/Image/Image_x64_vs100.vcxproj.filters index 88bf5cd7d..3312b8055 100644 --- a/PDF/samples/Image/Image_x64_vs100.vcxproj.filters +++ b/PDF/samples/Image/Image_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {ef62580a-686b-43fe-8193-3087fc89116b} + {2afdb2fe-b9a4-4a14-8996-f3d4cc301f46} - {1d82bd43-6c47-46af-8efe-c7ed7f2d50db} + {22796489-894c-402d-a0eb-27883ec624c2} diff --git a/PDF/samples/Image/Image_x64_vs110.vcxproj b/PDF/samples/Image/Image_x64_vs110.vcxproj index ece3f45b1..a78f652d1 100644 --- a/PDF/samples/Image/Image_x64_vs110.vcxproj +++ b/PDF/samples/Image/Image_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Imaged - Imaged - Imaged - Image - Image - Image + <_ProjectFileVersion>11.0.61030.0 + Imaged + Imaged + Imaged + Image + Image + Image - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -128,12 +140,10 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin64\Imaged.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\Imaged.pdb @@ -141,7 +151,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,12 +170,10 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin64\Image.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -173,7 +181,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -190,12 +198,11 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\Imaged.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_mt\Imaged.pdb @@ -203,7 +210,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,12 +229,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\Image.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -235,7 +241,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -252,12 +258,11 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\Imaged.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\Imaged.pdb @@ -265,7 +270,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,12 +289,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\Image.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true diff --git a/PDF/samples/Image/Image_x64_vs110.vcxproj.filters b/PDF/samples/Image/Image_x64_vs110.vcxproj.filters index 81d3ee175..3ff8c842f 100644 --- a/PDF/samples/Image/Image_x64_vs110.vcxproj.filters +++ b/PDF/samples/Image/Image_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {f27cd60a-0fd6-4e02-b07f-45d6f82b0c69} + {11ceb7a7-4024-44de-a7fc-96717bb4acc4} - {a4f7c4c4-4cca-41c1-8a22-54afc210d47d} + {e1a39244-7d65-4467-8d86-67185e703c86} diff --git a/PDF/samples/Image/Image_x64_vs120.vcxproj b/PDF/samples/Image/Image_x64_vs120.vcxproj index 7dcc38e49..e1e0b63ab 100644 --- a/PDF/samples/Image/Image_x64_vs120.vcxproj +++ b/PDF/samples/Image/Image_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Image Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Imaged Imaged Imaged @@ -111,10 +93,40 @@ Image Image + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled - .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true true @@ -124,14 +136,12 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin64\Imaged.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -148,7 +158,7 @@ true Speed true - .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -156,14 +166,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin64\Image.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -176,7 +184,7 @@ Disabled - .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -186,11 +194,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -210,7 +217,7 @@ true Speed true - .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded @@ -218,11 +225,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -238,7 +244,7 @@ Disabled - .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -248,11 +254,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -272,7 +277,7 @@ true Speed true - .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -280,11 +285,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -298,8 +302,8 @@ - + - - - \ No newline at end of file + + + diff --git a/PDF/samples/Image/Image_x64_vs120.vcxproj.filters b/PDF/samples/Image/Image_x64_vs120.vcxproj.filters index 9e61fe19b..2b8f074c5 100644 --- a/PDF/samples/Image/Image_x64_vs120.vcxproj.filters +++ b/PDF/samples/Image/Image_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {2d50ffa6-8611-423f-bc3d-e022540f7fa7} + {7c2d2420-d010-4461-8828-aad5c74d7700} - {302a396f-cf09-4dab-96e3-b43a2f57f04a} + {f711ed95-5670-4e22-b33c-14fd66a6e1b4} diff --git a/PDF/samples/Text/Text_vs100.vcxproj b/PDF/samples/Text/Text_vs100.vcxproj index 5eca46bb7..72390ee38 100644 --- a/PDF/samples/Text/Text_vs100.vcxproj +++ b/PDF/samples/Text/Text_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Textd - Textd - Textd - Text - Text - Text + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + Textd + Textd + Textd + Text + Text + Text - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -127,7 +127,7 @@ %(AdditionalDependencies) bin\Textd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\Textd.pdb @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -159,7 +159,7 @@ %(AdditionalDependencies) bin\Text.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -189,7 +189,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\Textd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_mt\Textd.pdb @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -221,7 +221,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\Text.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -251,7 +251,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\Textd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\Textd.pdb @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -283,7 +283,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\Text.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true diff --git a/PDF/samples/Text/Text_vs100.vcxproj.filters b/PDF/samples/Text/Text_vs100.vcxproj.filters index e2f3e8f8a..446ac8050 100644 --- a/PDF/samples/Text/Text_vs100.vcxproj.filters +++ b/PDF/samples/Text/Text_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {7ff09e04-a48d-4028-a774-7abe0956261b} + {0ad10a6e-4042-401d-8a49-1ceb3a076685} - {e79fb531-211c-44ee-863d-f179fa85b2ae} + {84772b1d-c9e2-4676-ae04-e941a4c32a95} diff --git a/PDF/samples/Text/Text_vs110.vcxproj b/PDF/samples/Text/Text_vs110.vcxproj index 09f3c34e6..57ba6089d 100644 --- a/PDF/samples/Text/Text_vs110.vcxproj +++ b/PDF/samples/Text/Text_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Textd - Textd - Textd - Text - Text - Text + <_ProjectFileVersion>11.0.61030.0 + Textd + Textd + Textd + Text + Text + Text - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -128,12 +140,10 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin\Textd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\Textd.pdb @@ -141,7 +151,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,12 +170,10 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin\Text.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -173,7 +181,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -190,12 +198,11 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\Textd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_mt\Textd.pdb @@ -203,7 +210,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,12 +229,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\Text.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true @@ -235,7 +241,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -252,12 +258,11 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\Textd.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\Textd.pdb @@ -265,7 +270,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,12 +289,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\Text.exe - ..\..\..\lib;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib;%(AdditionalLibraryDirectories) false Console true diff --git a/PDF/samples/Text/Text_vs110.vcxproj.filters b/PDF/samples/Text/Text_vs110.vcxproj.filters index 9d29c1fc8..ec46ab318 100644 --- a/PDF/samples/Text/Text_vs110.vcxproj.filters +++ b/PDF/samples/Text/Text_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {1049752d-f63b-4c4d-8d7f-8fcb6fd2d107} + {7529093a-3ac7-4d14-b5a4-4cc6e46798d3} - {15b41035-8ec1-4cac-853c-2fa05dc3e91d} + {732f051a-9d94-45da-99a0-3b19c4504d16} diff --git a/PDF/samples/Text/Text_vs120.vcxproj b/PDF/samples/Text/Text_vs120.vcxproj index a9b37073f..d7583729c 100644 --- a/PDF/samples/Text/Text_vs120.vcxproj +++ b/PDF/samples/Text/Text_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Text Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Textd Textd Textd @@ -111,10 +93,40 @@ Text Text + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled - .\include;..\..\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true true @@ -124,14 +136,12 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin\Textd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -148,7 +158,7 @@ true Speed true - .\include;..\..\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -156,14 +166,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin\Text.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -176,7 +184,7 @@ Disabled - .\include;..\..\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -186,11 +194,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -210,7 +217,7 @@ true Speed true - .\include;..\..\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded @@ -218,11 +225,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -238,7 +244,7 @@ Disabled - .\include;..\..\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -248,11 +254,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -272,7 +277,7 @@ true Speed true - .\include;..\..\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -280,11 +285,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -298,8 +302,8 @@ - + - - - \ No newline at end of file + + + diff --git a/PDF/samples/Text/Text_vs120.vcxproj.filters b/PDF/samples/Text/Text_vs120.vcxproj.filters index 58505cc51..45f7f1497 100644 --- a/PDF/samples/Text/Text_vs120.vcxproj.filters +++ b/PDF/samples/Text/Text_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {9dea2c6a-ea03-4b1e-b50e-02f0183f66c1} + {753bb063-4cd1-48d7-b858-c7c0f8cd122f} - {3cfc8ff4-1ad3-4e05-b447-881d70eb8769} + {0d75b575-1e8a-42ae-ba54-eed2e0c0f5e0} diff --git a/PDF/samples/Text/Text_x64_vs100.vcxproj b/PDF/samples/Text/Text_x64_vs100.vcxproj index 6edaf1adc..b3983bbcc 100644 --- a/PDF/samples/Text/Text_x64_vs100.vcxproj +++ b/PDF/samples/Text/Text_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Textd - Textd - Textd - Text - Text - Text + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + Textd + Textd + Textd + Text + Text + Text - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -127,7 +127,7 @@ %(AdditionalDependencies) bin64\Textd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\Textd.pdb @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -159,7 +159,7 @@ %(AdditionalDependencies) bin64\Text.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -189,7 +189,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\Textd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_mt\Textd.pdb @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -221,7 +221,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\Text.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -251,7 +251,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\Textd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\Textd.pdb @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -283,7 +283,7 @@ iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\Text.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true diff --git a/PDF/samples/Text/Text_x64_vs100.vcxproj.filters b/PDF/samples/Text/Text_x64_vs100.vcxproj.filters index 8e6abfc3d..d300f4998 100644 --- a/PDF/samples/Text/Text_x64_vs100.vcxproj.filters +++ b/PDF/samples/Text/Text_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {a61a3125-e739-4399-ac5c-73a9fd24596d} + {4731bc3d-09b2-456d-8075-c92458e08f1c} - {e1fe2354-a1d3-4b9d-b4e5-580451c1ad26} + {fd21ca81-7985-418b-b7ce-6bdac9a62086} diff --git a/PDF/samples/Text/Text_x64_vs110.vcxproj b/PDF/samples/Text/Text_x64_vs110.vcxproj index 166061ea8..87869cadf 100644 --- a/PDF/samples/Text/Text_x64_vs110.vcxproj +++ b/PDF/samples/Text/Text_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Textd - Textd - Textd - Text - Text - Text + <_ProjectFileVersion>11.0.61030.0 + Textd + Textd + Textd + Text + Text + Text - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -128,12 +140,10 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin64\Textd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\Textd.pdb @@ -141,7 +151,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,12 +170,10 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin64\Text.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -173,7 +181,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -190,12 +198,11 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\Textd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_mt\Textd.pdb @@ -203,7 +210,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,12 +229,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\Text.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true @@ -235,7 +241,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) @@ -252,12 +258,11 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\Textd.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\Textd.pdb @@ -265,7 +270,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,12 +289,11 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\Text.exe - ..\..\..\lib64;${configuration.linker.libraries};%(AdditionalLibraryDirectories) + ..\..\..\lib64;%(AdditionalLibraryDirectories) false Console true diff --git a/PDF/samples/Text/Text_x64_vs110.vcxproj.filters b/PDF/samples/Text/Text_x64_vs110.vcxproj.filters index 3a8737a05..0d1cea24b 100644 --- a/PDF/samples/Text/Text_x64_vs110.vcxproj.filters +++ b/PDF/samples/Text/Text_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {6575f85e-c320-4c99-9056-3e49d77ad4a5} + {dd646794-d4ac-4e6c-b935-7486a624420e} - {a39db7f6-9bf2-4ecd-9634-2603d7ece746} + {1a50df50-6f9e-4ea1-a208-adb45cbeba22} diff --git a/PDF/samples/Text/Text_x64_vs120.vcxproj b/PDF/samples/Text/Text_x64_vs120.vcxproj index 7915f6d3b..2df2a4b88 100644 --- a/PDF/samples/Text/Text_x64_vs120.vcxproj +++ b/PDF/samples/Text/Text_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Text Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Textd Textd Textd @@ -111,10 +93,40 @@ Text Text + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled - .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true true @@ -124,14 +136,12 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin64\Textd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -148,7 +158,7 @@ true Speed true - .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -156,14 +166,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin64\Text.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -176,7 +184,7 @@ Disabled - .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -186,11 +194,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -210,7 +217,7 @@ true Speed true - .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreaded @@ -218,11 +225,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -238,7 +244,7 @@ Disabled - .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true true @@ -248,11 +254,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -272,7 +277,7 @@ true Speed true - .\include;..\..\..\Foundation\include;%(AdditionalIncludeDirectories) + .\include;..\..\..\Foundation\include;..\..\..\PDF\include;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -280,11 +285,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -298,8 +302,8 @@ - + - - - \ No newline at end of file + + + diff --git a/PDF/samples/Text/Text_x64_vs120.vcxproj.filters b/PDF/samples/Text/Text_x64_vs120.vcxproj.filters index 6ce538b88..17675ea88 100644 --- a/PDF/samples/Text/Text_x64_vs120.vcxproj.filters +++ b/PDF/samples/Text/Text_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {e8d1ae7b-5e41-4f5e-8a77-2efa361c856a} + {aebd10d2-f153-47bb-931c-e4ccf1beb889} - {96d12496-bf30-4119-aee1-6c9c0051282e} + {5e2854ab-29c0-45b7-b49d-86e4da291fd6} diff --git a/PDF/samples/samples_vs120.sln b/PDF/samples/samples_vs120.sln index ab3a66417..ca2bc2d4c 100644 --- a/PDF/samples/samples_vs120.sln +++ b/PDF/samples/samples_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Image", "Image\Image_vs120.vcxproj", "{DA74060D-73AF-3E8F-A804-FBC960DAC393}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Text", "Text\Text_vs120.vcxproj", "{0DE18C25-1694-3598-831D-4FA48D113606}" diff --git a/PDF/samples/samples_x64_vs120.sln b/PDF/samples/samples_x64_vs120.sln index 9d5270d3b..a78f9db48 100644 --- a/PDF/samples/samples_x64_vs120.sln +++ b/PDF/samples/samples_x64_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Image", "Image\Image_x64_vs120.vcxproj", "{DA74060D-73AF-3E8F-A804-FBC960DAC393}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Text", "Text\Text_x64_vs120.vcxproj", "{0DE18C25-1694-3598-831D-4FA48D113606}" diff --git a/PDF/testsuite/TestSuite_vs100.vcxproj b/PDF/testsuite/TestSuite_vs100.vcxproj index 8d6b9ff7e..958a81926 100644 --- a/PDF/testsuite/TestSuite_vs100.vcxproj +++ b/PDF/testsuite/TestSuite_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/PDF/testsuite/TestSuite_vs100.vcxproj.filters b/PDF/testsuite/TestSuite_vs100.vcxproj.filters index baac2f1e8..dab7d84d2 100644 --- a/PDF/testsuite/TestSuite_vs100.vcxproj.filters +++ b/PDF/testsuite/TestSuite_vs100.vcxproj.filters @@ -2,28 +2,28 @@ - {e3981631-b150-42e5-b72d-24f18dfc15bd} + {e64b5e2a-e17d-4c11-8491-0f9727c0676d} - {00367054-c7fe-402c-84a8-4618cd40700b} + {44f7bc74-b96f-4fbf-8c96-2322cc1884ed} - {1a484f3a-f88b-445b-a9b4-24c7e96c6795} + {149c76e5-212e-46ab-a3b5-18db1e318efb} - {7aab07df-3e08-41d1-b5a9-0c272e289c2a} + {67f25bf3-b0f4-4bf1-a006-b50dbf6148ed} - {c9260ce8-cdae-4439-82b5-b0a96d0f69aa} + {fea9dd4e-7569-436f-bdb7-0faa5303d8de} - {ccf5806e-4b99-4d64-8010-4d105a992d0b} + {08d160e0-680d-45aa-a7b5-31bc67629ffd} - {d9762295-fde1-48cc-9e2c-aec40622c517} + {73cb575e-fd48-42e9-8f89-86941b8f8bfd} - {d2557d8b-a6c5-4daf-a21d-dace78294d37} + {3e9ce34b-c897-4338-84f5-5eb8408c85e3} diff --git a/PDF/testsuite/TestSuite_vs110.vcxproj b/PDF/testsuite/TestSuite_vs110.vcxproj index 084b9f9d9..78dd342c5 100644 --- a/PDF/testsuite/TestSuite_vs110.vcxproj +++ b/PDF/testsuite/TestSuite_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/PDF/testsuite/TestSuite_vs110.vcxproj.filters b/PDF/testsuite/TestSuite_vs110.vcxproj.filters index 6660a5a90..d404e82f6 100644 --- a/PDF/testsuite/TestSuite_vs110.vcxproj.filters +++ b/PDF/testsuite/TestSuite_vs110.vcxproj.filters @@ -2,28 +2,28 @@ - {6225c178-ac72-449b-8b07-ca221cabf46b} + {ca647567-fd47-4e14-8a7e-71b33f2de4b1} - {aa758f8a-fc4d-4007-86ca-4ef9bc06d7b7} + {54718711-474b-4b9a-b356-f27aee93b702} - {cb766ecd-f968-4321-91ee-009e9130d0d2} + {f479fe9c-398e-40a8-bdb5-285dc382e011} - {5c2685e1-d80f-4b6e-8e80-716545b50a78} + {5ecc4862-cd6a-4820-bede-c7b8066cf835} - {032517f3-322e-47e1-990e-2d7fd25477ff} + {39519f61-1ddb-475d-a517-42f59cfc8090} - {62722250-c4f1-4ea0-bed9-eb75664c3f3e} + {b3fba789-5279-4964-814f-0a7c219c5c9d} - {bb359112-d04b-4e85-ad4a-ccb738b73507} + {52ad8736-0185-4c79-8fca-e976e04d3dbf} - {af0ec106-9c01-4985-8724-9289f33764e5} + {d6810ac8-5d89-471a-8b73-f59b9a6fcb2c} diff --git a/PDF/testsuite/TestSuite_vs120.vcxproj b/PDF/testsuite/TestSuite_vs120.vcxproj index ebb14ade3..7f75c5fc5 100644 --- a/PDF/testsuite/TestSuite_vs120.vcxproj +++ b/PDF/testsuite/TestSuite_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Console + Windows MachineX86 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 @@ -192,21 +202,20 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Console + Windows MachineX86 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX86 @@ -256,20 +264,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Console + Windows MachineX86 @@ -288,32 +295,31 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 - - + + - - - + + + - - - \ No newline at end of file + + + diff --git a/PDF/testsuite/TestSuite_vs120.vcxproj.filters b/PDF/testsuite/TestSuite_vs120.vcxproj.filters index 6f0906e0b..b04610344 100644 --- a/PDF/testsuite/TestSuite_vs120.vcxproj.filters +++ b/PDF/testsuite/TestSuite_vs120.vcxproj.filters @@ -2,28 +2,28 @@ - {6225c178-ac72-449b-8b07-ca221cabf46b} + {e40e2cd3-3be2-45be-99cb-97316ec296c7} - {aa758f8a-fc4d-4007-86ca-4ef9bc06d7b7} + {13516a5a-83bb-4401-ba2f-c4dcb5de9e37} - {cb766ecd-f968-4321-91ee-009e9130d0d2} + {6b9633b9-bedf-4afd-8af8-5f0bb0a6461a} - {5c2685e1-d80f-4b6e-8e80-716545b50a78} + {71524d51-d394-4df7-9114-c33b6011e908} - {032517f3-322e-47e1-990e-2d7fd25477ff} + {d776b09a-62f2-46e7-b51c-26426f3c8da0} - {62722250-c4f1-4ea0-bed9-eb75664c3f3e} + {3d38ca52-943d-4983-86a3-e4484bc15519} - {bb359112-d04b-4e85-ad4a-ccb738b73507} + {65bf6332-ac6d-4b12-860c-67baa7e227ad} - {af0ec106-9c01-4985-8724-9289f33764e5} + {528af730-35cd-47bc-abb3-bcb46efd64f7} @@ -41,7 +41,7 @@ _Suite\Source Files - + _Driver\Source Files diff --git a/PDF/testsuite/TestSuite_x64_vs100.vcxproj b/PDF/testsuite/TestSuite_x64_vs100.vcxproj index 4f000b141..c5c3b4500 100644 --- a/PDF/testsuite/TestSuite_x64_vs100.vcxproj +++ b/PDF/testsuite/TestSuite_x64_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/PDF/testsuite/TestSuite_x64_vs100.vcxproj.filters b/PDF/testsuite/TestSuite_x64_vs100.vcxproj.filters index 1deaa445e..44f928369 100644 --- a/PDF/testsuite/TestSuite_x64_vs100.vcxproj.filters +++ b/PDF/testsuite/TestSuite_x64_vs100.vcxproj.filters @@ -2,28 +2,28 @@ - {598e891b-83da-4acd-ab1b-3539b63e1045} + {d25fe761-1cbe-4e72-a5c4-80fad9eba0b3} - {adb92887-0e9d-473e-9695-9f2a28922d14} + {2539741e-33e1-46c4-9fc5-c65ca3109082} - {fb5c62b9-f8e9-4de3-a1bb-09f2970dee1e} + {c0d7e647-8cb6-4987-9896-f517dd717077} - {0707530f-4fae-430e-ad5a-84bb0661632c} + {09fa3feb-f7ab-49d8-a248-c33b8e39f1fd} - {2f4d4a68-9153-408f-afbb-2c12529f5592} + {251c4d5e-bb21-42fa-809e-af2959d27f22} - {a373eb1a-02fc-4314-ba9b-1400c6e1033a} + {dd5a68c7-b4a5-4953-a0e6-5a875f197349} - {3d8caa71-4959-45ff-80bd-dc5dc5e636c5} + {e2199c8e-208c-4736-b1ed-b71ea0db39e0} - {1966e5b3-9cd1-40b6-a41d-f2fb04461d43} + {ee2dc3a6-f745-4ba2-8f59-07dcdb696e4e} diff --git a/PDF/testsuite/TestSuite_x64_vs110.vcxproj b/PDF/testsuite/TestSuite_x64_vs110.vcxproj index 46567ae09..362e08b12 100644 --- a/PDF/testsuite/TestSuite_x64_vs110.vcxproj +++ b/PDF/testsuite/TestSuite_x64_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/PDF/testsuite/TestSuite_x64_vs110.vcxproj.filters b/PDF/testsuite/TestSuite_x64_vs110.vcxproj.filters index 8aee34bfe..a23b2b940 100644 --- a/PDF/testsuite/TestSuite_x64_vs110.vcxproj.filters +++ b/PDF/testsuite/TestSuite_x64_vs110.vcxproj.filters @@ -2,28 +2,28 @@ - {03e49ef9-7539-43eb-aac1-2c3c3c78a143} + {0785a3ea-0e2e-45ab-8095-cfb419bd32b9} - {97e3ef7d-c660-496a-85c5-557176a37d09} + {d01f978e-6218-49a5-8342-d0f9754d42f3} - {e73ce49b-f2c1-43e5-8063-35e6245f4cbd} + {4f67c454-acd1-4f1f-9503-0fc4ed2a4619} - {2351566b-243e-47c5-8354-56346cf9d6af} + {8ce972aa-ff6a-4213-8aa4-baf0b09295b3} - {e4131147-27fc-4206-b7fe-e333e360e584} + {cb0f8f14-2728-47c8-b60d-701c70b89f35} - {4fdc67a8-c9d2-453e-8d99-79f2c5d30c0b} + {3739acac-f7fd-4ff0-a2d5-0dbff65e7352} - {f72497cf-0203-48e2-9ae5-aec197ed8102} + {594aa609-e55b-4db4-bc3e-8de18f429988} - {0989eddd-5c56-437e-b64e-6003ea81d411} + {220d3028-e9a5-4c0d-8353-957ec4cb85c3} diff --git a/PDF/testsuite/TestSuite_x64_vs120.vcxproj b/PDF/testsuite/TestSuite_x64_vs120.vcxproj index 8a44127c4..62b0cd4d1 100644 --- a/PDF/testsuite/TestSuite_x64_vs120.vcxproj +++ b/PDF/testsuite/TestSuite_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Console + Windows MachineX64 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 @@ -192,21 +202,20 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Console + Windows MachineX64 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX64 @@ -256,20 +264,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Console + Windows MachineX64 @@ -288,32 +295,31 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 - - + + - - - + + + - - - \ No newline at end of file + + + diff --git a/PDF/testsuite/TestSuite_x64_vs120.vcxproj.filters b/PDF/testsuite/TestSuite_x64_vs120.vcxproj.filters index 62f8da0da..9afb74f9f 100644 --- a/PDF/testsuite/TestSuite_x64_vs120.vcxproj.filters +++ b/PDF/testsuite/TestSuite_x64_vs120.vcxproj.filters @@ -2,28 +2,28 @@ - {03e49ef9-7539-43eb-aac1-2c3c3c78a143} + {dc6691ca-4d76-442c-a5c2-6b7e31811880} - {97e3ef7d-c660-496a-85c5-557176a37d09} + {1fdf6571-222c-4416-bcb3-2afc7a986631} - {e73ce49b-f2c1-43e5-8063-35e6245f4cbd} + {e3aace41-407e-4b4d-9f10-f1ca1d2307b7} - {2351566b-243e-47c5-8354-56346cf9d6af} + {1d877a16-2c4b-4ad0-961f-77a28ac8b7a9} - {e4131147-27fc-4206-b7fe-e333e360e584} + {3dd6f5da-6fd1-41f9-aa6d-a587ed30ff9a} - {4fdc67a8-c9d2-453e-8d99-79f2c5d30c0b} + {6d9753a3-c5ba-42f5-a154-56ebd3717427} - {f72497cf-0203-48e2-9ae5-aec197ed8102} + {e8bfbdb1-12f3-4692-b650-3513db6da92f} - {0989eddd-5c56-437e-b64e-6003ea81d411} + {3b8abd04-f68e-40ae-99d7-d5deef2216f7} @@ -41,7 +41,7 @@ _Suite\Source Files - + _Driver\Source Files diff --git a/PageCompiler/File2Page/File2Page_vs100.vcxproj b/PageCompiler/File2Page/File2Page_vs100.vcxproj index 483284cad..033f9ffee 100644 --- a/PageCompiler/File2Page/File2Page_vs100.vcxproj +++ b/PageCompiler/File2Page/File2Page_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - f2cpspd - f2cpspd - f2cpspd - f2cpsp - f2cpsp - f2cpsp + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + f2cpspd + f2cpspd + f2cpspd + f2cpsp + f2cpsp + f2cpsp - + Disabled .\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/PageCompiler/File2Page/File2Page_vs100.vcxproj.filters b/PageCompiler/File2Page/File2Page_vs100.vcxproj.filters index 659e6b857..8a7d26705 100644 --- a/PageCompiler/File2Page/File2Page_vs100.vcxproj.filters +++ b/PageCompiler/File2Page/File2Page_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {4948e04d-f90f-466a-9fdb-65538a075bd7} + {8627b7f9-b0e8-4d20-be9f-1b27b96c1493} - {3c3462cc-40d8-4b01-8f17-e96e771192c6} + {538a9a47-1258-485a-a707-7a5e174c8edd} diff --git a/PageCompiler/File2Page/File2Page_vs110.vcxproj b/PageCompiler/File2Page/File2Page_vs110.vcxproj index 6994fc58b..bbbf5c313 100644 --- a/PageCompiler/File2Page/File2Page_vs110.vcxproj +++ b/PageCompiler/File2Page/File2Page_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - f2cpspd - f2cpspd - f2cpspd - f2cpsp - f2cpsp - f2cpsp + <_ProjectFileVersion>11.0.61030.0 + f2cpspd + f2cpspd + f2cpspd + f2cpsp + f2cpsp + f2cpsp - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/PageCompiler/File2Page/File2Page_vs110.vcxproj.filters b/PageCompiler/File2Page/File2Page_vs110.vcxproj.filters index acd48435e..b5685617c 100644 --- a/PageCompiler/File2Page/File2Page_vs110.vcxproj.filters +++ b/PageCompiler/File2Page/File2Page_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {39c32274-e377-43c2-b19c-6c488833e312} + {88acec55-bbb5-48b9-a9ed-6a2a724a1447} - {b9b9a794-8d51-4600-b41b-7f3df029eb09} + {bd8d26f9-b934-4a14-a6fa-9473b8dc6b08} diff --git a/PageCompiler/File2Page/File2Page_vs120.sln b/PageCompiler/File2Page/File2Page_vs120.sln index 2fd537733..dee3e9785 100644 --- a/PageCompiler/File2Page/File2Page_vs120.sln +++ b/PageCompiler/File2Page/File2Page_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "File2Page", "File2Page_vs120.vcxproj", "{8BD05B6C-A179-40F1-BD17-6EA813055883}" EndProject Global diff --git a/PageCompiler/File2Page/File2Page_vs120.vcxproj b/PageCompiler/File2Page/File2Page_vs120.vcxproj index 6d1b9b4cc..de41aee7b 100644 --- a/PageCompiler/File2Page/File2Page_vs120.vcxproj +++ b/PageCompiler/File2Page/File2Page_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ File2Page Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 f2cpspd f2cpspd f2cpspd @@ -111,6 +93,36 @@ f2cpsp f2cpsp + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/PageCompiler/File2Page/File2Page_vs120.vcxproj.filters b/PageCompiler/File2Page/File2Page_vs120.vcxproj.filters index acd48435e..a3d8671ef 100644 --- a/PageCompiler/File2Page/File2Page_vs120.vcxproj.filters +++ b/PageCompiler/File2Page/File2Page_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {39c32274-e377-43c2-b19c-6c488833e312} + {f06f992e-16ec-4319-8787-a8a73db26568} - {b9b9a794-8d51-4600-b41b-7f3df029eb09} + {91d21892-5951-4011-ae78-0b6a69bcce97} diff --git a/PageCompiler/File2Page/File2Page_x64_vs100.vcxproj b/PageCompiler/File2Page/File2Page_x64_vs100.vcxproj index cbb83644f..0c0d200b1 100644 --- a/PageCompiler/File2Page/File2Page_x64_vs100.vcxproj +++ b/PageCompiler/File2Page/File2Page_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - f2cpspd - f2cpspd - f2cpspd - f2cpsp - f2cpsp - f2cpsp + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + f2cpspd + f2cpspd + f2cpspd + f2cpsp + f2cpsp + f2cpsp - + Disabled .\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/PageCompiler/File2Page/File2Page_x64_vs100.vcxproj.filters b/PageCompiler/File2Page/File2Page_x64_vs100.vcxproj.filters index e8df60479..8be145001 100644 --- a/PageCompiler/File2Page/File2Page_x64_vs100.vcxproj.filters +++ b/PageCompiler/File2Page/File2Page_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {563c9d6f-8586-498a-86f5-fcd08a8cecdb} + {b8a2edc0-ef45-4ba9-ba93-b2b2c75cd7b6} - {a4f7188a-2f9c-4129-8c27-9ebdb8759e37} + {8f9dc1fe-637b-45f0-bd36-e9a305f77b3c} diff --git a/PageCompiler/File2Page/File2Page_x64_vs110.vcxproj b/PageCompiler/File2Page/File2Page_x64_vs110.vcxproj index 38a0500df..217468bca 100644 --- a/PageCompiler/File2Page/File2Page_x64_vs110.vcxproj +++ b/PageCompiler/File2Page/File2Page_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - f2cpspd - f2cpspd - f2cpspd - f2cpsp - f2cpsp - f2cpsp + <_ProjectFileVersion>11.0.61030.0 + f2cpspd + f2cpspd + f2cpspd + f2cpsp + f2cpsp + f2cpsp - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\Foundation\include;..\..\XML\include;..\..\Util\include;..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/PageCompiler/File2Page/File2Page_x64_vs110.vcxproj.filters b/PageCompiler/File2Page/File2Page_x64_vs110.vcxproj.filters index 4d8ac5156..75aff0c7d 100644 --- a/PageCompiler/File2Page/File2Page_x64_vs110.vcxproj.filters +++ b/PageCompiler/File2Page/File2Page_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {da9c20c1-0fd6-48f4-a147-bc716a6a0dd5} + {ff84c6c1-7256-4fd4-b636-0a56d35b16e6} - {88334625-6178-444f-9f53-e6894d8733de} + {a9ee80f7-5be3-423d-863b-c09d480a563a} diff --git a/PageCompiler/File2Page/File2Page_x64_vs120.sln b/PageCompiler/File2Page/File2Page_x64_vs120.sln index a979fe0ea..9fbdc1268 100644 --- a/PageCompiler/File2Page/File2Page_x64_vs120.sln +++ b/PageCompiler/File2Page/File2Page_x64_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "File2Page", "File2Page_x64_vs120.vcxproj", "{8BD05B6C-A179-40F1-BD17-6EA813055883}" EndProject Global diff --git a/PageCompiler/File2Page/File2Page_x64_vs120.vcxproj b/PageCompiler/File2Page/File2Page_x64_vs120.vcxproj index 814ae15c0..7d03e04a2 100644 --- a/PageCompiler/File2Page/File2Page_x64_vs120.vcxproj +++ b/PageCompiler/File2Page/File2Page_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ File2Page Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 f2cpspd f2cpspd f2cpspd @@ -111,6 +93,36 @@ f2cpsp f2cpsp + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/PageCompiler/File2Page/File2Page_x64_vs120.vcxproj.filters b/PageCompiler/File2Page/File2Page_x64_vs120.vcxproj.filters index 4d8ac5156..e43c6330a 100644 --- a/PageCompiler/File2Page/File2Page_x64_vs120.vcxproj.filters +++ b/PageCompiler/File2Page/File2Page_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {da9c20c1-0fd6-48f4-a147-bc716a6a0dd5} + {370e996d-70c1-4161-bfa0-8ea551daa1e0} - {88334625-6178-444f-9f53-e6894d8733de} + {6475257f-09b2-4c2c-a2f6-4dfac357a527} diff --git a/PageCompiler/PageCompiler_vs100.vcxproj b/PageCompiler/PageCompiler_vs100.vcxproj index b8ca3e228..a287c9f0e 100644 --- a/PageCompiler/PageCompiler_vs100.vcxproj +++ b/PageCompiler/PageCompiler_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - cpspcd - cpspcd - cpspcd - cpspc - cpspc - cpspc + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + cpspcd + cpspcd + cpspcd + cpspc + cpspc + cpspc - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/PageCompiler/PageCompiler_vs100.vcxproj.filters b/PageCompiler/PageCompiler_vs100.vcxproj.filters index d55e6357e..b3f8eb0e8 100644 --- a/PageCompiler/PageCompiler_vs100.vcxproj.filters +++ b/PageCompiler/PageCompiler_vs100.vcxproj.filters @@ -2,13 +2,13 @@ - {4330148c-5d16-41df-99b9-76c091c8d7e5} + {5b48626f-d0fa-4551-bebf-acf94318674f} - {fda9b2e3-3952-46e9-b412-03177ef39629} + {3208a0fe-46b9-407d-8b7c-3a51f1bd2205} - {64319d80-0a07-4292-9d59-4959ab3be290} + {b7b135b9-a66d-4979-a8a4-9d77bcbb87bc} diff --git a/PageCompiler/PageCompiler_vs110.vcxproj b/PageCompiler/PageCompiler_vs110.vcxproj index 7dfa4d8c7..b244593d1 100644 --- a/PageCompiler/PageCompiler_vs110.vcxproj +++ b/PageCompiler/PageCompiler_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - cpspcd - cpspcd - cpspcd - cpspc - cpspc - cpspc + <_ProjectFileVersion>11.0.61030.0 + cpspcd + cpspcd + cpspcd + cpspc + cpspc + cpspc - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/PageCompiler/PageCompiler_vs110.vcxproj.filters b/PageCompiler/PageCompiler_vs110.vcxproj.filters index d4c92e4eb..2f0016108 100644 --- a/PageCompiler/PageCompiler_vs110.vcxproj.filters +++ b/PageCompiler/PageCompiler_vs110.vcxproj.filters @@ -2,13 +2,13 @@ - {135421cd-bca9-4ff3-bca2-41b5e16b6354} + {5d9fab1d-df6e-4a0f-b41b-e6707a1c4a2a} - {c0b27c6e-46d3-4bba-a3d2-71d0f15c24d9} + {500257ca-8850-4d9a-b9df-f2d1caa35657} - {af908e50-9d83-4103-a27a-cd60158dffbf} + {38f4e17f-52a7-4a8b-9b4c-5cdd5c3c4cf2} diff --git a/PageCompiler/PageCompiler_vs120.sln b/PageCompiler/PageCompiler_vs120.sln index b2a01f9e9..96885737a 100644 --- a/PageCompiler/PageCompiler_vs120.sln +++ b/PageCompiler/PageCompiler_vs120.sln @@ -1,31 +1,35 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PageCompiler", "PageCompiler_vs120.vcxproj", "{E12E5C71-79A4-495A-848F-F1710111E610}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {E12E5C71-79A4-495A-848F-F1710111E610}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {E12E5C71-79A4-495A-848F-F1710111E610}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {E12E5C71-79A4-495A-848F-F1710111E610}.release_shared|Win32.ActiveCfg = release_shared|Win32 {E12E5C71-79A4-495A-848F-F1710111E610}.release_shared|Win32.Build.0 = release_shared|Win32 - {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/PageCompiler/PageCompiler_vs120.vcxproj b/PageCompiler/PageCompiler_vs120.vcxproj index 7f7ed61a5..37f150164 100644 --- a/PageCompiler/PageCompiler_vs120.vcxproj +++ b/PageCompiler/PageCompiler_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ PageCompiler Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 cpspcd cpspcd cpspcd @@ -111,6 +93,36 @@ cpspc cpspc + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,23 +304,23 @@ - + - - - - - - + + + + + + - - - - - + + + + + - - - \ No newline at end of file + + + diff --git a/PageCompiler/PageCompiler_vs120.vcxproj.filters b/PageCompiler/PageCompiler_vs120.vcxproj.filters index d4c92e4eb..10852623f 100644 --- a/PageCompiler/PageCompiler_vs120.vcxproj.filters +++ b/PageCompiler/PageCompiler_vs120.vcxproj.filters @@ -2,13 +2,13 @@ - {135421cd-bca9-4ff3-bca2-41b5e16b6354} + {35a871a4-ee1d-423c-82fa-a36b3535ce21} - {c0b27c6e-46d3-4bba-a3d2-71d0f15c24d9} + {110584ad-ae03-4dc6-b56e-d6f2dd45f254} - {af908e50-9d83-4103-a27a-cd60158dffbf} + {9134e892-7e21-40b6-a5ce-ec628cc91b2c} diff --git a/PageCompiler/PageCompiler_x64_vs100.vcxproj b/PageCompiler/PageCompiler_x64_vs100.vcxproj index 0be9e8ab4..e462bf957 100644 --- a/PageCompiler/PageCompiler_x64_vs100.vcxproj +++ b/PageCompiler/PageCompiler_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - cpspcd - cpspcd - cpspcd - cpspc - cpspc - cpspc + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + cpspcd + cpspcd + cpspcd + cpspc + cpspc + cpspc - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/PageCompiler/PageCompiler_x64_vs100.vcxproj.filters b/PageCompiler/PageCompiler_x64_vs100.vcxproj.filters index f6beb32d8..1ca14e420 100644 --- a/PageCompiler/PageCompiler_x64_vs100.vcxproj.filters +++ b/PageCompiler/PageCompiler_x64_vs100.vcxproj.filters @@ -2,13 +2,13 @@ - {154815a2-e949-4503-9c98-f3d8254ccee5} + {1e535882-dc2d-4452-b3a9-5985f1326808} - {3c315599-d270-4f18-8704-a0661c476e4b} + {d64deee7-9cdb-4f15-a404-856bc5712adb} - {264f9ac9-66cc-4d8b-8a6d-46549220990d} + {d24c5efd-5814-49d3-9854-c5150418770b} diff --git a/PageCompiler/PageCompiler_x64_vs110.vcxproj b/PageCompiler/PageCompiler_x64_vs110.vcxproj index fd6606233..1dfb98e36 100644 --- a/PageCompiler/PageCompiler_x64_vs110.vcxproj +++ b/PageCompiler/PageCompiler_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - cpspcd - cpspcd - cpspcd - cpspc - cpspc - cpspc + <_ProjectFileVersion>11.0.61030.0 + cpspcd + cpspcd + cpspcd + cpspc + cpspc + cpspc - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/PageCompiler/PageCompiler_x64_vs110.vcxproj.filters b/PageCompiler/PageCompiler_x64_vs110.vcxproj.filters index d6481c525..428d252f6 100644 --- a/PageCompiler/PageCompiler_x64_vs110.vcxproj.filters +++ b/PageCompiler/PageCompiler_x64_vs110.vcxproj.filters @@ -2,13 +2,13 @@ - {4c3fed14-d99f-4ae6-af8e-78cf9336cfcd} + {88aabd2d-01e8-4576-b809-2202f81ab1e5} - {3c5b219a-584b-46dc-9ca9-1ab27d87de50} + {e8fa5a86-f294-4ddd-badf-7352ca0c8711} - {c509e57f-fb29-4759-bc3b-8af0f2d51160} + {4073b61c-0d54-49aa-83ea-7b87c07376f8} diff --git a/PageCompiler/PageCompiler_x64_vs120.sln b/PageCompiler/PageCompiler_x64_vs120.sln index 58e33d338..ad9cdb964 100644 --- a/PageCompiler/PageCompiler_x64_vs120.sln +++ b/PageCompiler/PageCompiler_x64_vs120.sln @@ -1,31 +1,35 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PageCompiler", "PageCompiler_x64_vs120.vcxproj", "{E12E5C71-79A4-495A-848F-F1710111E610}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {E12E5C71-79A4-495A-848F-F1710111E610}.debug_shared|x64.ActiveCfg = debug_shared|x64 {E12E5C71-79A4-495A-848F-F1710111E610}.debug_shared|x64.Build.0 = debug_shared|x64 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_shared|x64.Deploy.0 = debug_shared|x64 {E12E5C71-79A4-495A-848F-F1710111E610}.release_shared|x64.ActiveCfg = release_shared|x64 {E12E5C71-79A4-495A-848F-F1710111E610}.release_shared|x64.Build.0 = release_shared|x64 - {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|x64.Build.0 = release_static_md|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_shared|x64.Deploy.0 = release_shared|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|x64.Build.0 = release_static_md|x64 + {E12E5C71-79A4-495A-848F-F1710111E610}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/PageCompiler/PageCompiler_x64_vs120.vcxproj b/PageCompiler/PageCompiler_x64_vs120.vcxproj index 1120cf89f..1cd546886 100644 --- a/PageCompiler/PageCompiler_x64_vs120.vcxproj +++ b/PageCompiler/PageCompiler_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ PageCompiler Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 cpspcd cpspcd cpspcd @@ -111,6 +93,36 @@ cpspc cpspc + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,23 +304,23 @@ - + - - - - - - + + + + + + - - - - - + + + + + - - - \ No newline at end of file + + + diff --git a/PageCompiler/PageCompiler_x64_vs120.vcxproj.filters b/PageCompiler/PageCompiler_x64_vs120.vcxproj.filters index d6481c525..6a417f658 100644 --- a/PageCompiler/PageCompiler_x64_vs120.vcxproj.filters +++ b/PageCompiler/PageCompiler_x64_vs120.vcxproj.filters @@ -2,13 +2,13 @@ - {4c3fed14-d99f-4ae6-af8e-78cf9336cfcd} + {d0e456b1-555d-4065-851d-d7311b7445f3} - {3c5b219a-584b-46dc-9ca9-1ab27d87de50} + {48b92852-9634-4146-b836-0201e40842b6} - {c509e57f-fb29-4759-bc3b-8af0f2d51160} + {ab02c86f-cd01-4da3-8225-0d1c9ecf5ece} diff --git a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer.progen b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer.progen index 789048c79..3e6d9bb28 100644 --- a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer.progen +++ b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer.progen @@ -3,7 +3,7 @@ vc.project.name = ${vc.project.baseName} vc.project.target = ${vc.project.name} vc.project.type = executable vc.project.pocobase = ..\\..\\.. -vc.project.platforms = Win32, x64, WinCE +vc.project.platforms = Win32, x64 vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md vc.project.prototype = ${vc.project.name}_vs90.vcproj vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\Net\\include diff --git a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj index 49a951b75..944de2def 100644 --- a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj +++ b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServer - HTTPTimeServer - HTTPTimeServer + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServer + HTTPTimeServer + HTTPTimeServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj.filters b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj.filters index 56ac2ff45..8269072b3 100644 --- a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj.filters +++ b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs100.vcxproj.filters @@ -2,13 +2,13 @@ - {208f41de-502b-41ff-800f-3e7f97a855ca} + {9b783ea4-f6ee-49dc-b44a-6f488f8fc14e} - {52d9bc4d-b9d1-41ac-be8b-c27c2dcc919b} + {c4b62014-51e1-46f2-b607-efdb87fb4730} - {78e5c433-48ef-4048-b01e-096b400754cf} + {f181a244-0c75-4f58-b1c2-f0d289be47b2} diff --git a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj index 7704d3527..9aec52dac 100644 --- a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj +++ b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServer - HTTPTimeServer - HTTPTimeServer + <_ProjectFileVersion>11.0.61030.0 + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServer + HTTPTimeServer + HTTPTimeServer - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj.filters b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj.filters index 2aa4094fa..4ab185319 100644 --- a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj.filters +++ b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs110.vcxproj.filters @@ -2,13 +2,13 @@ - {773eaebf-7fa6-4e09-bee4-84e7dea76d73} + {ff9f27c0-c243-4c00-8e35-2956e4052a3d} - {96ac36ee-5a43-4e14-b017-f7f44cb36fed} + {8fa1a789-4b8f-4e83-8f7a-7d459c1cf519} - {7e4eeef7-f291-4173-a958-c6d074184964} + {44dec647-da38-43df-a373-4f166c310e97} diff --git a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj index c1f2a7a20..bc43b00a1 100644 --- a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj +++ b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ HTTPTimeServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 HTTPTimeServerd HTTPTimeServerd HTTPTimeServerd @@ -111,6 +93,36 @@ HTTPTimeServer HTTPTimeServer + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,15 +304,15 @@ - + - - + + - + - - - \ No newline at end of file + + + diff --git a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj.filters b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj.filters index 2aa4094fa..44a46015d 100644 --- a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj.filters +++ b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_vs120.vcxproj.filters @@ -2,13 +2,13 @@ - {773eaebf-7fa6-4e09-bee4-84e7dea76d73} + {c3adb600-754c-4018-8ad7-f55e4e4c9df5} - {96ac36ee-5a43-4e14-b017-f7f44cb36fed} + {e641a6b5-a603-412b-85ce-bce1d4d270b5} - {7e4eeef7-f291-4173-a958-c6d074184964} + {9fe9dd81-546c-487a-a7ac-54d062fb939e} diff --git a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj index fb2520d09..2e9cfcba3 100644 --- a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj +++ b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServer - HTTPTimeServer - HTTPTimeServer + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServer + HTTPTimeServer + HTTPTimeServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj.filters b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj.filters index 30e335cc7..20eb1a0a5 100644 --- a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj.filters +++ b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs100.vcxproj.filters @@ -2,13 +2,13 @@ - {3421d172-5cfc-4838-bf8e-c3cd695cac5b} + {792f7639-3c67-4798-9ff7-272cdf0fb369} - {b764759d-f1a0-4a4f-b276-feadd77d9167} + {2d30fc33-c4fa-4d0f-ba92-ed5697a7edd4} - {606016a7-5010-4c39-a100-2e9c4b2254d9} + {8d953f13-47eb-4ee6-8cfe-35af6c4d7a47} diff --git a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj index f41fd5f2d..47bd8f0c5 100644 --- a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj +++ b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServer - HTTPTimeServer - HTTPTimeServer + <_ProjectFileVersion>11.0.61030.0 + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServer + HTTPTimeServer + HTTPTimeServer - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj.filters b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj.filters index ead19dbf8..728c10d97 100644 --- a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj.filters +++ b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs110.vcxproj.filters @@ -2,13 +2,13 @@ - {ea425ee6-4472-434d-802a-71524b905331} + {e6b66fca-340b-4d60-80c0-73dde45b6f14} - {c5e4b7ab-e7ca-40d4-9f0b-11aa7c549cad} + {f995ef54-cddf-443f-9fd3-2a1ee4f8cb51} - {5ccb17f9-7ce4-47b4-81a0-649fd15abbfd} + {9eb58865-ed3b-4526-ac3e-b099bc9840ce} diff --git a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj index 8e57e2dbc..f19a2491e 100644 --- a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj +++ b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ HTTPTimeServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 HTTPTimeServerd HTTPTimeServerd HTTPTimeServerd @@ -111,6 +93,36 @@ HTTPTimeServer HTTPTimeServer + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,15 +304,15 @@ - + - - + + - + - - - \ No newline at end of file + + + diff --git a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj.filters b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj.filters index ead19dbf8..844b3b36e 100644 --- a/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj.filters +++ b/PageCompiler/samples/HTTPTimeServer/HTTPTimeServer_x64_vs120.vcxproj.filters @@ -2,13 +2,13 @@ - {ea425ee6-4472-434d-802a-71524b905331} + {b56b3d1a-22e0-4ec5-80bd-e47dfa212dd3} - {c5e4b7ab-e7ca-40d4-9f0b-11aa7c549cad} + {65d6205e-0140-4730-ad61-c196b26efb7c} - {5ccb17f9-7ce4-47b4-81a0-649fd15abbfd} + {b644ff62-c295-448e-93a0-897d7fc09fa4} diff --git a/PageCompiler/samples/samples.progen b/PageCompiler/samples/samples.progen index ef1a9232d..9b710a468 100644 --- a/PageCompiler/samples/samples.progen +++ b/PageCompiler/samples/samples.progen @@ -1,4 +1,4 @@ -vc.project.platforms = Win32, x64, WinCE +vc.project.platforms = Win32, x64 vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md vc.solution.create = true vc.solution.include = HTTPTimeServer\\HTTPTimeServer diff --git a/PageCompiler/samples/samples_vs120.sln b/PageCompiler/samples/samples_vs120.sln index 9890bdbd1..fea0a2cf9 100644 --- a/PageCompiler/samples/samples_vs120.sln +++ b/PageCompiler/samples/samples_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HTTPTimeServer", "HTTPTimeServer\HTTPTimeServer_vs120.vcxproj", "{18A0143A-444A-38E3-838C-1ACFBE4EE18C}" EndProject Global diff --git a/PageCompiler/samples/samples_x64_vs120.sln b/PageCompiler/samples/samples_x64_vs120.sln index 59c95c5e1..3542ebed5 100644 --- a/PageCompiler/samples/samples_x64_vs120.sln +++ b/PageCompiler/samples/samples_x64_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HTTPTimeServer", "HTTPTimeServer\HTTPTimeServer_x64_vs120.vcxproj", "{18A0143A-444A-38E3-838C-1ACFBE4EE18C}" EndProject Global diff --git a/PocoDoc/PocoDoc_vs100.vcxproj b/PocoDoc/PocoDoc_vs100.vcxproj index 26838abe1..238fe794c 100644 --- a/PocoDoc/PocoDoc_vs100.vcxproj +++ b/PocoDoc/PocoDoc_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - PocoDocd - PocoDocd - PocoDocd - PocoDoc - PocoDoc - PocoDoc + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + PocoDocd + PocoDocd + PocoDocd + PocoDoc + PocoDoc + PocoDoc - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\CppParser\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\CppParser\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\CppParser\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/PocoDoc/PocoDoc_vs100.vcxproj.filters b/PocoDoc/PocoDoc_vs100.vcxproj.filters index a20dc155b..e6b9582fa 100644 --- a/PocoDoc/PocoDoc_vs100.vcxproj.filters +++ b/PocoDoc/PocoDoc_vs100.vcxproj.filters @@ -2,22 +2,22 @@ - {8acaae35-1027-4d49-a71f-34ab95529ef2} + {a62d5f40-c4d4-4e32-9080-995d99dbef3e} - {ebdbde5f-35bf-44ce-9a51-70576b794a86} + {292df3c4-c6c4-4438-b2ba-c43ee7e68596} - {4151d822-de49-4574-a1a3-13e490b5ea16} + {22be23d0-863a-4594-86a3-6e55245c8545} - {61194373-3bdc-4e5f-9920-e538fb9b330c} + {1bd7108b-bb94-41aa-98e4-1f40b602a7eb} - {986be004-b7d3-4d63-89d4-0d65db56184f} + {d5bfb481-cdd2-436e-acb2-1dddbf58ffa6} - {4d6019af-8454-4ce5-8176-69fea7ea9c9b} + {20fef02e-de68-4f1d-84cc-a394ce2223e4} diff --git a/PocoDoc/PocoDoc_vs110.vcxproj b/PocoDoc/PocoDoc_vs110.vcxproj index e7348f623..f66f9a0ec 100644 --- a/PocoDoc/PocoDoc_vs110.vcxproj +++ b/PocoDoc/PocoDoc_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - PocoDocd - PocoDocd - PocoDocd - PocoDoc - PocoDoc - PocoDoc + <_ProjectFileVersion>11.0.61030.0 + PocoDocd + PocoDocd + PocoDocd + PocoDoc + PocoDoc + PocoDoc - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\CppParser\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\CppParser\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\CppParser\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/PocoDoc/PocoDoc_vs110.vcxproj.filters b/PocoDoc/PocoDoc_vs110.vcxproj.filters index 75ff278b9..a40c2390c 100644 --- a/PocoDoc/PocoDoc_vs110.vcxproj.filters +++ b/PocoDoc/PocoDoc_vs110.vcxproj.filters @@ -2,22 +2,22 @@ - {771853f0-e680-4f7b-b5ea-ea5d471ce1e3} + {35df9446-3a2d-467c-85b6-54ffb865ff90} - {8b7445d5-ed16-472a-9066-11ee333bb379} + {39810b93-2504-413b-bbdd-daec16fa57a9} - {83109a19-82b5-4f39-bfc4-47914f1c7272} + {e052b8bd-3608-4ee6-b644-0395c9357dfb} - {6596ce33-e8e8-4e9c-971b-9b8d0866d091} + {acd2a20d-9af5-4cbf-8d93-5178ba25defc} - {b85175f9-c1a7-4a44-8857-bb26f177c703} + {6d3fea2b-6d80-47e5-bf06-c4829306ca27} - {47b18104-e867-4a72-83e2-7442a5ec21b0} + {f633142b-cb2c-4ce7-8d4b-9f94d926bfb9} diff --git a/PocoDoc/PocoDoc_vs120.sln b/PocoDoc/PocoDoc_vs120.sln index d28fb8040..7539205ea 100644 --- a/PocoDoc/PocoDoc_vs120.sln +++ b/PocoDoc/PocoDoc_vs120.sln @@ -1,31 +1,35 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PocoDoc", "PocoDoc_vs120.vcxproj", "{18BCF3CC-9474-4D1C-9445-F783A49D886B}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_shared|Win32.ActiveCfg = release_shared|Win32 {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_shared|Win32.Build.0 = release_shared|Win32 - {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/PocoDoc/PocoDoc_vs120.vcxproj b/PocoDoc/PocoDoc_vs120.vcxproj index 003246879..c3e245cb4 100644 --- a/PocoDoc/PocoDoc_vs120.vcxproj +++ b/PocoDoc/PocoDoc_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ PocoDoc Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 PocoDocd PocoDocd PocoDocd @@ -111,6 +93,36 @@ PocoDoc PocoDoc + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,12 +304,12 @@ - - + + - + - - - \ No newline at end of file + + + diff --git a/PocoDoc/PocoDoc_vs120.vcxproj.filters b/PocoDoc/PocoDoc_vs120.vcxproj.filters index 75ff278b9..b510d924f 100644 --- a/PocoDoc/PocoDoc_vs120.vcxproj.filters +++ b/PocoDoc/PocoDoc_vs120.vcxproj.filters @@ -2,22 +2,22 @@ - {771853f0-e680-4f7b-b5ea-ea5d471ce1e3} + {b0059032-a146-46a4-b198-c8e12c22aa67} - {8b7445d5-ed16-472a-9066-11ee333bb379} + {0b04d129-ad50-475a-aef6-c8cdbbf3f57c} - {83109a19-82b5-4f39-bfc4-47914f1c7272} + {b21b9c8e-ec7b-4cdd-8af5-3bcb7c405c39} - {6596ce33-e8e8-4e9c-971b-9b8d0866d091} + {f8b9f87c-9729-4526-9396-6a5e68797599} - {b85175f9-c1a7-4a44-8857-bb26f177c703} + {cefc70c2-9109-4e51-a576-758a5b849ef7} - {47b18104-e867-4a72-83e2-7442a5ec21b0} + {ccd21948-095a-426b-a687-4446bc927049} diff --git a/PocoDoc/PocoDoc_x64_vs100.vcxproj b/PocoDoc/PocoDoc_x64_vs100.vcxproj index eb6975411..34aa3fa2e 100644 --- a/PocoDoc/PocoDoc_x64_vs100.vcxproj +++ b/PocoDoc/PocoDoc_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - PocoDocd - PocoDocd - PocoDocd - PocoDoc - PocoDoc - PocoDoc + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + PocoDocd + PocoDocd + PocoDocd + PocoDoc + PocoDoc + PocoDoc - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\CppParser\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\CppParser\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\CppParser\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/PocoDoc/PocoDoc_x64_vs100.vcxproj.filters b/PocoDoc/PocoDoc_x64_vs100.vcxproj.filters index 3e2286a8c..e1961a7e5 100644 --- a/PocoDoc/PocoDoc_x64_vs100.vcxproj.filters +++ b/PocoDoc/PocoDoc_x64_vs100.vcxproj.filters @@ -2,22 +2,22 @@ - {72496a5b-10d3-4fe5-bb78-eadadf59c695} + {665dd891-1231-4b79-939a-bfc657c9219f} - {4aab58a4-9133-4a18-996d-552a86cc6aa6} + {9c8a6dcf-1d4d-4e6b-893a-29c0b34820bf} - {bf215e3d-4c92-4b78-a9d1-ade0f77b10b6} + {89a7457c-6428-4014-a166-558c4b26c0bd} - {6d62310c-e85b-4790-958d-18815b7fa7bf} + {5d35f75e-f74e-4ee8-b565-41571383e6b4} - {f5178ae5-6258-405a-be96-115d7b1c21e5} + {64879f18-e62e-45e5-852f-6060637e73b3} - {d95a7ab8-2343-4b0b-a210-2c083e680f4d} + {131a3ece-1eb5-4dba-ae98-8a9fcd5295b0} diff --git a/PocoDoc/PocoDoc_x64_vs110.vcxproj b/PocoDoc/PocoDoc_x64_vs110.vcxproj index 21840201f..9a722b164 100644 --- a/PocoDoc/PocoDoc_x64_vs110.vcxproj +++ b/PocoDoc/PocoDoc_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - PocoDocd - PocoDocd - PocoDocd - PocoDoc - PocoDoc - PocoDoc + <_ProjectFileVersion>11.0.61030.0 + PocoDocd + PocoDocd + PocoDocd + PocoDoc + PocoDoc + PocoDoc - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\CppParser\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\CppParser\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;..\CppParser\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/PocoDoc/PocoDoc_x64_vs110.vcxproj.filters b/PocoDoc/PocoDoc_x64_vs110.vcxproj.filters index 21a15ebdb..4977e09e2 100644 --- a/PocoDoc/PocoDoc_x64_vs110.vcxproj.filters +++ b/PocoDoc/PocoDoc_x64_vs110.vcxproj.filters @@ -2,22 +2,22 @@ - {3212334a-241f-47aa-8f98-e7a327066448} + {a52503cf-4846-472e-848b-2a66183b1326} - {b3d6dc29-3fe1-4f7f-a5fb-4e1612d5a7af} + {851da554-d86e-49f4-9515-c227a7b3a7d0} - {1ff7bb56-51f6-4ba7-91dd-fb2832f2c725} + {46422457-11c5-4293-a174-b21ade8d8223} - {d5f6de71-c0fc-4ee2-a6ac-3bd10f795a8f} + {71aa6c65-f7bb-418f-ac0c-d7a4ca4571da} - {de1af46b-c71e-4a73-9779-19c13e36beef} + {0e8aa6cf-7f8c-4974-80e6-f2b1d95b40b6} - {cf907247-a214-4b39-8b8c-5f484136cc15} + {b13ed006-f292-4273-9d3f-ae9762d6424f} diff --git a/PocoDoc/PocoDoc_x64_vs120.sln b/PocoDoc/PocoDoc_x64_vs120.sln index 8e80f8013..95d80d1ee 100644 --- a/PocoDoc/PocoDoc_x64_vs120.sln +++ b/PocoDoc/PocoDoc_x64_vs120.sln @@ -1,31 +1,35 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PocoDoc", "PocoDoc_x64_vs120.vcxproj", "{18BCF3CC-9474-4D1C-9445-F783A49D886B}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_shared|x64.ActiveCfg = debug_shared|x64 {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_shared|x64.Build.0 = debug_shared|x64 - {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_shared|x64.Deploy.0 = debug_shared|x64 {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_shared|x64.ActiveCfg = release_shared|x64 {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_shared|x64.Build.0 = release_shared|x64 - {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_md|x64.Build.0 = release_static_md|x64 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_shared|x64.Deploy.0 = release_shared|x64 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_md|x64.Build.0 = release_static_md|x64 + {18BCF3CC-9474-4D1C-9445-F783A49D886B}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/PocoDoc/PocoDoc_x64_vs120.vcxproj b/PocoDoc/PocoDoc_x64_vs120.vcxproj index 59e94a4f8..f7f62499b 100644 --- a/PocoDoc/PocoDoc_x64_vs120.vcxproj +++ b/PocoDoc/PocoDoc_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ PocoDoc Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 PocoDocd PocoDocd PocoDocd @@ -111,6 +93,36 @@ PocoDoc PocoDoc + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,12 +304,12 @@ - - + + - + - - - \ No newline at end of file + + + diff --git a/PocoDoc/PocoDoc_x64_vs120.vcxproj.filters b/PocoDoc/PocoDoc_x64_vs120.vcxproj.filters index 21a15ebdb..9c67d5379 100644 --- a/PocoDoc/PocoDoc_x64_vs120.vcxproj.filters +++ b/PocoDoc/PocoDoc_x64_vs120.vcxproj.filters @@ -2,22 +2,22 @@ - {3212334a-241f-47aa-8f98-e7a327066448} + {d2e1a0be-ee5c-4140-987a-fcd2064d6c50} - {b3d6dc29-3fe1-4f7f-a5fb-4e1612d5a7af} + {8d4da573-aab6-4cd4-a693-0c807adcc7e2} - {1ff7bb56-51f6-4ba7-91dd-fb2832f2c725} + {24c4245e-e4ca-4d02-ada4-c6b913747769} - {d5f6de71-c0fc-4ee2-a6ac-3bd10f795a8f} + {88769fc4-9113-4dc3-aaca-a9f1d5b1988c} - {de1af46b-c71e-4a73-9779-19c13e36beef} + {65e980f2-2eea-4b91-b1c2-05b4940d7d92} - {cf907247-a214-4b39-8b8c-5f484136cc15} + {cac6b7e4-0023-460a-8062-00ca68dcf7b2} diff --git a/ProGen/ProGen_vs100.vcxproj b/ProGen/ProGen_vs100.vcxproj index 20a54b823..2fc9cb045 100644 --- a/ProGen/ProGen_vs100.vcxproj +++ b/ProGen/ProGen_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - progend - progend - progend - progen - progen - progen + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + progend + progend + progend + progen + progen + progen - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/ProGen/ProGen_vs100.vcxproj.filters b/ProGen/ProGen_vs100.vcxproj.filters index 88d09f803..20048a4d8 100644 --- a/ProGen/ProGen_vs100.vcxproj.filters +++ b/ProGen/ProGen_vs100.vcxproj.filters @@ -2,13 +2,13 @@ - {3b5b7a62-4da0-49a4-89e4-2a0076b0618e} + {92d832c8-b634-467c-90bf-4a2ff99b92d2} - {46a1f7da-0de8-4c19-aa12-e23e24280d58} + {ecb07171-c8ab-4792-8ceb-3385754a84e4} - {e376ea44-59b8-4547-8fa3-a709d7e242cd} + {34f1e9c2-5372-4240-9474-25f436f44e7c} diff --git a/ProGen/ProGen_vs110.vcxproj b/ProGen/ProGen_vs110.vcxproj index 3a2e62774..4a87e0951 100644 --- a/ProGen/ProGen_vs110.vcxproj +++ b/ProGen/ProGen_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - progend - progend - progend - progen - progen - progen + <_ProjectFileVersion>11.0.61030.0 + progend + progend + progend + progen + progen + progen - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/ProGen/ProGen_vs110.vcxproj.filters b/ProGen/ProGen_vs110.vcxproj.filters index eac24c938..28dc3a8df 100644 --- a/ProGen/ProGen_vs110.vcxproj.filters +++ b/ProGen/ProGen_vs110.vcxproj.filters @@ -2,13 +2,13 @@ - {f7f62bd0-d5a2-477b-8326-ba6b1b04196e} + {d75043a8-de01-400b-b711-081b63166a18} - {c6f2fb7b-8d31-4c49-805a-4dc2583a6df6} + {e9b43d86-38dd-40a5-a824-a9a80ea797f1} - {c2fc710b-cd32-4f8b-b1ae-106dba9a4a52} + {a3059927-141c-4f0a-9e24-006b875a7f39} diff --git a/ProGen/ProGen_vs120.sln b/ProGen/ProGen_vs120.sln index ab331729f..f06cf9c54 100644 --- a/ProGen/ProGen_vs120.sln +++ b/ProGen/ProGen_vs120.sln @@ -1,31 +1,35 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ProGen", "ProGen_vs120.vcxproj", "{48D690D9-6520-4F30-A298-3132548716D0}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {48D690D9-6520-4F30-A298-3132548716D0}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {48D690D9-6520-4F30-A298-3132548716D0}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {48D690D9-6520-4F30-A298-3132548716D0}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {48D690D9-6520-4F30-A298-3132548716D0}.release_shared|Win32.ActiveCfg = release_shared|Win32 {48D690D9-6520-4F30-A298-3132548716D0}.release_shared|Win32.Build.0 = release_shared|Win32 - {48D690D9-6520-4F30-A298-3132548716D0}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {48D690D9-6520-4F30-A298-3132548716D0}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {48D690D9-6520-4F30-A298-3132548716D0}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {48D690D9-6520-4F30-A298-3132548716D0}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {48D690D9-6520-4F30-A298-3132548716D0}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {48D690D9-6520-4F30-A298-3132548716D0}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {48D690D9-6520-4F30-A298-3132548716D0}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {48D690D9-6520-4F30-A298-3132548716D0}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {48D690D9-6520-4F30-A298-3132548716D0}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/ProGen/ProGen_vs120.vcxproj b/ProGen/ProGen_vs120.vcxproj index 21ee0dc68..58c547ebf 100644 --- a/ProGen/ProGen_vs120.vcxproj +++ b/ProGen/ProGen_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ ProGen Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 progend progend progend @@ -111,6 +93,36 @@ progen progen + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,15 +304,15 @@ - + - - + + - + - - - \ No newline at end of file + + + diff --git a/ProGen/ProGen_vs120.vcxproj.filters b/ProGen/ProGen_vs120.vcxproj.filters index eac24c938..bfc4dda13 100644 --- a/ProGen/ProGen_vs120.vcxproj.filters +++ b/ProGen/ProGen_vs120.vcxproj.filters @@ -2,13 +2,13 @@ - {f7f62bd0-d5a2-477b-8326-ba6b1b04196e} + {3e0ff149-e0a3-44c2-9a9a-c1d19d185f34} - {c6f2fb7b-8d31-4c49-805a-4dc2583a6df6} + {f161cc65-98f2-4df2-b940-d48d1d0f171d} - {c2fc710b-cd32-4f8b-b1ae-106dba9a4a52} + {4be0ad49-e949-4e4c-b79c-0252a1bae5b3} diff --git a/ProGen/ProGen_x64_vs100.vcxproj b/ProGen/ProGen_x64_vs100.vcxproj index 2b27bcae9..e3e60a743 100644 --- a/ProGen/ProGen_x64_vs100.vcxproj +++ b/ProGen/ProGen_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - progend - progend - progend - progen - progen - progen + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + progend + progend + progend + progen + progen + progen - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/ProGen/ProGen_x64_vs100.vcxproj.filters b/ProGen/ProGen_x64_vs100.vcxproj.filters index 249fa8a37..a981020e7 100644 --- a/ProGen/ProGen_x64_vs100.vcxproj.filters +++ b/ProGen/ProGen_x64_vs100.vcxproj.filters @@ -2,13 +2,13 @@ - {92325169-0f56-406b-8509-7ac0e29747bc} + {4c5702e2-9e80-4237-98e8-18b334a38396} - {92d9cea6-eae8-4c5b-891f-9566f74b7ec9} + {517b5dc8-8ebc-4081-a57c-044fdae798a4} - {7e64c9ea-c02e-439a-8927-b3833d083d56} + {a03d0760-cfdb-4f9a-abda-a60d0ce0bea6} diff --git a/ProGen/ProGen_x64_vs110.vcxproj b/ProGen/ProGen_x64_vs110.vcxproj index 20cdec254..532f3554c 100644 --- a/ProGen/ProGen_x64_vs110.vcxproj +++ b/ProGen/ProGen_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - progend - progend - progend - progen - progen - progen + <_ProjectFileVersion>11.0.61030.0 + progend + progend + progend + progen + progen + progen - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\XML\include;..\Util\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/ProGen/ProGen_x64_vs110.vcxproj.filters b/ProGen/ProGen_x64_vs110.vcxproj.filters index c4aba860d..fdabf4fde 100644 --- a/ProGen/ProGen_x64_vs110.vcxproj.filters +++ b/ProGen/ProGen_x64_vs110.vcxproj.filters @@ -2,13 +2,13 @@ - {f3f03781-81b7-4c0f-be83-f2f8a475d7b3} + {8d2b4c9b-0812-4698-9a6f-19ec60ba4fb5} - {0c813b4e-1010-4f79-ac2d-c902b838d4eb} + {80ad7c1c-15b5-4183-92d0-db623644d434} - {a9e3c43d-ef42-419e-ae16-77a148842726} + {600158f2-3726-4e0e-9451-5adf0696c823} diff --git a/ProGen/ProGen_x64_vs120.sln b/ProGen/ProGen_x64_vs120.sln index 90da6d360..fff174d89 100644 --- a/ProGen/ProGen_x64_vs120.sln +++ b/ProGen/ProGen_x64_vs120.sln @@ -1,31 +1,35 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ProGen", "ProGen_x64_vs120.vcxproj", "{48D690D9-6520-4F30-A298-3132548716D0}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {48D690D9-6520-4F30-A298-3132548716D0}.debug_shared|x64.ActiveCfg = debug_shared|x64 {48D690D9-6520-4F30-A298-3132548716D0}.debug_shared|x64.Build.0 = debug_shared|x64 - {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {48D690D9-6520-4F30-A298-3132548716D0}.debug_shared|x64.Deploy.0 = debug_shared|x64 {48D690D9-6520-4F30-A298-3132548716D0}.release_shared|x64.ActiveCfg = release_shared|x64 {48D690D9-6520-4F30-A298-3132548716D0}.release_shared|x64.Build.0 = release_shared|x64 - {48D690D9-6520-4F30-A298-3132548716D0}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {48D690D9-6520-4F30-A298-3132548716D0}.release_static_md|x64.Build.0 = release_static_md|x64 + {48D690D9-6520-4F30-A298-3132548716D0}.release_shared|x64.Deploy.0 = release_shared|x64 + {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {48D690D9-6520-4F30-A298-3132548716D0}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {48D690D9-6520-4F30-A298-3132548716D0}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {48D690D9-6520-4F30-A298-3132548716D0}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {48D690D9-6520-4F30-A298-3132548716D0}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {48D690D9-6520-4F30-A298-3132548716D0}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {48D690D9-6520-4F30-A298-3132548716D0}.release_static_md|x64.Build.0 = release_static_md|x64 + {48D690D9-6520-4F30-A298-3132548716D0}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/ProGen/ProGen_x64_vs120.vcxproj b/ProGen/ProGen_x64_vs120.vcxproj index 1ce323dc8..62d21c6fc 100644 --- a/ProGen/ProGen_x64_vs120.vcxproj +++ b/ProGen/ProGen_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ ProGen Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 progend progend progend @@ -111,6 +93,36 @@ progen progen + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,15 +304,15 @@ - + - - + + - + - - - \ No newline at end of file + + + diff --git a/ProGen/ProGen_x64_vs120.vcxproj.filters b/ProGen/ProGen_x64_vs120.vcxproj.filters index c4aba860d..a301d52f2 100644 --- a/ProGen/ProGen_x64_vs120.vcxproj.filters +++ b/ProGen/ProGen_x64_vs120.vcxproj.filters @@ -2,13 +2,13 @@ - {f3f03781-81b7-4c0f-be83-f2f8a475d7b3} + {74ab5f7a-4343-4c05-8f99-b58af77b0893} - {0c813b4e-1010-4f79-ac2d-c902b838d4eb} + {27b4a188-79e6-4691-bad7-adaa61062307} - {a9e3c43d-ef42-419e-ae16-77a148842726} + {3c69cbbf-bab5-4e56-ac58-f5842bff57af} diff --git a/SevenZip/SevenZip_WEC2013_vs110.vcxproj b/SevenZip/SevenZip_WEC2013_vs110.vcxproj index 034f92c2d..24f6cce2a 100644 --- a/SevenZip/SevenZip_WEC2013_vs110.vcxproj +++ b/SevenZip/SevenZip_WEC2013_vs110.vcxproj @@ -1,6 +1,268 @@ + + debug_shared + SDK_AM335X_SK_WEC2013 + + + debug_static_md + SDK_AM335X_SK_WEC2013 + + + debug_static_mt + SDK_AM335X_SK_WEC2013 + + + release_shared + SDK_AM335X_SK_WEC2013 + + + release_static_md + SDK_AM335X_SK_WEC2013 + + + release_static_mt + SDK_AM335X_SK_WEC2013 + + + + SevenZip + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D} + en-US + 11.0 + true + SDK_AM335X_SK_WEC2013 + CE800 + + + + StaticLibrary + Unicode + CE800 + + + StaticLibrary + Unicode + CE800 + + + StaticLibrary + Unicode + CE800 + + + StaticLibrary + Unicode + CE800 + + + DynamicLibrary + Unicode + CE800 + + + DynamicLibrary + Unicode + CE800 + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>11.0.61030.0 + PocoSevenZipd + PocoSevenZipmdd + PocoSevenZipmtd + PocoSevenZip + PocoSevenZipmd + PocoSevenZipmt + + + ..\bin\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + true + true + + + ..\bin\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + false + true + + + ..\lib\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + + + ..\lib\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + + + ..\lib\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + + + ..\lib\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + _DEBUG;$(ProjectName)_EXPORTS;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;SevenZip_EXPORTS;%(PreprocessorDefinitions) + true + false + MultiThreadedDebugDLL + true + true + Level3 + ProgramDatabase + 4244;4267;%(DisableSpecificWarnings) + + + ..\bin\$(Platform)\PocoSevenZipd.dll + ..\lib\$(Platform);%(AdditionalLibraryDirectories) + true + ..\bin\$(Platform)\PocoSevenZipd.pdb + + + ..\lib\$(Platform)\PocoSevenZipd.lib + WindowsCE + + + + + Disabled + true + Speed + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + NDEBUG;$(ProjectName)_EXPORTS;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;SevenZip_EXPORTS;%(PreprocessorDefinitions) + true + false + MultiThreadedDLL + false + true + Level3 + ProgramDatabase + 4244;4267;%(DisableSpecificWarnings) + + + ..\bin\$(Platform)\PocoSevenZip.dll + ..\lib\$(Platform);%(AdditionalLibraryDirectories) + false + + + + ..\lib\$(Platform)\PocoSevenZip.lib + WindowsCE + + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + _DEBUG;POCO_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + false + MultiThreadedDebug + true + true + + ..\lib\$(Platform)\PocoSevenZipmtd.pdb + Level3 + ProgramDatabase + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib\$(Platform)\PocoSevenZipmtd.lib + + + + + Disabled + true + Speed + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + NDEBUG;POCO_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + false + MultiThreaded + false + true + + Level3 + ProgramDatabase + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib\$(Platform)\PocoSevenZipmt.lib + + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + _DEBUG;POCO_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + false + MultiThreadedDebugDLL + true + true + + ..\lib\$(Platform)\PocoSevenZipmdd.pdb + Level3 + ProgramDatabase + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib\$(Platform)\PocoSevenZipmdd.lib + + + + + Disabled + true + Speed + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + NDEBUG;POCO_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + false + MultiThreadedDLL + false + true + + Level3 + ProgramDatabase + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib\$(Platform)\PocoSevenZipmd.lib + + + @@ -17,29 +279,6 @@ - - SevenZip - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D} - en-US - 11.0 - true - SDK_AM335X_SK_WEC2013 - CE800 - - - - - - - <_ProjectFileVersion>11.0.61030.0 - PocoSevenZipd - PocoSevenZipmdd - PocoSevenZipmtd - PocoSevenZip - PocoSevenZipmd - PocoSevenZipmt - - @@ -62,7 +301,14 @@ - + + true + true + true + true + true + true + diff --git a/SevenZip/SevenZip_WEC2013_vs110.vcxproj.filters b/SevenZip/SevenZip_WEC2013_vs110.vcxproj.filters index 5b0fdd0fc..1ec0b3612 100644 --- a/SevenZip/SevenZip_WEC2013_vs110.vcxproj.filters +++ b/SevenZip/SevenZip_WEC2013_vs110.vcxproj.filters @@ -2,31 +2,31 @@ - {88f347b4-6e07-443a-8fd3-094763e9ac9e} + {ae7c51fb-5858-4943-ae8c-683d5f5e5fe5} - {572a2575-8b6e-4e4d-8ba1-2ad18152d78a} + {145511f5-c627-43c1-be73-17b99a5b50e6} - {a9bff62c-1833-4b54-b1a1-3f29d97146b8} + {0a0b6ae9-49ae-4890-873f-70a4ae04a6d2} - {de698b45-d55a-4d3f-91a2-5d66cf2633b4} + {84756f60-652b-4354-98b9-953351d768a8} - {97e46837-030c-4913-8d42-35bb3a394a8c} + {b5be1d14-056e-48a2-9bfe-07122c1024e0} - {72f5279f-55a3-4103-a84c-ab87eacf1435} + {bc79ba36-3c5c-4d29-8593-4b0c38c7cbad} - {a0f086a8-428e-432b-8690-36e12cf29483} + {0696f567-520d-4c46-bb7f-a474c541d5ac} - {111bf822-127a-49ce-b64f-80b62ed898f7} + {24f0bb20-708a-49cc-a82e-03c65ac83d67} - {b919a5ff-cd52-4e77-8c39-dba143f67103} + {e1eb9883-b62e-4863-8b58-0b399a153ddb} diff --git a/SevenZip/SevenZip_vs100.vcxproj.filters b/SevenZip/SevenZip_vs100.vcxproj.filters index b4a27bf85..1ef03a4cb 100644 --- a/SevenZip/SevenZip_vs100.vcxproj.filters +++ b/SevenZip/SevenZip_vs100.vcxproj.filters @@ -2,31 +2,31 @@ - {c394c8cd-d896-4af1-952d-783a536cdaa1} + {6ee1d2f6-1c62-44f7-b3ad-742fa077fc88} - {a7b29a14-4292-4945-bca9-713e02e21fd5} + {c6376506-e205-4909-a558-a2f926fc8cdb} - {11f20fad-95b6-4629-9fe9-5a3cb49e541f} + {31caa056-4ac5-4582-988f-686a8a7738d6} - {6697ff82-bc58-408b-8f15-07e013aa6f96} + {fbe74a48-7c34-4631-aa0c-1493d2dd20bf} - {338a0879-99b5-4805-98cc-9927c34348a7} + {28753c5e-f177-4859-a348-e45ecc2e21c8} - {6ec3ce11-1713-4037-9c99-8582b0e12276} + {db0b7225-9f79-4d8e-8bb5-b7ceae714812} - {859bcb12-e7bd-4899-980e-8c9f15d9c031} + {8fb79113-de0a-44bf-9d27-adb941567324} - {38bb27b5-c2d5-4c81-b5a4-8e95a62ceda1} + {a8c2a14e-5dda-417a-8ac7-c5f1f2e80fa5} - {8bf160ee-73f5-4458-a422-35e9fc0a3e23} + {a68ce0e0-3e0f-455c-82e8-371bf6e797e3} diff --git a/SevenZip/SevenZip_vs110.vcxproj b/SevenZip/SevenZip_vs110.vcxproj index c7e6bec98..e8ebc8fb6 100644 --- a/SevenZip/SevenZip_vs110.vcxproj +++ b/SevenZip/SevenZip_vs110.vcxproj @@ -35,37 +35,31 @@ StaticLibrary - v110 MultiByte v110 StaticLibrary - v110 MultiByte v110 StaticLibrary - v110 MultiByte v110 StaticLibrary - v110 MultiByte v110 DynamicLibrary - v110 MultiByte v110 DynamicLibrary - v110 MultiByte v110 diff --git a/SevenZip/SevenZip_vs110.vcxproj.filters b/SevenZip/SevenZip_vs110.vcxproj.filters index 365f01710..7d8e2e968 100644 --- a/SevenZip/SevenZip_vs110.vcxproj.filters +++ b/SevenZip/SevenZip_vs110.vcxproj.filters @@ -2,31 +2,31 @@ - {5eb804fd-0811-48c2-a7a7-a74b81785e24} + {26a9922c-89f5-402b-8ffb-32860daad2b8} - {d8cd646f-3bd2-44c2-a01f-bdb60c581331} + {605f706d-d6be-40fd-8b1b-b8f79f46c470} - {d3c2efc4-baf5-4cf6-a7d2-52d424cea902} + {beb77a1b-6c22-4fe7-9d85-f873813aa5ad} - {ad200a41-28d5-483c-bc37-8babfb0c7a14} + {676f4f9f-2168-4203-94bf-6174b37fa998} - {41099b20-80c3-4c30-940a-0ae03b859324} + {eef4c2d6-ae7a-4d14-ad38-99022139ae6f} - {238bfbcd-3b6f-4068-bb9b-7ea6228afcf0} + {d20f7164-9c9c-44dd-9499-a536c8f22d61} - {e8e78b28-e848-4780-883d-82a250141c1c} + {9889f1bd-8880-4dbd-a6ad-ecfee2927992} - {bf7f54e6-114b-4068-baa7-263f63ad91e3} + {2aece944-3d31-44b3-b334-f111c2824a8b} - {5e1fab1e-e365-4108-9890-37ef49415596} + {327e2c48-aca1-4e61-9074-4c48cd99e893} diff --git a/SevenZip/SevenZip_vs120.vcxproj b/SevenZip/SevenZip_vs120.vcxproj index f5cf69a52..a08d6369d 100644 --- a/SevenZip/SevenZip_vs120.vcxproj +++ b/SevenZip/SevenZip_vs120.vcxproj @@ -1,5 +1,5 @@ - + debug_shared @@ -35,37 +35,31 @@ StaticLibrary - v120 MultiByte v120 StaticLibrary - v120 MultiByte v120 StaticLibrary - v120 MultiByte v120 StaticLibrary - v120 MultiByte v120 DynamicLibrary - v120 MultiByte v120 DynamicLibrary - v120 MultiByte v120 @@ -91,7 +85,7 @@ - <_ProjectFileVersion>12.0.21005.1 + <_ProjectFileVersion>11.0.61030.0 PocoSevenZipd PocoSevenZipmdd PocoSevenZipmtd diff --git a/SevenZip/SevenZip_vs120.vcxproj.filters b/SevenZip/SevenZip_vs120.vcxproj.filters index 36ce3de17..640898f55 100644 --- a/SevenZip/SevenZip_vs120.vcxproj.filters +++ b/SevenZip/SevenZip_vs120.vcxproj.filters @@ -2,31 +2,31 @@ - {3bb5ed73-1b44-40f2-8a63-bbadc43c20a5} + {e42fd7ad-e74b-4c08-8df9-a6ed7239f0e8} - {cba1dc79-7628-4ab6-926d-4fe74658c889} + {bd879882-b904-4454-acea-5ddbe794fe67} - {96af9a72-d0a4-49ea-9fd6-31e0e9afa659} + {c54db6a6-a28a-4225-a11c-6d49017c3183} - {1a903c52-41e5-48c1-8738-d40f327f2e3f} + {263bf051-ff19-4c9c-a34b-5b486d53a92b} - {adaf4d5a-29ec-4a61-8359-b49e84509564} + {e6495494-0858-4023-9e3c-9255701c443d} - {cc3b0ce8-02d9-4f5b-ac41-459746b92ad3} + {fc6fadd2-f618-4f73-9bfc-8dbfb4055c7d} - {9469de9d-c276-4bc5-88be-95f80ad1bd37} + {0ae85aa4-587c-4dd3-a9e9-ba371320cd95} - {800c6f1f-cc82-4f0f-9677-d4134ef3006c} + {36a2fc6e-4d7b-409b-9602-1926b6a958f1} - {79996b65-5ab4-4c51-95ab-a9dd6d38466b} + {bedbe5bf-386d-41e0-aa9a-838a35f3a758} diff --git a/SevenZip/SevenZip_x64_vs100.vcxproj.filters b/SevenZip/SevenZip_x64_vs100.vcxproj.filters index da4bf0dda..c627e86b6 100644 --- a/SevenZip/SevenZip_x64_vs100.vcxproj.filters +++ b/SevenZip/SevenZip_x64_vs100.vcxproj.filters @@ -2,31 +2,31 @@ - {d6613904-ec91-4dd6-8933-00b33fdf12a4} + {d0fdab13-e26a-43e2-98c3-fa8e8a81f97a} - {53abb692-7bf5-4958-85c2-92870f40e7ae} + {3a8482be-af8a-4fe5-ab1b-40490bdbe450} - {b5f20620-6773-432c-8c30-55f01c1365b7} + {709e485d-f314-407f-ba06-6d76dc16256f} - {cecd4b72-ad5c-40ab-957a-3e9ece59f853} + {e19cbb81-d587-43f8-90ea-609043f9d574} - {267c86b6-8ce6-4003-90c0-4a2f637802e7} + {8a3742e6-a6ad-4361-a6bb-a379789fc57e} - {aaec9809-4479-4e86-b6eb-74801bf6aedf} + {c37d4e73-270d-41f3-a506-89e054f06d12} - {8dcb9c7a-43a8-4362-8b4d-629bc435e3d9} + {4e0662f8-5669-42e3-aab4-4f7e35c4930f} - {565cc784-5d62-463f-9125-b9b347c2246e} + {3893dd36-2db1-45ff-920c-d55100bb7846} - {ca86a13a-6831-487d-873d-ae166fb6f7d6} + {6d00a762-639c-41b9-9513-270b8073280c} diff --git a/SevenZip/SevenZip_x64_vs110.vcxproj b/SevenZip/SevenZip_x64_vs110.vcxproj index 13149e75a..e06937c1b 100644 --- a/SevenZip/SevenZip_x64_vs110.vcxproj +++ b/SevenZip/SevenZip_x64_vs110.vcxproj @@ -35,37 +35,31 @@ StaticLibrary - v110 MultiByte v110 StaticLibrary - v110 MultiByte v110 StaticLibrary - v110 MultiByte v110 StaticLibrary - v110 MultiByte v110 DynamicLibrary - v110 MultiByte v110 DynamicLibrary - v110 MultiByte v110 diff --git a/SevenZip/SevenZip_x64_vs110.vcxproj.filters b/SevenZip/SevenZip_x64_vs110.vcxproj.filters index 7687dec47..7fca64e86 100644 --- a/SevenZip/SevenZip_x64_vs110.vcxproj.filters +++ b/SevenZip/SevenZip_x64_vs110.vcxproj.filters @@ -2,31 +2,31 @@ - {4a1c9bea-8efc-4cc0-b0a4-fb9c8af1b63e} + {408ad738-7969-41fe-ad9d-698769081d0b} - {e67763b3-e377-455a-a9ed-6e02fe07464c} + {6c423ca9-bf4b-4050-8fca-6ab5fc416c88} - {4258e001-f7d0-40ea-8df1-2ab3e0fe30a8} + {fe263f95-196d-4204-8436-1cd39902cd74} - {ea479ca2-9a4a-4189-b25e-e49ab085bce8} + {2743b4ce-826a-4d15-bf40-7c5e30274539} - {db588e23-ca04-4eb7-b7dd-2968def3dd08} + {90677a9a-c34d-4d09-bdab-58b0d7af7abb} - {e3384b69-19be-417b-be8b-3e240ff62538} + {96f13c25-dc41-4704-a17a-ab8d9f41ca54} - {707911c6-aea3-4bff-8561-2133d4d5efc5} + {c3b82ef9-8b18-4d70-8611-496c89819e07} - {12fd0731-f2b8-498b-abb8-14c3732f3773} + {bdbcf3ea-6f7e-438c-b878-cc691624a027} - {070ce2de-2afe-44d8-9450-1465fbc0bf51} + {174bb444-d999-4d5e-89c7-e8200fb8b74b} diff --git a/SevenZip/SevenZip_x64_vs120.vcxproj b/SevenZip/SevenZip_x64_vs120.vcxproj index 0b1b9edb3..ffde8643e 100644 --- a/SevenZip/SevenZip_x64_vs120.vcxproj +++ b/SevenZip/SevenZip_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - + debug_shared @@ -35,37 +35,31 @@ StaticLibrary - v120 MultiByte v120 StaticLibrary - v120 MultiByte v120 StaticLibrary - v120 MultiByte v120 StaticLibrary - v120 MultiByte v120 DynamicLibrary - v120 MultiByte v120 DynamicLibrary - v120 MultiByte v120 @@ -91,7 +85,7 @@ - <_ProjectFileVersion>12.0.21005.1 + <_ProjectFileVersion>11.0.61030.0 PocoSevenZip64d PocoSevenZipmdd PocoSevenZipmtd diff --git a/SevenZip/SevenZip_x64_vs120.vcxproj.filters b/SevenZip/SevenZip_x64_vs120.vcxproj.filters index 63d6e8262..2aa034bba 100644 --- a/SevenZip/SevenZip_x64_vs120.vcxproj.filters +++ b/SevenZip/SevenZip_x64_vs120.vcxproj.filters @@ -2,31 +2,31 @@ - {4305dacf-c55e-4e41-9fc3-edb4c088ade4} + {0ff06b23-d6f2-4ee8-a76d-82d3183d42c6} - {612b9d98-7e3f-44e0-b9e4-4680d809866c} + {ac196216-62a0-49e4-8191-352e396e247a} - {bde7ee3c-2ac6-4f58-8fbc-3b119d8421d0} + {98c386c2-2a65-4e2e-a4bb-2b5ac32634eb} - {2dc799a1-fc80-4a73-8a67-766433b75133} + {53e81ba6-a23e-43b9-84f7-bf3edac3860c} - {35de3797-1542-4f80-a9aa-17e96ebe2b5a} + {e73d76fd-ed25-455e-b122-ce133d4e9c33} - {edc8bbb0-8272-44a9-876c-93d57469d898} + {fdaddb67-9dfc-46a0-ae6e-36d1f836a485} - {b9e72409-e964-4ce7-89a0-2d1bf40e1a36} + {c8b58bb6-a586-49f5-91a8-22e9012ded41} - {2db99fd9-9671-4bfe-9faa-e276fe949dd8} + {d615fb0b-ad87-407e-98eb-d8571f482a63} - {b4e96f37-1d49-4e37-9cd2-2288f747a7b7} + {237e4f8e-0554-4852-bbb6-f710cac7b892} diff --git a/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj b/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj index f09932f0a..db530019b 100644 --- a/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj +++ b/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj @@ -1,7 +1,30 @@ - + + debug_shared + SDK_AM335X_SK_WEC2013 + + + debug_static_md + SDK_AM335X_SK_WEC2013 + + + debug_static_mt + SDK_AM335X_SK_WEC2013 + + + release_shared + SDK_AM335X_SK_WEC2013 + + + release_static_md + SDK_AM335X_SK_WEC2013 + + + release_static_mt + SDK_AM335X_SK_WEC2013 + un7zip @@ -13,8 +36,56 @@ CE800 + + Application + Unicode + CE800 + + + Application + Unicode + CE800 + + + Application + Unicode + CE800 + + + Application + Unicode + CE800 + + + Application + Unicode + CE800 + + + Application + Unicode + CE800 + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>11.0.61030.0 @@ -25,8 +96,199 @@ un7zip un7zip - - + + bin\$(Platform)\shared\ + obj\$(Platform)\$(Configuration)\ + true + + + bin\$(Platform)\shared\ + obj\$(Platform)\$(Configuration)\ + false + + + bin\$(Platform)\static_mt\ + obj\$(Platform)\$(Configuration)\ + true + + + bin\$(Platform)\static_mt\ + obj\$(Platform)\$(Configuration)\ + false + + + bin\$(Platform)\static_md\ + obj\$(Platform)\$(Configuration)\ + true + + + bin\$(Platform)\static_md\ + obj\$(Platform)\$(Configuration)\ + false + + + + Disabled + ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + false + MultiThreadedDebugDLL + true + true + + Level3 + ProgramDatabase + Default + + + bin\$(Platform)\shared\un7zipd.exe + ..\..\..\lib\$(Platform);%(AdditionalLibraryDirectories) + true + bin\$(Platform)\shared\un7zipd.pdb + WindowsCE + wmainCRTStartup + + + + + Disabled + true + Speed + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + NDEBUG;$(ProjectName)_EXPORTS;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + false + MultiThreadedDLL + false + true + Level3 + ProgramDatabase + + + bin\$(Platform)\shared\un7zip.exe + ..\..\..\lib\$(Platform);%(AdditionalLibraryDirectories) + false + + true + true + WindowsCE + wmainCRTStartup + + + + + Disabled + ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + _DEBUG;POCO_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + false + MultiThreadedDebug + true + true + + Level3 + ProgramDatabase + Default + + + iphlpapi.lib;%(AdditionalDependencies) + bin\$(Platform)\static_mt\un7zipd.exe + ..\..\..\lib\$(Platform);%(AdditionalLibraryDirectories) + true + bin\$(Platform)\static_mt\un7zipd.pdb + WindowsCE + wmainCRTStartup + + + + + Disabled + Default + true + Speed + ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + NDEBUG;POCO_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + false + MultiThreaded + false + true + + Level3 + ProgramDatabase + Default + + + iphlpapi.lib;%(AdditionalDependencies) + bin\$(Platform)\static_mt\un7zip.exe + ..\..\..\lib\$(Platform);%(AdditionalLibraryDirectories) + false + + true + true + WindowsCE + wmainCRTStartup + + + + + Disabled + ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + _DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + false + MultiThreadedDebugDLL + true + true + + Level3 + ProgramDatabase + Default + + + iphlpapi.lib;%(AdditionalDependencies) + bin\$(Platform)\static_md\un7zipd.exe + ..\..\..\lib\$(Platform);%(AdditionalLibraryDirectories) + true + bin\$(Platform)\static_md\un7zipd.pdb + WindowsCE + wmainCRTStartup + + + + + Disabled + Default + true + Speed + ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + NDEBUG;POCO_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + false + MultiThreadedDLL + false + true + + Level3 + ProgramDatabase + Default + + + iphlpapi.lib;%(AdditionalDependencies) + bin\$(Platform)\static_md\un7zip.exe + ..\..\..\lib\$(Platform);%(AdditionalLibraryDirectories) + false + + true + true + WindowsCE + wmainCRTStartup + + + + + diff --git a/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj.filters b/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj.filters index 48743573d..499bb036a 100644 --- a/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj.filters +++ b/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {6c37317f-b6ac-4627-b172-4d818891978c} + {9c57ffb1-8c63-4d2e-908d-ce0b90f07708} - {f25f2ce7-db9c-4e96-8f1b-32ad6dd04897} + {6cedcc0e-82f8-47a4-99b2-41b4967c2fa0} diff --git a/SevenZip/samples/un7zip/un7zip_vs100.vcxproj.filters b/SevenZip/samples/un7zip/un7zip_vs100.vcxproj.filters index 2d7f00acd..c8ee9c3e0 100644 --- a/SevenZip/samples/un7zip/un7zip_vs100.vcxproj.filters +++ b/SevenZip/samples/un7zip/un7zip_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {e6d6da08-abaf-444e-9126-f2e45ff189b0} + {d5737612-8f66-495f-b5dd-a992ce311031} - {be064873-a883-419f-ad29-611ddaf30cba} + {a13b5353-1d17-4231-8fbb-400ab083f11b} diff --git a/SevenZip/samples/un7zip/un7zip_vs110.vcxproj b/SevenZip/samples/un7zip/un7zip_vs110.vcxproj index 9a2504f86..ca3673956 100644 --- a/SevenZip/samples/un7zip/un7zip_vs110.vcxproj +++ b/SevenZip/samples/un7zip/un7zip_vs110.vcxproj @@ -35,37 +35,31 @@ Application - v110 MultiByte v110 Application - v110 MultiByte v110 Application - v110 MultiByte v110 Application - v110 MultiByte v110 Application - v110 MultiByte v110 Application - v110 MultiByte v110 diff --git a/SevenZip/samples/un7zip/un7zip_vs110.vcxproj.filters b/SevenZip/samples/un7zip/un7zip_vs110.vcxproj.filters index 81079ef16..94b28c7e2 100644 --- a/SevenZip/samples/un7zip/un7zip_vs110.vcxproj.filters +++ b/SevenZip/samples/un7zip/un7zip_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {edb0a6a4-7af8-494d-9883-7cc2ade4fb52} + {aa400e99-38da-4510-a178-89514ae3164e} - {894805cb-5fea-4000-ac63-2f8668254176} + {6b038e88-f83f-4aee-b033-3b2095da933a} diff --git a/SevenZip/samples/un7zip/un7zip_vs120.vcxproj b/SevenZip/samples/un7zip/un7zip_vs120.vcxproj index 28da3980c..60c3a6928 100644 --- a/SevenZip/samples/un7zip/un7zip_vs120.vcxproj +++ b/SevenZip/samples/un7zip/un7zip_vs120.vcxproj @@ -1,5 +1,5 @@ - + debug_shared @@ -35,37 +35,31 @@ Application - v120 MultiByte v120 Application - v120 MultiByte v120 Application - v120 MultiByte v120 Application - v120 MultiByte v120 Application - v120 MultiByte v120 Application - v120 MultiByte v120 @@ -91,7 +85,7 @@ - <_ProjectFileVersion>12.0.21005.1 + <_ProjectFileVersion>11.0.61030.0 un7zipd un7zipd un7zipd diff --git a/SevenZip/samples/un7zip/un7zip_vs120.vcxproj.filters b/SevenZip/samples/un7zip/un7zip_vs120.vcxproj.filters index d1d8a5e28..475282182 100644 --- a/SevenZip/samples/un7zip/un7zip_vs120.vcxproj.filters +++ b/SevenZip/samples/un7zip/un7zip_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {ab954481-9d05-487e-b127-8bc5b902eb59} + {d527b881-bac4-4bd8-a4c4-f15f1b7f739d} - {14886f14-675b-4a26-a87b-1fb794be3631} + {9bfaa4be-e209-4987-b504-5c06bf95bca5} diff --git a/SevenZip/samples/un7zip/un7zip_x64_vs100.vcxproj.filters b/SevenZip/samples/un7zip/un7zip_x64_vs100.vcxproj.filters index e2dbb482b..f4f714c1b 100644 --- a/SevenZip/samples/un7zip/un7zip_x64_vs100.vcxproj.filters +++ b/SevenZip/samples/un7zip/un7zip_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {fd6c208e-fea0-4534-afbe-10cd2ce93a43} + {5ff0f6d3-78cc-42ef-abab-62e1f8287147} - {e5cfcd23-a1bb-4c50-a9fa-b298d781aa0e} + {70081758-1dd7-43c6-b461-a2b58bffcdd8} diff --git a/SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj b/SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj index d91db7c7f..f97b46b6e 100644 --- a/SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj +++ b/SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj @@ -35,37 +35,31 @@ Application - v110 MultiByte v110 Application - v110 MultiByte v110 Application - v110 MultiByte v110 Application - v110 MultiByte v110 Application - v110 MultiByte v110 Application - v110 MultiByte v110 diff --git a/SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj.filters b/SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj.filters index 3624db875..ea96d711e 100644 --- a/SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj.filters +++ b/SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {c776dd75-3e91-49b1-9282-50e12704204b} + {9f63f3bf-5536-4031-a698-39886aa40cb7} - {e9e30819-25ed-4823-a549-c43cbeeb17fe} + {0a8aeed3-83d1-4be4-8b3e-3c5f2e7d039e} diff --git a/SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj b/SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj index ce6004a56..6ceb4c5e2 100644 --- a/SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj +++ b/SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - + debug_shared @@ -35,37 +35,31 @@ Application - v120 MultiByte v120 Application - v120 MultiByte v120 Application - v120 MultiByte v120 Application - v120 MultiByte v120 Application - v120 MultiByte v120 Application - v120 MultiByte v120 @@ -91,7 +85,7 @@ - <_ProjectFileVersion>12.0.21005.1 + <_ProjectFileVersion>11.0.61030.0 un7zipd un7zipd un7zipd diff --git a/SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj.filters b/SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj.filters index 13b8067a9..75f9395e0 100644 --- a/SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj.filters +++ b/SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {834f463e-46a7-457d-992e-aed8876fdb90} + {819f668f-0ac2-474d-a42b-1404d6dbc217} - {f22ea72a-283d-42e5-9934-61c4baebdc4d} + {d38713fa-73a8-4f63-829b-5b365a0810ad} diff --git a/Util/Util_WEC2013_vs110.vcxproj.filters b/Util/Util_WEC2013_vs110.vcxproj.filters index 571f73302..def83fbc2 100644 --- a/Util/Util_WEC2013_vs110.vcxproj.filters +++ b/Util/Util_WEC2013_vs110.vcxproj.filters @@ -2,58 +2,58 @@ - {7349ff26-6831-4b08-b075-dfff3f3a1992} + {9ca7c308-47a8-4acf-99bf-7b4e15dda4ad} - {000b67d1-6d6b-4f3f-8480-980437b9827f} + {d12121b5-b60a-44ee-9830-caa502195086} - {7da896a6-34fc-458d-8fa8-c1e8876f906a} + {2b910781-4062-4037-a50c-a5f6fe1126fc} - {5594204c-b66e-4dab-99c4-be9a0e86edb4} + {5c519b11-f9e9-469b-a850-2b5a2a36fa81} - {2c07f5ac-fa45-4323-84f7-385290bb2631} + {83caab94-22b8-4ecc-8b10-848f309734ab} - {c8003b82-c508-4f79-bffb-eb2f022de230} + {d155a648-1d2e-41d3-96c3-a0d5431ecd5d} - {8020df5a-df2f-4e06-bcb5-d32b32849b4c} + {b2d4ec3d-e66c-4b20-93e8-a80c91cf1920} - {a24daac2-63a0-4c5f-83f1-47a06e63356c} + {bb08579f-4977-45c8-ba0c-8950bcca9d76} - {3195f745-f6d8-4318-b3d0-58ead6239a4f} + {98533849-34b1-4243-838b-9490268df13a} - {1e99a508-da2e-477e-954d-e516e2a49a71} + {0849ea06-0e39-4a8c-a744-c9d6cee23eae} - {ab3e66e1-7c81-4791-aa18-15615c7be18e} + {86e4d16e-19bb-4a12-94a0-c4bed7361875} - {289ac594-cf2d-4ad5-8749-faf46093ac06} + {4a030fd4-f140-4c96-b564-4a313252c94b} - {9ba9d6dd-3bfb-4720-a192-a2443e4d0988} + {10694634-f876-47ec-ac45-56d5ccc80013} - {1e86dbd1-30dd-417e-917b-2252f71f1afb} + {a861e4e1-b4e5-47fc-9572-a3de990a1337} - {5ebfef7b-7aad-491f-923b-0f5bac4efd69} + {36ae6d11-e01e-4be0-9b9c-15c41260fda9} - {75d6383b-548e-44b4-86a1-1f2f75885cdb} + {d9ff0131-412e-4f97-804b-aac9c7ea1001} - {b5e52443-d256-4a3c-8cc4-d8b329cd1382} + {1f02df3b-bdfa-4b41-bdf3-45357f18deaf} - {4459361c-7ba8-473d-89c3-2f7a604118d9} + {06ee9132-593c-415e-b64b-4b348faa5a61} diff --git a/Util/Util_vs100.vcxproj b/Util/Util_vs100.vcxproj index 0c02c1e5c..449b736c7 100644 --- a/Util/Util_vs100.vcxproj +++ b/Util/Util_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoUtild - PocoUtilmdd - PocoUtilmtd - PocoUtil - PocoUtilmd - PocoUtilmt + ..\bin\ + obj\$(Configuration)\ + true + ..\bin\ + obj\$(Configuration)\ + false + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + PocoUtild + PocoUtilmdd + PocoUtilmtd + PocoUtil + PocoUtilmd + PocoUtilmt - + Disabled .\include;..\Foundation\include;..\XML\include;..\JSON\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\XML\include;..\JSON\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib\PocoUtilmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib\PocoUtilmt.lib - + Disabled .\include;..\Foundation\include;..\XML\include;..\JSON\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib\PocoUtilmdd.lib - + Disabled OnlyExplicitInline @@ -334,12 +334,12 @@ - true - true - true - true - true - true + true + true + true + true + true + true diff --git a/Util/Util_vs100.vcxproj.filters b/Util/Util_vs100.vcxproj.filters index 136a3837a..02140bbfc 100644 --- a/Util/Util_vs100.vcxproj.filters +++ b/Util/Util_vs100.vcxproj.filters @@ -2,58 +2,58 @@ - {e95beba0-64cd-437b-9df4-d479f54b14bb} + {e639b443-9658-4c63-a16f-e32949633187} - {f8244d3e-2de9-4d53-92da-4371c937c78b} + {99f70bd7-0d14-4c98-aa3e-f49c3e942398} - {bbb27ae5-da52-47ed-9eda-367bba4a586b} + {2e16dda6-7c65-4db7-b226-4eb2d1c5843e} - {ff3aacf0-b0fe-44f5-a69d-7f5ae27d4dec} + {e97183dd-1186-4873-9ef6-234f36d46707} - {eb6429ab-9fc6-4941-862b-83d1635b8879} + {6dd790cf-9670-47c4-bd76-aefe9c335c54} - {6d2b083b-6012-4d0b-96aa-3f068236435f} + {bba1eb0c-3f4f-4367-8bf6-d67ee4ab3a99} - {4c5584ab-81fd-4da4-b384-c5d0a4518403} + {fad64497-d45d-4158-bed6-bcca36ff6f45} - {d28e182d-b8f0-4f07-87ff-7d42696eaf23} + {96079cfc-d6fa-4875-b66c-4b1c80c7ebd7} - {cd9f10e3-3a75-4001-b541-59c70ad69b5c} + {1d92247f-e3b3-4610-87d1-b81c4b771895} - {0568b057-8742-4807-bc08-3b0c45381913} + {3cce744f-ccf9-461b-8ec6-8147b74cff28} - {4c593541-a23b-4fac-9d7d-c50c665e6c8f} + {cf65119c-d20b-425b-9cc3-f2042cf68aba} - {30c8e559-f904-4d9a-a1ed-749524061a3b} + {5c5172fb-2d89-4d6a-a7f0-f1365b3de014} - {f64a9f5d-c4be-4faf-b8d6-e748d32b0419} + {23ce979e-498a-44e9-9077-65e1035ab4d7} - {05b653a3-5a6f-47b6-990d-25e5d5ea7ed7} + {d875e696-9a43-40a7-a978-e845977492ec} - {b799510f-8485-4e77-a3bb-4de06298c5e5} + {656e0a21-7f38-49ea-84cf-917bf04ac75b} - {ff0d993c-679b-495a-96e4-85807614f98e} + {274a66c7-1de6-4c44-916b-351ab566b51f} - {db101fe1-c790-4146-93eb-2360d6a11435} + {82a2607c-3f90-4e2f-861e-92fe0ddc231f} - {b7d8393b-f62f-453a-9b55-ca7a67f0237b} + {443b8524-248d-4d12-8bcc-c8fe7b41b123} diff --git a/Util/Util_vs110.vcxproj b/Util/Util_vs110.vcxproj index 1aef83fd6..a71a800b3 100644 --- a/Util/Util_vs110.vcxproj +++ b/Util/Util_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoUtild - PocoUtilmdd - PocoUtilmtd - PocoUtil - PocoUtilmd - PocoUtilmt + <_ProjectFileVersion>11.0.61030.0 + PocoUtild + PocoUtilmdd + PocoUtilmtd + PocoUtil + PocoUtilmd + PocoUtilmt - + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + Disabled .\include;..\Foundation\include;..\XML\include;..\JSON\include;%(AdditionalIncludeDirectories) @@ -124,10 +136,8 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoUtild.dll true true @@ -138,7 +148,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -157,10 +167,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoUtil.dll true false @@ -172,7 +180,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;..\XML\include;..\JSON\include;%(AdditionalIncludeDirectories) @@ -190,13 +198,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoUtilmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +222,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib\PocoUtilmt.lib - + Disabled .\include;..\Foundation\include;..\XML\include;..\JSON\include;%(AdditionalIncludeDirectories) @@ -239,13 +245,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoUtilmdd.lib - + Disabled OnlyExplicitInline @@ -265,10 +270,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\lib\PocoUtilmd.lib @@ -340,12 +343,12 @@ - true - true - true - true - true - true + true + true + true + true + true + true diff --git a/Util/Util_vs110.vcxproj.filters b/Util/Util_vs110.vcxproj.filters index 1743f327a..cd220a9bc 100644 --- a/Util/Util_vs110.vcxproj.filters +++ b/Util/Util_vs110.vcxproj.filters @@ -2,58 +2,58 @@ - {ee1867e0-562f-448f-ad86-83e4012407fa} + {d353cdc3-cf72-4c6b-a2a7-c5e625f1e3b2} - {15d6b0be-e704-4488-b31a-f84e90133e77} + {9cbc77bd-5976-417c-81b4-dafa0aa1cc5b} - {fe5f7c73-eab1-4335-869e-a03ebee5eb17} + {1c4df7b2-a3a6-4e30-953b-be9464e62304} - {92e08703-6853-41ff-90d9-a2f409b97601} + {294fe5cd-6364-4084-8ed8-fe63d69418bc} - {634b59c7-f903-4851-8bc6-4d3ba0536d9c} + {0cb131b9-9d77-4479-9a6c-ece63f9d8878} - {5652a6c5-1335-4a14-bff0-bd4160ca9983} + {5b9fe9c9-88a8-4622-bd97-05f350229df6} - {28230754-902e-4b93-a004-72d3d6bb6b49} + {ad7fc36a-61b9-4fcb-828f-22a2a3e28ae5} - {0e0c3f7b-cff9-4e80-bcc5-99d4b0d511e7} + {5e3ba74f-9a5e-439b-8136-51d21602cf67} - {96cdb3b0-874c-4d04-8fe1-d899da1c9d1d} + {b5cedcde-d245-4f94-8f48-4976ca335919} - {b25aa509-a98e-4f20-9e40-7f1936fa0b25} + {0047424a-0647-4147-aef7-1ba41ab7ffb5} - {f4d70318-6244-42c1-81f8-428fc11a27e1} + {9de5adb4-f603-4f9d-865a-f4016b6744ff} - {1f84d691-e7ab-4ade-a8c7-0ae1b5f9f70c} + {dcf377a4-86da-4f6f-a748-7f926944396a} - {fce00c10-3fc8-4b2c-b5e3-6b5b0fbba852} + {91f60abc-5474-4394-abed-712382206c4f} - {593b0e69-63b2-406f-900f-bb8c28c2fd8d} + {26c37e33-6295-4129-81b4-74dc603c055f} - {4d08c6fd-68ac-4c17-92ac-5e2520c51c27} + {e1cfb85e-86f3-4794-9e7f-9ec520bacc5e} - {e693e7ca-9217-4379-93f8-d4b993b50e1d} + {487185c7-77a3-49a4-afb3-353348c1cdc8} - {f78bf43e-0d73-458c-8186-2e0c7c572f49} + {d1a76ba2-3ccf-40b0-a4d3-ea0c4f1fb6d1} - {f5a706e6-7370-4cd7-bc5d-f205cd554669} + {7c7bdecc-859f-45f4-8424-4b817891ef50} diff --git a/Util/Util_vs120.sln b/Util/Util_vs120.sln index 362cd83e1..11e15ae5b 100644 --- a/Util/Util_vs120.sln +++ b/Util/Util_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Util", "Util_vs120.vcxproj", "{6FF56CDB-787A-4714-A28C-919003F9FA6C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_vs120.vcxproj", "{E40E738C-447B-40F4-A878-EBA9A2459270}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_shared|Win32.ActiveCfg = release_shared|Win32 {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_shared|Win32.Build.0 = release_shared|Win32 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {E40E738C-447B-40F4-A878-EBA9A2459270}.release_shared|Win32.ActiveCfg = release_shared|Win32 {E40E738C-447B-40F4-A878-EBA9A2459270}.release_shared|Win32.Build.0 = release_shared|Win32 - {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Util/Util_vs120.vcxproj b/Util/Util_vs120.vcxproj index b982195e0..2bc01071f 100644 --- a/Util/Util_vs120.vcxproj +++ b/Util/Util_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Util Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoUtild PocoUtilmdd PocoUtilmtd @@ -107,6 +93,32 @@ PocoUtilmd PocoUtilmt + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + Disabled @@ -120,14 +132,12 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoUtild.dll true true @@ -153,14 +163,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoUtil.dll true false @@ -185,12 +193,11 @@ true true true - + ..\lib\PocoUtilmtd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoUtilmtd.lib @@ -211,11 +218,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib\PocoUtilmt.lib @@ -234,12 +240,11 @@ true true true - + ..\lib\PocoUtilmdd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoUtilmdd.lib @@ -260,83 +265,81 @@ true true true - + ..\lib\PocoUtilmd.pdb Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\lib\PocoUtilmd.lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -348,6 +351,6 @@ true - - - \ No newline at end of file + + + diff --git a/Util/Util_vs120.vcxproj.filters b/Util/Util_vs120.vcxproj.filters index 1743f327a..55a56f66a 100644 --- a/Util/Util_vs120.vcxproj.filters +++ b/Util/Util_vs120.vcxproj.filters @@ -2,58 +2,58 @@ - {ee1867e0-562f-448f-ad86-83e4012407fa} + {e458efba-5aa7-4e66-9ba0-1668e75df3b0} - {15d6b0be-e704-4488-b31a-f84e90133e77} + {26590402-5267-4715-b9f9-ef5750f1ecf2} - {fe5f7c73-eab1-4335-869e-a03ebee5eb17} + {6337c8cc-df68-4cb7-adb5-d2508ebda800} - {92e08703-6853-41ff-90d9-a2f409b97601} + {f7c3c381-60f4-444a-b0a5-6f38de01b596} - {634b59c7-f903-4851-8bc6-4d3ba0536d9c} + {2b177e73-ffaf-423c-b4bd-ad3be62feb03} - {5652a6c5-1335-4a14-bff0-bd4160ca9983} + {d6b516ff-974a-4473-a2d7-c2356a436bd6} - {28230754-902e-4b93-a004-72d3d6bb6b49} + {e33e0248-022f-4245-85c8-5a673209df58} - {0e0c3f7b-cff9-4e80-bcc5-99d4b0d511e7} + {6169b15d-3296-4d0f-a1b5-3dbcfd3c7a62} - {96cdb3b0-874c-4d04-8fe1-d899da1c9d1d} + {1c60a08e-28f0-47f2-aa1d-93702877aad8} - {b25aa509-a98e-4f20-9e40-7f1936fa0b25} + {1ea5aa2a-5237-4fdd-8103-4d92fef7c6dd} - {f4d70318-6244-42c1-81f8-428fc11a27e1} + {8193062b-ae88-4991-83a8-10feb5605acb} - {1f84d691-e7ab-4ade-a8c7-0ae1b5f9f70c} + {c8cdc6ba-37dd-4d4b-9127-bd240d06365d} - {fce00c10-3fc8-4b2c-b5e3-6b5b0fbba852} + {8a84c35a-0269-4c81-8a7a-ecd27d1cb0d9} - {593b0e69-63b2-406f-900f-bb8c28c2fd8d} + {9c7cbf44-5634-4d71-8926-e28f1bc2cb63} - {4d08c6fd-68ac-4c17-92ac-5e2520c51c27} + {bd1e40cf-6c32-4d28-ba20-346ea3be7f2b} - {e693e7ca-9217-4379-93f8-d4b993b50e1d} + {d088c8ab-90a1-446d-93ae-7a85fba3857f} - {f78bf43e-0d73-458c-8186-2e0c7c572f49} + {1d549587-0c3b-4a57-9a86-69351ff69372} - {f5a706e6-7370-4cd7-bc5d-f205cd554669} + {5b0c2cd5-5739-473c-a6d0-d923c313b614} diff --git a/Util/Util_x64_vs100.vcxproj b/Util/Util_x64_vs100.vcxproj index d6ae82248..2d65d0cd2 100644 --- a/Util/Util_x64_vs100.vcxproj +++ b/Util/Util_x64_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoUtil64d - PocoUtilmdd - PocoUtilmtd - PocoUtil64 - PocoUtilmd - PocoUtilmt + ..\bin64\ + obj64\$(Configuration)\ + true + ..\bin64\ + obj64\$(Configuration)\ + false + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + PocoUtil64d + PocoUtilmdd + PocoUtilmtd + PocoUtil64 + PocoUtilmd + PocoUtilmt - + Disabled .\include;..\Foundation\include;..\XML\include;..\JSON\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\XML\include;..\JSON\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib64\PocoUtilmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib64\PocoUtilmt.lib - + Disabled .\include;..\Foundation\include;..\XML\include;..\JSON\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib64\PocoUtilmdd.lib - + Disabled OnlyExplicitInline @@ -332,12 +332,12 @@ - true - true - true - true - true - true + true + true + true + true + true + true diff --git a/Util/Util_x64_vs100.vcxproj.filters b/Util/Util_x64_vs100.vcxproj.filters index d0c3c708d..f65208d82 100644 --- a/Util/Util_x64_vs100.vcxproj.filters +++ b/Util/Util_x64_vs100.vcxproj.filters @@ -2,58 +2,58 @@ - {036d46f5-89d8-4e4b-85eb-d44cfda1ba3d} + {e29128f1-d6f6-4ef3-b027-f6b47041d1e5} - {4b677de1-7f65-4d38-8ccf-1a23c6fb19fb} + {80380b42-7193-4823-8849-7b774de93543} - {c7d72b5c-ff53-4e87-bf85-bc104dd5ad8d} + {d0b9636a-bb74-4ce5-bee4-92a7aea9a9cb} - {35cdceb2-a832-4073-a632-e7d17fa94023} + {658f7323-3e1a-42a7-871f-2487ce617ba5} - {132ee63c-10fd-4d84-9d2b-db1329742dc3} + {178acd0f-2412-4866-9e59-8a4a2bd7a84d} - {2237ea42-bd0a-4f5a-8655-476ff0804dfe} + {d1a010f6-b167-42cc-ae2d-edcc9a7b539e} - {92a03b64-ed4f-4bf1-be0e-35536fc7573a} + {4c62b9ce-3b25-4a37-9569-585d4a9c7e75} - {408f3bec-02d2-4027-8fc7-b4492386cf16} + {37e2ed07-4174-4a46-92e0-010510347335} - {3b106f29-7323-475c-8041-900ef6a29280} + {26896373-4756-436e-9e88-56c51614912c} - {5f0a32d8-37be-4ba6-80eb-89ea4cc6e3df} + {8998a259-f0c6-4cff-b607-288cd7b16cd4} - {7aa1e2cc-8a5e-4388-a6bb-e5c82fd7d4e1} + {bd9037bb-46b8-4918-bf82-ef41a2843662} - {5b71700f-0f64-43aa-a658-c434371028b2} + {7acf9a1e-2d3e-44a4-9781-ece1d9d48c49} - {d1759f4e-b87c-4fd6-bb48-262100634c5b} + {49e9821a-06ff-4eff-99e6-0e31eeeaa7a6} - {7a55108b-88a4-499d-9b41-314b2546398c} + {8617c6cb-3d22-4bf0-8a6e-48847aac4002} - {8079d3bc-efd0-408d-ab53-18cd5d117841} + {9032a619-9b3b-480e-8eab-ac35c69444fa} - {0ba45244-9755-40fd-b012-9c732d57f7f7} + {add2c140-a5d6-4d00-9a1f-36f019b43414} - {a1ac1710-8209-487e-8c9a-c560f1d96b40} + {06591c6a-80bc-4913-a8df-a6ddae628e85} - {d1a116b1-ab30-422c-b452-d34a96b7a516} + {b8fab848-f2aa-481c-badd-c0e3d1b293ff} diff --git a/Util/Util_x64_vs110.vcxproj b/Util/Util_x64_vs110.vcxproj index 96d81c3b5..6f9e51946 100644 --- a/Util/Util_x64_vs110.vcxproj +++ b/Util/Util_x64_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoUtil64d - PocoUtilmdd - PocoUtilmtd - PocoUtil64 - PocoUtilmd - PocoUtilmt + <_ProjectFileVersion>11.0.61030.0 + PocoUtil64d + PocoUtilmdd + PocoUtilmtd + PocoUtil64 + PocoUtilmd + PocoUtilmt - + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + Disabled .\include;..\Foundation\include;..\XML\include;..\JSON\include;%(AdditionalIncludeDirectories) @@ -124,10 +136,8 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoUtil64d.dll true true @@ -138,7 +148,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -157,10 +167,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoUtil64.dll true false @@ -172,7 +180,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;..\XML\include;..\JSON\include;%(AdditionalIncludeDirectories) @@ -190,13 +198,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoUtilmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +222,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoUtilmt.lib - + Disabled .\include;..\Foundation\include;..\XML\include;..\JSON\include;%(AdditionalIncludeDirectories) @@ -239,13 +245,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoUtilmdd.lib - + Disabled OnlyExplicitInline @@ -264,7 +269,6 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoUtilmd.lib @@ -338,12 +342,12 @@ - true - true - true - true - true - true + true + true + true + true + true + true diff --git a/Util/Util_x64_vs110.vcxproj.filters b/Util/Util_x64_vs110.vcxproj.filters index 1a3ff9892..779dad0b6 100644 --- a/Util/Util_x64_vs110.vcxproj.filters +++ b/Util/Util_x64_vs110.vcxproj.filters @@ -2,58 +2,58 @@ - {bade3c55-c1bd-4ebe-b737-3fbc5dc66fd3} + {b41c5e00-6924-4102-96ef-7b3ea07a9f92} - {120300c8-7e5b-4777-af35-4c8bf8ff969d} + {61ed8eaf-f58a-4c49-965c-f02a3be711c9} - {2921dee4-ef74-462e-aa7a-09b67189602c} + {6bc7a22b-1d50-48f4-8304-c78e877a8ec3} - {2fdeb9d5-ce29-426c-928d-366bad038937} + {67996293-dd39-4f45-9319-7b232e760e1f} - {5b2e3311-f302-452d-9e86-d588c39054eb} + {0a733f40-6ff2-4d7e-8097-6595eda39db6} - {cf84b45e-e4d3-418e-9fdf-734beed9f3ab} + {d81886c2-7cea-4062-bc7c-5ec6df7c8bd2} - {20086d2b-ac13-4afd-9ef4-808a9a3697e8} + {82382782-64ac-4a38-be7b-14f6809cba43} - {2d315f08-c88e-4688-a36c-46259b2613c5} + {c41e00f6-675d-4012-b52e-6b99b68ab264} - {b9c29617-dfcc-45dd-bf9e-16c6e579c868} + {cf289fee-3288-4a15-bb79-905f497b87f2} - {df5bd95b-45df-47bd-8f52-fe9fe6993b51} + {b8053e8a-9294-4850-946a-d49c465e4e87} - {3a9fb72c-a13e-4af3-9d6c-e33fd97f715f} + {bbe77455-37d8-4b4e-a647-822a32561b93} - {cec6a8a7-dff4-487e-b45c-44de7aa249fa} + {d5058507-9dfa-4c9c-8033-5ec1bc226b8d} - {ae9de40a-1295-4502-be45-df2204dab7a5} + {cd11c027-520d-4109-965b-e90dfe1f733c} - {86a863a9-64f0-48ca-94d6-4a5714b642e4} + {fa805d59-2974-4dd0-b6e2-2e03ca802e0a} - {d08cf8a5-6414-4c8e-9c20-020bd5e61009} + {937d6ff2-7637-44c7-b300-4f7cb7ae4c4e} - {06edfebf-c76b-466e-adcc-b98ff3a9ed82} + {9e5d7e32-02bd-48c0-b058-63acf3535523} - {74b30ba5-2840-470a-9af4-db4d06ed89a2} + {7ce35864-cb01-4bc7-9233-493c7b928033} - {b9155cbc-8cef-45cc-87af-6c4bb5fad041} + {5ff7686d-51a2-4ada-b554-d870e2344cf4} diff --git a/Util/Util_x64_vs120.sln b/Util/Util_x64_vs120.sln index b1f517b72..b73deccd8 100644 --- a/Util/Util_x64_vs120.sln +++ b/Util/Util_x64_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Util", "Util_x64_vs120.vcxproj", "{6FF56CDB-787A-4714-A28C-919003F9FA6C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_x64_vs120.vcxproj", "{E40E738C-447B-40F4-A878-EBA9A2459270}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_shared|x64.ActiveCfg = debug_shared|x64 {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_shared|x64.Build.0 = debug_shared|x64 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_shared|x64.Deploy.0 = debug_shared|x64 {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_shared|x64.ActiveCfg = release_shared|x64 {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_shared|x64.Build.0 = release_shared|x64 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|x64.Build.0 = release_static_md|x64 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_shared|x64.Deploy.0 = release_shared|x64 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|x64.Build.0 = release_static_md|x64 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|x64.Deploy.0 = release_static_md|x64 {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_shared|x64.ActiveCfg = debug_shared|x64 {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_shared|x64.Build.0 = debug_shared|x64 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_shared|x64.Deploy.0 = debug_shared|x64 {E40E738C-447B-40F4-A878-EBA9A2459270}.release_shared|x64.ActiveCfg = release_shared|x64 {E40E738C-447B-40F4-A878-EBA9A2459270}.release_shared|x64.Build.0 = release_shared|x64 - {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|x64.Build.0 = release_static_md|x64 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_shared|x64.Deploy.0 = release_shared|x64 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|x64.Build.0 = release_static_md|x64 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Util/Util_x64_vs120.vcxproj b/Util/Util_x64_vs120.vcxproj index 84840f7bc..d335965bf 100644 --- a/Util/Util_x64_vs120.vcxproj +++ b/Util/Util_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Util Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoUtil64d PocoUtilmdd PocoUtilmtd @@ -107,6 +93,32 @@ PocoUtilmd PocoUtilmt + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + Disabled @@ -120,14 +132,12 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoUtil64d.dll true true @@ -153,14 +163,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoUtil64.dll true false @@ -185,12 +193,11 @@ true true true - + ..\lib64\PocoUtilmtd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoUtilmtd.lib @@ -211,11 +218,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoUtilmt.lib @@ -234,12 +240,11 @@ true true true - + ..\lib64\PocoUtilmdd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoUtilmdd.lib @@ -260,81 +265,80 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoUtilmd.lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -346,6 +350,6 @@ true - - - \ No newline at end of file + + + diff --git a/Util/Util_x64_vs120.vcxproj.filters b/Util/Util_x64_vs120.vcxproj.filters index 1a3ff9892..9b1033d16 100644 --- a/Util/Util_x64_vs120.vcxproj.filters +++ b/Util/Util_x64_vs120.vcxproj.filters @@ -2,58 +2,58 @@ - {bade3c55-c1bd-4ebe-b737-3fbc5dc66fd3} + {3cb6ab3d-3ba6-450a-9e5b-e0bed993c8f0} - {120300c8-7e5b-4777-af35-4c8bf8ff969d} + {e5880a98-ab0d-4905-a4c2-3de0b87f264c} - {2921dee4-ef74-462e-aa7a-09b67189602c} + {b798809b-7c7b-4f6c-86e2-092e0f19f8c8} - {2fdeb9d5-ce29-426c-928d-366bad038937} + {a2c981c7-e454-48d9-b8f4-bc42c3318e4f} - {5b2e3311-f302-452d-9e86-d588c39054eb} + {37d195b0-2bc9-4474-9475-c79d843cbc8f} - {cf84b45e-e4d3-418e-9fdf-734beed9f3ab} + {78530b70-f6cc-478f-a603-43dc426f8638} - {20086d2b-ac13-4afd-9ef4-808a9a3697e8} + {0f13d87a-ca99-489a-92a9-399935b48e64} - {2d315f08-c88e-4688-a36c-46259b2613c5} + {1c869013-3079-4a7a-a654-840f16da31b1} - {b9c29617-dfcc-45dd-bf9e-16c6e579c868} + {f7c3f57e-386e-4ed8-8195-f4df7f237a76} - {df5bd95b-45df-47bd-8f52-fe9fe6993b51} + {479d3f1c-83e8-4238-bfc1-e620458d3471} - {3a9fb72c-a13e-4af3-9d6c-e33fd97f715f} + {e02b9478-73d4-47ce-a2ee-0acc4d949759} - {cec6a8a7-dff4-487e-b45c-44de7aa249fa} + {7ef51eb6-9ba7-45c5-a2fd-1102166b861f} - {ae9de40a-1295-4502-be45-df2204dab7a5} + {e2994fd2-0b09-4f2b-91fa-c07def38c3d4} - {86a863a9-64f0-48ca-94d6-4a5714b642e4} + {46df0d9a-08ec-45c5-a67b-8144d1b02047} - {d08cf8a5-6414-4c8e-9c20-020bd5e61009} + {4928d74b-88dd-4ec2-8442-bda4f4d1903e} - {06edfebf-c76b-466e-adcc-b98ff3a9ed82} + {5802cb2b-f230-41bf-9673-0c9499167639} - {74b30ba5-2840-470a-9af4-db4d06ed89a2} + {27b3dbeb-1c7e-49c2-bece-0b03d79e93e3} - {b9155cbc-8cef-45cc-87af-6c4bb5fad041} + {20afc21a-b779-4c13-b077-7ce407599a37} diff --git a/Util/samples/SampleApp/SampleApp_WEC2013_vs110.vcxproj.filters b/Util/samples/SampleApp/SampleApp_WEC2013_vs110.vcxproj.filters index 65f2f4a68..e0f83ef11 100644 --- a/Util/samples/SampleApp/SampleApp_WEC2013_vs110.vcxproj.filters +++ b/Util/samples/SampleApp/SampleApp_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {20519e7d-6c9a-4c58-9397-5d2d2ae83af3} + {d4fcb507-8973-4f0a-bb2d-8b15cfbfab81} - {aff187b5-5357-4cd9-bbee-6ae27c662a16} + {102feb19-465f-4ab6-a841-6d04353a3f30} diff --git a/Util/samples/SampleApp/SampleApp_vs100.vcxproj b/Util/samples/SampleApp/SampleApp_vs100.vcxproj index 920505ca8..526257954 100644 --- a/Util/samples/SampleApp/SampleApp_vs100.vcxproj +++ b/Util/samples/SampleApp/SampleApp_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - SampleAppd - SampleAppd - SampleAppd - SampleApp - SampleApp - SampleApp + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + SampleAppd + SampleAppd + SampleAppd + SampleApp + SampleApp + SampleApp - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Util/samples/SampleApp/SampleApp_vs100.vcxproj.filters b/Util/samples/SampleApp/SampleApp_vs100.vcxproj.filters index 3901e234c..38a29e845 100644 --- a/Util/samples/SampleApp/SampleApp_vs100.vcxproj.filters +++ b/Util/samples/SampleApp/SampleApp_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {0ab99809-86ad-4d76-97d2-8e26f6e6f1e3} + {a7b02bc7-3a7e-4c3d-bda9-ec0251081112} - {700f4628-6181-4786-a214-142e56d53e2b} + {91ee6d2f-7012-4d27-96cf-ab05630c33a4} diff --git a/Util/samples/SampleApp/SampleApp_vs110.vcxproj b/Util/samples/SampleApp/SampleApp_vs110.vcxproj index 6cf4c3ec0..6b8aa471a 100644 --- a/Util/samples/SampleApp/SampleApp_vs110.vcxproj +++ b/Util/samples/SampleApp/SampleApp_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - SampleAppd - SampleAppd - SampleAppd - SampleApp - SampleApp - SampleApp + <_ProjectFileVersion>11.0.61030.0 + SampleAppd + SampleAppd + SampleAppd + SampleApp + SampleApp + SampleApp - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Util/samples/SampleApp/SampleApp_vs110.vcxproj.filters b/Util/samples/SampleApp/SampleApp_vs110.vcxproj.filters index 51db6e1c6..e5538da36 100644 --- a/Util/samples/SampleApp/SampleApp_vs110.vcxproj.filters +++ b/Util/samples/SampleApp/SampleApp_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {ecdec709-3043-42ea-bb78-bca18e9ea63d} + {401353f1-46f4-478c-a0a9-f7aed66a8086} - {10ed0610-6ef2-404b-aab6-de7c25640278} + {211249c5-0075-452b-a3a3-2cd1b26bd4bc} diff --git a/Util/samples/SampleApp/SampleApp_vs120.vcxproj b/Util/samples/SampleApp/SampleApp_vs120.vcxproj index 256f86f12..13ebff7ab 100644 --- a/Util/samples/SampleApp/SampleApp_vs120.vcxproj +++ b/Util/samples/SampleApp/SampleApp_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ SampleApp Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 SampleAppd SampleAppd SampleAppd @@ -111,6 +93,36 @@ SampleApp SampleApp + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/Util/samples/SampleApp/SampleApp_vs120.vcxproj.filters b/Util/samples/SampleApp/SampleApp_vs120.vcxproj.filters index 51db6e1c6..1c5826fc9 100644 --- a/Util/samples/SampleApp/SampleApp_vs120.vcxproj.filters +++ b/Util/samples/SampleApp/SampleApp_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {ecdec709-3043-42ea-bb78-bca18e9ea63d} + {e89805dc-fa16-4d5d-935b-9e482227c5bf} - {10ed0610-6ef2-404b-aab6-de7c25640278} + {0458448c-ee1a-42a0-8f91-ea14fe8fddaa} diff --git a/Util/samples/SampleApp/SampleApp_x64_vs100.vcxproj b/Util/samples/SampleApp/SampleApp_x64_vs100.vcxproj index aff04e65e..3b49183b7 100644 --- a/Util/samples/SampleApp/SampleApp_x64_vs100.vcxproj +++ b/Util/samples/SampleApp/SampleApp_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - SampleAppd - SampleAppd - SampleAppd - SampleApp - SampleApp - SampleApp + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + SampleAppd + SampleAppd + SampleAppd + SampleApp + SampleApp + SampleApp - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Util/samples/SampleApp/SampleApp_x64_vs100.vcxproj.filters b/Util/samples/SampleApp/SampleApp_x64_vs100.vcxproj.filters index b55929cb2..ff126d7bd 100644 --- a/Util/samples/SampleApp/SampleApp_x64_vs100.vcxproj.filters +++ b/Util/samples/SampleApp/SampleApp_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {69781289-9082-4b7c-869e-50b87f61cc12} + {dd29089f-60db-413a-b7c9-b820e8381fda} - {b204c0c7-3a66-4d78-a8be-63e57b7868aa} + {124c46b8-8c51-4c41-9156-4af2defcfe29} diff --git a/Util/samples/SampleApp/SampleApp_x64_vs110.vcxproj b/Util/samples/SampleApp/SampleApp_x64_vs110.vcxproj index 6841bb324..e15fa6ee9 100644 --- a/Util/samples/SampleApp/SampleApp_x64_vs110.vcxproj +++ b/Util/samples/SampleApp/SampleApp_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - SampleAppd - SampleAppd - SampleAppd - SampleApp - SampleApp - SampleApp + <_ProjectFileVersion>11.0.61030.0 + SampleAppd + SampleAppd + SampleAppd + SampleApp + SampleApp + SampleApp - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Util/samples/SampleApp/SampleApp_x64_vs110.vcxproj.filters b/Util/samples/SampleApp/SampleApp_x64_vs110.vcxproj.filters index 609415568..c0f2b1975 100644 --- a/Util/samples/SampleApp/SampleApp_x64_vs110.vcxproj.filters +++ b/Util/samples/SampleApp/SampleApp_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {cd36f179-d814-42f6-ad4f-294bf3b24c99} + {34e20060-99cd-4ffb-ae74-691f2c5647bb} - {d0728e18-7819-4ae8-b04a-1c30cd9898f8} + {45e85cfe-9fb7-41d6-bbe9-481f915d3d64} diff --git a/Util/samples/SampleApp/SampleApp_x64_vs120.vcxproj b/Util/samples/SampleApp/SampleApp_x64_vs120.vcxproj index eb96a36f2..ab1e15e9e 100644 --- a/Util/samples/SampleApp/SampleApp_x64_vs120.vcxproj +++ b/Util/samples/SampleApp/SampleApp_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ SampleApp Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 SampleAppd SampleAppd SampleAppd @@ -111,6 +93,36 @@ SampleApp SampleApp + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,11 +304,11 @@ - + - + - - - \ No newline at end of file + + + diff --git a/Util/samples/SampleApp/SampleApp_x64_vs120.vcxproj.filters b/Util/samples/SampleApp/SampleApp_x64_vs120.vcxproj.filters index 609415568..87069e367 100644 --- a/Util/samples/SampleApp/SampleApp_x64_vs120.vcxproj.filters +++ b/Util/samples/SampleApp/SampleApp_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {cd36f179-d814-42f6-ad4f-294bf3b24c99} + {ea1c5d11-2187-4c4f-9aaa-741daa1b4974} - {d0728e18-7819-4ae8-b04a-1c30cd9898f8} + {b1c14615-9012-42ed-b20f-167983c89707} diff --git a/Util/samples/SampleServer/SampleServer_WEC2013_vs110.vcxproj.filters b/Util/samples/SampleServer/SampleServer_WEC2013_vs110.vcxproj.filters index 3a69767d4..ae496ccb9 100644 --- a/Util/samples/SampleServer/SampleServer_WEC2013_vs110.vcxproj.filters +++ b/Util/samples/SampleServer/SampleServer_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {69ab2ba2-aede-44dc-acff-9e0f8a9d4a22} + {79f837ef-557b-4176-b83a-d8b6b4118942} - {608b7153-cfdd-47e8-8a76-36b3755636e1} + {361ee6f3-2994-4e97-9e92-46fa44d47f3e} diff --git a/Util/samples/SampleServer/SampleServer_vs100.vcxproj b/Util/samples/SampleServer/SampleServer_vs100.vcxproj index 77b089a89..7e63d503b 100644 --- a/Util/samples/SampleServer/SampleServer_vs100.vcxproj +++ b/Util/samples/SampleServer/SampleServer_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - SampleServerd - SampleServerd - SampleServerd - SampleServer - SampleServer - SampleServer + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + SampleServerd + SampleServerd + SampleServerd + SampleServer + SampleServer + SampleServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Util/samples/SampleServer/SampleServer_vs100.vcxproj.filters b/Util/samples/SampleServer/SampleServer_vs100.vcxproj.filters index 4d1f2b36b..e93e8d56c 100644 --- a/Util/samples/SampleServer/SampleServer_vs100.vcxproj.filters +++ b/Util/samples/SampleServer/SampleServer_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {7adca311-211e-433a-b1c4-544d94fa9a52} + {ddd06775-118b-4f58-ad02-fdb452397326} - {c295c404-b19b-4b8f-808b-37c43445988b} + {34b96c40-5d34-4b36-a612-dc74730c373c} diff --git a/Util/samples/SampleServer/SampleServer_vs110.vcxproj b/Util/samples/SampleServer/SampleServer_vs110.vcxproj index 2517e8d4c..dcec1e68a 100644 --- a/Util/samples/SampleServer/SampleServer_vs110.vcxproj +++ b/Util/samples/SampleServer/SampleServer_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - SampleServerd - SampleServerd - SampleServerd - SampleServer - SampleServer - SampleServer + <_ProjectFileVersion>11.0.61030.0 + SampleServerd + SampleServerd + SampleServerd + SampleServer + SampleServer + SampleServer - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Util/samples/SampleServer/SampleServer_vs110.vcxproj.filters b/Util/samples/SampleServer/SampleServer_vs110.vcxproj.filters index 074618935..7d4271239 100644 --- a/Util/samples/SampleServer/SampleServer_vs110.vcxproj.filters +++ b/Util/samples/SampleServer/SampleServer_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {70f6b8c3-f47b-4c8c-ad79-edbe3b79ca6f} + {1ae5d70d-752d-4537-8a96-ff358d8a6f9e} - {1397ae7c-6030-4c12-a549-073ad79d3e77} + {fbbba72c-6a2b-41f9-8df9-4b181903cb59} diff --git a/Util/samples/SampleServer/SampleServer_vs120.vcxproj b/Util/samples/SampleServer/SampleServer_vs120.vcxproj index f8916d8f0..7a17b8ad4 100644 --- a/Util/samples/SampleServer/SampleServer_vs120.vcxproj +++ b/Util/samples/SampleServer/SampleServer_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ SampleServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 SampleServerd SampleServerd SampleServerd @@ -111,6 +93,36 @@ SampleServer SampleServer + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Util/samples/SampleServer/SampleServer_vs120.vcxproj.filters b/Util/samples/SampleServer/SampleServer_vs120.vcxproj.filters index 074618935..5d9ffead7 100644 --- a/Util/samples/SampleServer/SampleServer_vs120.vcxproj.filters +++ b/Util/samples/SampleServer/SampleServer_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {70f6b8c3-f47b-4c8c-ad79-edbe3b79ca6f} + {1f1d59ea-65be-4fa3-aaec-c9a930ddc6c5} - {1397ae7c-6030-4c12-a549-073ad79d3e77} + {e235e1fb-9e07-4bbe-b60b-07b22632fb2f} diff --git a/Util/samples/SampleServer/SampleServer_x64_vs100.vcxproj b/Util/samples/SampleServer/SampleServer_x64_vs100.vcxproj index 0af75b4cc..b2ec3b28b 100644 --- a/Util/samples/SampleServer/SampleServer_x64_vs100.vcxproj +++ b/Util/samples/SampleServer/SampleServer_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - SampleServerd - SampleServerd - SampleServerd - SampleServer - SampleServer - SampleServer + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + SampleServerd + SampleServerd + SampleServerd + SampleServer + SampleServer + SampleServer - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Util/samples/SampleServer/SampleServer_x64_vs100.vcxproj.filters b/Util/samples/SampleServer/SampleServer_x64_vs100.vcxproj.filters index b7fc78a12..049b82a38 100644 --- a/Util/samples/SampleServer/SampleServer_x64_vs100.vcxproj.filters +++ b/Util/samples/SampleServer/SampleServer_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {67e6ecdb-d3cd-4c09-be4e-7eb8f4a281c1} + {7b4207a9-aee2-4083-bc1c-f5ebbd16d219} - {f54502f5-c56f-4a9f-a5ed-0324711c0f28} + {e4c68038-4b06-4c87-a012-da3339fe48ca} diff --git a/Util/samples/SampleServer/SampleServer_x64_vs110.vcxproj b/Util/samples/SampleServer/SampleServer_x64_vs110.vcxproj index c7bfb7000..e38f503a1 100644 --- a/Util/samples/SampleServer/SampleServer_x64_vs110.vcxproj +++ b/Util/samples/SampleServer/SampleServer_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - SampleServerd - SampleServerd - SampleServerd - SampleServer - SampleServer - SampleServer + <_ProjectFileVersion>11.0.61030.0 + SampleServerd + SampleServerd + SampleServerd + SampleServer + SampleServer + SampleServer - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Util/samples/SampleServer/SampleServer_x64_vs110.vcxproj.filters b/Util/samples/SampleServer/SampleServer_x64_vs110.vcxproj.filters index 406350293..15c825f5c 100644 --- a/Util/samples/SampleServer/SampleServer_x64_vs110.vcxproj.filters +++ b/Util/samples/SampleServer/SampleServer_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {1b0de7da-5b71-4152-8455-eeb91b6c22b3} + {cb07cf6d-0435-4312-8556-007badfd865f} - {c89fd413-c8bd-4c68-86b1-6993b5d0616b} + {42d2d280-5855-4294-8ef7-b35315151159} diff --git a/Util/samples/SampleServer/SampleServer_x64_vs120.vcxproj b/Util/samples/SampleServer/SampleServer_x64_vs120.vcxproj index dd631bc56..0485038ed 100644 --- a/Util/samples/SampleServer/SampleServer_x64_vs120.vcxproj +++ b/Util/samples/SampleServer/SampleServer_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ SampleServer Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 SampleServerd SampleServerd SampleServerd @@ -111,6 +93,36 @@ SampleServer SampleServer + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Util/samples/SampleServer/SampleServer_x64_vs120.vcxproj.filters b/Util/samples/SampleServer/SampleServer_x64_vs120.vcxproj.filters index 406350293..27c7f2721 100644 --- a/Util/samples/SampleServer/SampleServer_x64_vs120.vcxproj.filters +++ b/Util/samples/SampleServer/SampleServer_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {1b0de7da-5b71-4152-8455-eeb91b6c22b3} + {bc75dd4b-44f0-4e6e-90b8-0ea97b7a2759} - {c89fd413-c8bd-4c68-86b1-6993b5d0616b} + {588fcdc4-eb15-4576-8b14-ac14f79758d0} diff --git a/Util/samples/Units/Units_WEC2013_vs110.vcxproj.filters b/Util/samples/Units/Units_WEC2013_vs110.vcxproj.filters index b508ee8b7..044b50f7b 100644 --- a/Util/samples/Units/Units_WEC2013_vs110.vcxproj.filters +++ b/Util/samples/Units/Units_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {80972216-51a3-434a-8d03-b845ae970d32} + {4df59e07-4869-40b6-a79e-31d884457c97} - {7ffd3d6b-ff63-43e7-b39f-f80aa1ef24ca} + {b44c43a9-6866-4812-a795-3e1f8e440c3e} diff --git a/Util/samples/Units/Units_vs100.vcxproj b/Util/samples/Units/Units_vs100.vcxproj index 43180f81d..79acbba5f 100644 --- a/Util/samples/Units/Units_vs100.vcxproj +++ b/Util/samples/Units/Units_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Unitsd - Unitsd - Unitsd - Units - Units - Units + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + Unitsd + Unitsd + Unitsd + Units + Units + Units - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Util/samples/Units/Units_vs100.vcxproj.filters b/Util/samples/Units/Units_vs100.vcxproj.filters index 56052c283..8136ba61e 100644 --- a/Util/samples/Units/Units_vs100.vcxproj.filters +++ b/Util/samples/Units/Units_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {84fd7f9b-40f2-4e3f-ad6b-069968997168} + {ea715075-2ff3-404e-b569-7f912bf6d73e} - {020a442f-c607-43ea-935a-4cba49478ca1} + {2fc4e557-ea22-48bf-b434-04ef4e0fa365} diff --git a/Util/samples/Units/Units_vs110.vcxproj b/Util/samples/Units/Units_vs110.vcxproj index f79b7d65b..6dfb723f6 100644 --- a/Util/samples/Units/Units_vs110.vcxproj +++ b/Util/samples/Units/Units_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - Unitsd - Unitsd - Unitsd - Units - Units - Units + <_ProjectFileVersion>11.0.61030.0 + Unitsd + Unitsd + Unitsd + Units + Units + Units - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -128,10 +140,8 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin\Unitsd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -141,7 +151,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,10 +170,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin\Units.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -173,7 +181,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -190,7 +198,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -203,7 +210,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +229,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -235,7 +241,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -252,7 +258,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -265,7 +270,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +289,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) diff --git a/Util/samples/Units/Units_vs110.vcxproj.filters b/Util/samples/Units/Units_vs110.vcxproj.filters index 701ddfaff..ac0fc27c9 100644 --- a/Util/samples/Units/Units_vs110.vcxproj.filters +++ b/Util/samples/Units/Units_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {1dc8518e-4773-4269-93de-4a6383e845ed} + {af10826d-7765-4130-9814-afcbaa76690a} - {6df3c059-a00e-406e-bdee-9bcf8e961438} + {aeef1088-b333-4d60-9fbf-5ce99b9384f9} diff --git a/Util/samples/Units/Units_vs120.vcxproj b/Util/samples/Units/Units_vs120.vcxproj index d99ee8f46..ee7f52e55 100644 --- a/Util/samples/Units/Units_vs120.vcxproj +++ b/Util/samples/Units/Units_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Units Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Unitsd Unitsd Unitsd @@ -111,6 +93,36 @@ Units Units + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,14 +136,12 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin\Unitsd.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -156,14 +166,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin\Units.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false @@ -186,11 +194,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -218,11 +225,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -248,11 +254,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -280,11 +285,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -298,8 +302,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Util/samples/Units/Units_vs120.vcxproj.filters b/Util/samples/Units/Units_vs120.vcxproj.filters index 701ddfaff..5efe4687a 100644 --- a/Util/samples/Units/Units_vs120.vcxproj.filters +++ b/Util/samples/Units/Units_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {1dc8518e-4773-4269-93de-4a6383e845ed} + {0d26ca71-5bae-4702-b8a8-f719a8e29e39} - {6df3c059-a00e-406e-bdee-9bcf8e961438} + {86048327-ed50-44d1-be58-c458f96cfd37} diff --git a/Util/samples/Units/Units_x64_vs100.vcxproj b/Util/samples/Units/Units_x64_vs100.vcxproj index 839a9b647..dedf8dbce 100644 --- a/Util/samples/Units/Units_x64_vs100.vcxproj +++ b/Util/samples/Units/Units_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Unitsd - Unitsd - Unitsd - Units - Units - Units + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + Unitsd + Unitsd + Unitsd + Units + Units + Units - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Util/samples/Units/Units_x64_vs100.vcxproj.filters b/Util/samples/Units/Units_x64_vs100.vcxproj.filters index e1b4c445a..dcf5f293c 100644 --- a/Util/samples/Units/Units_x64_vs100.vcxproj.filters +++ b/Util/samples/Units/Units_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {b40ec4c5-25e8-442d-be92-e0493020723e} + {fa0c1b23-17e9-458e-8874-c109e5cf6c49} - {91b7c4f6-8714-44f0-a55b-697714a39da8} + {5d33ccca-6b11-4a53-83c6-5c7e87e822b1} diff --git a/Util/samples/Units/Units_x64_vs110.vcxproj b/Util/samples/Units/Units_x64_vs110.vcxproj index d80a8ff48..c99a34c96 100644 --- a/Util/samples/Units/Units_x64_vs110.vcxproj +++ b/Util/samples/Units/Units_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - Unitsd - Unitsd - Unitsd - Units - Units - Units + <_ProjectFileVersion>11.0.61030.0 + Unitsd + Unitsd + Unitsd + Units + Units + Units - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -128,10 +140,8 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin64\Unitsd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -141,7 +151,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,10 +170,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin64\Units.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -173,7 +181,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -190,7 +198,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -203,7 +210,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +229,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -235,7 +241,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -252,7 +258,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -265,7 +270,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +289,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) diff --git a/Util/samples/Units/Units_x64_vs110.vcxproj.filters b/Util/samples/Units/Units_x64_vs110.vcxproj.filters index 03bb0236b..43154d941 100644 --- a/Util/samples/Units/Units_x64_vs110.vcxproj.filters +++ b/Util/samples/Units/Units_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {9bb6cc92-9dab-47a1-b120-72ab7e016ade} + {1738b2a8-a266-4ef3-8a93-5c250e8f1074} - {babea64d-123a-48bf-b56a-8eb952f153a4} + {5592bbe2-e505-4bf4-a2db-55310e87e583} diff --git a/Util/samples/Units/Units_x64_vs120.vcxproj b/Util/samples/Units/Units_x64_vs120.vcxproj index aac7fc3d6..47cb65ddb 100644 --- a/Util/samples/Units/Units_x64_vs120.vcxproj +++ b/Util/samples/Units/Units_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Units Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 Unitsd Unitsd Unitsd @@ -111,6 +93,36 @@ Units Units + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,14 +136,12 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin64\Unitsd.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true @@ -156,14 +166,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) bin64\Units.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false @@ -186,11 +194,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -218,11 +225,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -248,11 +254,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -280,11 +285,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;%(AdditionalDependencies) @@ -298,8 +302,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Util/samples/Units/Units_x64_vs120.vcxproj.filters b/Util/samples/Units/Units_x64_vs120.vcxproj.filters index 03bb0236b..671547cdc 100644 --- a/Util/samples/Units/Units_x64_vs120.vcxproj.filters +++ b/Util/samples/Units/Units_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {9bb6cc92-9dab-47a1-b120-72ab7e016ade} + {bbc2f6f1-01c3-4d1b-b25f-fc554fb49435} - {babea64d-123a-48bf-b56a-8eb952f153a4} + {c77a292f-bf0c-42a0-b396-c2fcca44b578} diff --git a/Util/samples/pkill/pkill_WEC2013_vs110.vcxproj.filters b/Util/samples/pkill/pkill_WEC2013_vs110.vcxproj.filters index 965ffba99..e39e9e875 100644 --- a/Util/samples/pkill/pkill_WEC2013_vs110.vcxproj.filters +++ b/Util/samples/pkill/pkill_WEC2013_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {0a5dd386-9ef0-468a-9113-6c432362b8b6} + {5a761db5-fc86-49bb-abc1-0551a1533f94} diff --git a/Util/samples/pkill/pkill_vs100.vcxproj b/Util/samples/pkill/pkill_vs100.vcxproj index bd6e14f6d..0ccffaee2 100644 --- a/Util/samples/pkill/pkill_vs100.vcxproj +++ b/Util/samples/pkill/pkill_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - pkilld - pkilld - pkilld - pkill - pkill - pkill + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + pkilld + pkilld + pkilld + pkill + pkill + pkill - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Util/samples/pkill/pkill_vs100.vcxproj.filters b/Util/samples/pkill/pkill_vs100.vcxproj.filters index 8d601920f..762348a5e 100644 --- a/Util/samples/pkill/pkill_vs100.vcxproj.filters +++ b/Util/samples/pkill/pkill_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {1dd02ef4-9975-4ac1-a3a6-0df726f390d1} + {f16b4c51-53d0-40c1-8646-9087085a2dae} diff --git a/Util/samples/pkill/pkill_vs110.vcxproj b/Util/samples/pkill/pkill_vs110.vcxproj index 00ebe00f5..816dbd0c4 100644 --- a/Util/samples/pkill/pkill_vs110.vcxproj +++ b/Util/samples/pkill/pkill_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - pkilld - pkilld - pkilld - pkill - pkill - pkill + <_ProjectFileVersion>11.0.61030.0 + pkilld + pkilld + pkilld + pkill + pkill + pkill - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Util/samples/pkill/pkill_vs110.vcxproj.filters b/Util/samples/pkill/pkill_vs110.vcxproj.filters index 8fdb8b916..41d2ae0e8 100644 --- a/Util/samples/pkill/pkill_vs110.vcxproj.filters +++ b/Util/samples/pkill/pkill_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {0e604fec-1adc-4e73-bbfb-706ef6b11984} + {464058e9-147b-4df5-9c83-91bb999a8a9c} diff --git a/Util/samples/pkill/pkill_vs120.vcxproj b/Util/samples/pkill/pkill_vs120.vcxproj index add876e4f..93d05c20b 100644 --- a/Util/samples/pkill/pkill_vs120.vcxproj +++ b/Util/samples/pkill/pkill_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ pkill Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 pkilld pkilld pkilld @@ -111,6 +93,36 @@ pkill pkill + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Util/samples/pkill/pkill_vs120.vcxproj.filters b/Util/samples/pkill/pkill_vs120.vcxproj.filters index 8fdb8b916..6a72e9c76 100644 --- a/Util/samples/pkill/pkill_vs120.vcxproj.filters +++ b/Util/samples/pkill/pkill_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {0e604fec-1adc-4e73-bbfb-706ef6b11984} + {29c84c9f-90f8-43d1-8585-417577002ab1} diff --git a/Util/samples/pkill/pkill_x64_vs100.vcxproj b/Util/samples/pkill/pkill_x64_vs100.vcxproj index 36d49f5cc..f9fa6182b 100644 --- a/Util/samples/pkill/pkill_x64_vs100.vcxproj +++ b/Util/samples/pkill/pkill_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - pkilld - pkilld - pkilld - pkill - pkill - pkill + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + pkilld + pkilld + pkilld + pkill + pkill + pkill - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Util/samples/pkill/pkill_x64_vs100.vcxproj.filters b/Util/samples/pkill/pkill_x64_vs100.vcxproj.filters index 26c49b341..2c1641558 100644 --- a/Util/samples/pkill/pkill_x64_vs100.vcxproj.filters +++ b/Util/samples/pkill/pkill_x64_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {2e1359c4-cbd0-41ca-ada1-95455c90b06d} + {4dcceba5-159c-469e-ac06-7b55f1f27e00} diff --git a/Util/samples/pkill/pkill_x64_vs110.vcxproj b/Util/samples/pkill/pkill_x64_vs110.vcxproj index c3cb04b49..21a7c43fb 100644 --- a/Util/samples/pkill/pkill_x64_vs110.vcxproj +++ b/Util/samples/pkill/pkill_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - pkilld - pkilld - pkilld - pkill - pkill - pkill + <_ProjectFileVersion>11.0.61030.0 + pkilld + pkilld + pkilld + pkill + pkill + pkill - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Util/samples/pkill/pkill_x64_vs110.vcxproj.filters b/Util/samples/pkill/pkill_x64_vs110.vcxproj.filters index d7a849586..739cb6fc8 100644 --- a/Util/samples/pkill/pkill_x64_vs110.vcxproj.filters +++ b/Util/samples/pkill/pkill_x64_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {c13f7968-b19f-4e0f-af08-687e0b4810e9} + {1e20782b-4994-4005-a6ed-6f46108fe650} diff --git a/Util/samples/pkill/pkill_x64_vs120.vcxproj b/Util/samples/pkill/pkill_x64_vs120.vcxproj index 757d40dbd..bc45bfae7 100644 --- a/Util/samples/pkill/pkill_x64_vs120.vcxproj +++ b/Util/samples/pkill/pkill_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ pkill Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 pkilld pkilld pkilld @@ -111,6 +93,36 @@ pkill pkill + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Util/samples/pkill/pkill_x64_vs120.vcxproj.filters b/Util/samples/pkill/pkill_x64_vs120.vcxproj.filters index d7a849586..6c80d5519 100644 --- a/Util/samples/pkill/pkill_x64_vs120.vcxproj.filters +++ b/Util/samples/pkill/pkill_x64_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {c13f7968-b19f-4e0f-af08-687e0b4810e9} + {fa6f8f3c-5453-4759-bd63-e15a10503241} diff --git a/Util/samples/samples_vs120.sln b/Util/samples/samples_vs120.sln index 1bcadc71a..74e648704 100644 --- a/Util/samples/samples_vs120.sln +++ b/Util/samples/samples_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pkill", "pkill\pkill_vs120.vcxproj", "{63EDD785-29E1-3073-87EB-3CE788A4A1DE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleApp", "SampleApp\SampleApp_vs120.vcxproj", "{C3F12C11-469F-3FB6-8C95-8638F78FF7C0}" diff --git a/Util/samples/samples_x64_vs120.sln b/Util/samples/samples_x64_vs120.sln index 52ef294e3..91a4e48cc 100644 --- a/Util/samples/samples_x64_vs120.sln +++ b/Util/samples/samples_x64_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pkill", "pkill\pkill_x64_vs120.vcxproj", "{63EDD785-29E1-3073-87EB-3CE788A4A1DE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleApp", "SampleApp\SampleApp_x64_vs120.vcxproj", "{C3F12C11-469F-3FB6-8C95-8638F78FF7C0}" diff --git a/Util/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters b/Util/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters index 575eaf623..3db12b7bd 100644 --- a/Util/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters +++ b/Util/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters @@ -2,64 +2,64 @@ - {d56aa6b3-e804-4e72-b293-545b5fd5839e} + {be2d865c-3c64-46d7-97ad-97776ca8ad45} - {66ed56b9-9d58-4d45-8403-6c330d13e608} + {a25955a5-0ab4-429c-89ef-0b30ded85214} - {0e5040cb-15de-4e22-a965-8b3f79df899d} + {65f8fb60-db36-4b32-8e93-b65029ff3633} - {4bb97394-3e83-43be-a8db-2ee8842f8cac} + {b4e15bb6-16e2-47fd-ba15-4b1652e3dbd0} - {adc6e8ad-e1e8-4987-b3ea-438709cf4ac5} + {f2c49467-8ede-4598-a7c5-1e04570fa3c9} - {489cc7d4-27c5-40f2-8423-07a2ca219d70} + {61112306-50e2-4be8-be76-c44fb15f6614} - {89f90026-abb3-438d-962a-e197ef36b57b} + {e1e61883-1845-40c3-b783-7d4366c94618} - {2862c9ad-4a30-4f6f-b6a5-d53dfb0f6a2b} + {17936256-9422-4083-a054-9cc87e2710b5} - {d30053dc-f068-4a0d-acb4-8343e5b4026c} + {e460a092-f188-4607-bfe0-221c80a6ad87} - {c081225b-edd7-4ccf-b695-19a7cb24b68b} + {be799bd5-fed1-4c41-8152-df8e5831173b} - {c92f7055-37e1-4e1f-ae33-5f73db0ed911} + {f1c77111-a361-485a-813b-015febafd193} - {1365cd62-72d0-4490-9234-809ed5622e39} + {51445f35-39a6-4d46-b857-ba2ace86df24} - {ec65245a-b92c-46bd-b462-596043fc75f6} + {9044cd39-794b-48db-b5f8-78665ef11e74} - {8ccf9bcd-9c80-453f-8e47-600775957147} + {c49e1ed9-e42c-4167-aa70-27a0bdf6cdd6} - {dfe95da3-1738-40a7-8832-0c137a731a2f} + {fcab84c4-206d-4447-b789-12ccf8a45232} - {bc2e15a0-1c50-42a5-9554-c1bd108ff91c} + {372338f1-6826-4b39-81b6-ff38b4bcabf3} - {82c574ed-c71b-432d-ad88-1f069c46603a} + {b14f5e12-15e6-4102-930c-11f62fdbe194} - {b946978d-8b92-443f-a573-d25abda33bf9} + {8a94833e-d619-4cf3-b40e-a2e7ac9f3f66} - {fa6a9486-ddd9-4985-9fca-eeda1ddd74b3} + {ac517692-d9d7-4ed2-961a-028d26214ee3} - {4c4ed1c8-3c9e-4408-b03a-485a59b3efe9} + {fe8ac6e4-93b9-47a3-8adf-3f33762af484} diff --git a/Util/testsuite/TestSuite_vs100.vcxproj b/Util/testsuite/TestSuite_vs100.vcxproj index eb6f8b026..98518b3d7 100644 --- a/Util/testsuite/TestSuite_vs100.vcxproj +++ b/Util/testsuite/TestSuite_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Util/testsuite/TestSuite_vs100.vcxproj.filters b/Util/testsuite/TestSuite_vs100.vcxproj.filters index f1cf98b6d..3fc868afd 100644 --- a/Util/testsuite/TestSuite_vs100.vcxproj.filters +++ b/Util/testsuite/TestSuite_vs100.vcxproj.filters @@ -2,64 +2,64 @@ - {da934654-a22b-46b9-bc20-02d06f2128e8} + {b1e97ee0-7e39-4f1a-aff5-e52dc49f9ce3} - {ab04f756-f202-4bc4-90cb-5bea842b5762} + {1cf07bcf-3ab7-42ef-89e9-46b9852222b2} - {ea7652ea-5312-4e37-866b-04714533553a} + {1bd4d37e-a99a-49de-af1c-9cd1298c1871} - {62884091-5255-4b33-a715-0ba74ab4f19f} + {656c6728-b6ab-4353-8777-140c1178bffb} - {b4a82fec-105b-4c24-b57e-969a47b8aee3} + {1c9585d3-7a62-4d68-b0f4-a837f541408c} - {fde692fb-513f-4f99-960d-0a3a45f4082c} + {95ec605f-5697-49fe-bdc4-6f7ab45c33d3} - {e7030bdd-9cba-45c5-a7e6-246e89b05598} + {29e3e891-ab3f-4d11-a8b4-994fc696d67f} - {b733a967-7b77-44c8-8ed6-8b05c3c81825} + {f5b532be-d0e6-4a89-8b50-02f244d0ae1b} - {f83cb7ad-8e5f-442e-96f4-2c48351ee9b2} + {f7c00b3d-5140-496c-af9a-5c3984b75cb3} - {af14b60d-d5ee-4f9e-a7f6-4d56272c5248} + {8513d55c-f68e-43db-a0a2-fe206bbb0eb5} - {f6f0f554-60b0-40f6-8b14-ef8af37eb96f} + {2a057d43-0a75-4c16-a4d4-7eb144465eda} - {088c5849-7c34-4ae4-a8d9-5c92f5607598} + {5875d27f-b029-47cb-9221-84d888ec8d4c} - {4de605d3-3656-4ecc-b8c4-c4604fc6e14b} + {8f293cb4-5744-488a-9426-5eddb68f8904} - {bd2e5aee-69c4-4512-a93a-0d9f5860653f} + {c98ad119-4517-45f0-9c62-4d7f8678d5b1} - {9e501f86-b5c7-4d5e-a73d-be06c7194585} + {04d43a07-d3c4-4413-9c3c-327e126ffef8} - {bc7af789-72cd-4506-bc27-36fcc03fa2ef} + {abd74990-0118-4d51-9f4c-97706cb8c022} - {5b60f93e-a6e5-4d39-8cdb-fca2fc9d6476} + {96194904-0750-4f5e-b1b5-c9b4c0037fd5} - {7a92e988-77bc-4c4f-850c-5cfc0880b44b} + {705a903e-5a62-4daa-88ab-e5ea919bba78} - {a755a382-789f-467a-8e4e-82e15e78eda1} + {a747d857-9a5f-4eb5-abda-f5643a0fa229} - {a8b66870-3a25-4ff4-a2c5-f8b435808451} + {b7520c92-5b41-4e78-86dc-0112b0422bd7} diff --git a/Util/testsuite/TestSuite_vs110.vcxproj b/Util/testsuite/TestSuite_vs110.vcxproj index 507744a02..aac6bb27b 100644 --- a/Util/testsuite/TestSuite_vs110.vcxproj +++ b/Util/testsuite/TestSuite_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/Util/testsuite/TestSuite_vs110.vcxproj.filters b/Util/testsuite/TestSuite_vs110.vcxproj.filters index b41fac995..28e0a1547 100644 --- a/Util/testsuite/TestSuite_vs110.vcxproj.filters +++ b/Util/testsuite/TestSuite_vs110.vcxproj.filters @@ -2,64 +2,64 @@ - {96624136-742a-462b-8c99-cb7a525faec2} + {3d99b31f-b463-4841-8c7e-f82cd7474343} - {dda47104-a126-44de-a247-172d1599fa81} + {2ff3fd4e-6932-44c2-8e21-30fb3bd9f12d} - {73d0ebc6-42e3-4e48-99e6-6bbb52dc3c50} + {60e0395c-52ce-4ad5-beea-4f7b96c034b1} - {e8bf0a86-f574-404f-9555-509567dce30c} + {875ae24c-381d-4033-8717-0f596d75d386} - {40aa0b07-0d45-4ed8-b95c-01e2df973dfd} + {c5064aae-eb2a-4b1c-bd8a-91a19bf63eb5} - {cd9ec5ca-74b3-4f24-b6cf-9b1c010cf4cb} + {23139ed8-c710-4318-bf12-aa487190454b} - {9ab5b980-05d6-4d4f-baa3-afc540a501dc} + {f77d1007-fcd2-4851-b07d-34ba19c15800} - {13630e1b-54ae-486e-bdcd-692c3929c4f7} + {89abeade-6fd4-4e99-b804-dea2ceb05943} - {e8bbf3d0-c1c4-4609-b1cb-4852fe8a2faa} + {56f76a9d-6ec6-4ece-b2f0-10146143ccb6} - {ffc21e86-50c6-4ac0-a9d3-ac9f02856267} + {6fbb52d5-a1b3-4075-bdc8-168961cdd644} - {967e2436-bd85-4c90-b9bc-19ba5c51d696} + {32b861d6-bf38-4f2a-bd19-96f06b922616} - {3fb4934f-49ff-4caf-84f4-5f36aa071100} + {360cdc97-3e04-4657-a9a3-48a3ba0f168f} - {01e8a2b2-43b4-4980-9945-b3da94e0241c} + {bc28e887-8016-440d-8c1e-695290b85374} - {d75ed7be-4ff5-40e2-80ae-609a393292d6} + {782c5660-93df-4c42-9b70-6f2bedad80af} - {57157104-974d-4ca1-9b8b-bc0f941b9bd9} + {66576355-6427-4cba-bb04-f024bcb311fd} - {81d02b77-bab3-4c09-8be3-fd3e207d22fd} + {223f5171-8d8d-4058-bfb2-f8fcd9229fcf} - {e13b5136-af54-43ca-a8ff-53d585509239} + {b7ce890c-79fa-42e7-b77d-6a94e9577e88} - {87e46c01-367e-4b90-ad50-6d27aedfb565} + {f672d31f-51ba-4933-9fff-b3991eef3213} - {49c4dca6-390d-48d7-a57a-997398737f7e} + {2823a1a2-043a-4c33-a08e-36e5207a8c31} - {34e0a806-6ef9-4610-b0ef-d7e74fd2e4e7} + {dd233ece-bf90-4cb3-805c-1af6aad3b12c} diff --git a/Util/testsuite/TestSuite_vs120.vcxproj b/Util/testsuite/TestSuite_vs120.vcxproj index 094a287e6..9e4765dff 100644 --- a/Util/testsuite/TestSuite_vs120.vcxproj +++ b/Util/testsuite/TestSuite_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Console + Windows MachineX86 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 @@ -192,21 +202,20 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Console + Windows MachineX86 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX86 @@ -256,20 +264,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Console + Windows MachineX86 @@ -288,78 +295,77 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Util/testsuite/TestSuite_vs120.vcxproj.filters b/Util/testsuite/TestSuite_vs120.vcxproj.filters index ff857d0ca..50e10b06b 100644 --- a/Util/testsuite/TestSuite_vs120.vcxproj.filters +++ b/Util/testsuite/TestSuite_vs120.vcxproj.filters @@ -2,64 +2,64 @@ - {96624136-742a-462b-8c99-cb7a525faec2} + {c43a7c66-4375-4cbd-989a-c89e56c8dc8b} - {dda47104-a126-44de-a247-172d1599fa81} + {26e6e126-d613-43ac-a15d-0cace97441df} - {73d0ebc6-42e3-4e48-99e6-6bbb52dc3c50} + {a6356349-f2da-4a7c-8bf3-46f3c1b0cf4b} - {e8bf0a86-f574-404f-9555-509567dce30c} + {9e3f1242-20aa-4c30-b184-b09a00fb45ac} - {40aa0b07-0d45-4ed8-b95c-01e2df973dfd} + {de5176ed-5507-454c-819f-0be1a790ee22} - {cd9ec5ca-74b3-4f24-b6cf-9b1c010cf4cb} + {f6cd192c-dbb8-49d1-b347-ed310c232723} - {9ab5b980-05d6-4d4f-baa3-afc540a501dc} + {abf9f518-c746-4cba-9ed5-3fb3d1eed029} - {13630e1b-54ae-486e-bdcd-692c3929c4f7} + {d2087f4c-7859-4569-93a1-5f56ce1b8617} - {e8bbf3d0-c1c4-4609-b1cb-4852fe8a2faa} + {d1464a3e-9ec1-4203-bd03-9595b443e79a} - {ffc21e86-50c6-4ac0-a9d3-ac9f02856267} + {8ef657d7-04b7-448f-8887-216d956e5b6b} - {967e2436-bd85-4c90-b9bc-19ba5c51d696} + {fe53d73b-0f2b-42d9-a4fe-cd65e4a01b3e} - {3fb4934f-49ff-4caf-84f4-5f36aa071100} + {47424fd2-0dfc-43d9-b60e-abd92ada1dad} - {01e8a2b2-43b4-4980-9945-b3da94e0241c} + {38f40273-891d-464d-ae39-e6fe46da1630} - {d75ed7be-4ff5-40e2-80ae-609a393292d6} + {616b205e-3ff5-487a-99ed-b0df58790019} - {57157104-974d-4ca1-9b8b-bc0f941b9bd9} + {f63964b7-89ed-4d5b-ac9d-795b24213dee} - {81d02b77-bab3-4c09-8be3-fd3e207d22fd} + {b4bf8919-c51a-425f-899a-9c6fed949bb4} - {e13b5136-af54-43ca-a8ff-53d585509239} + {efe78c13-f692-4a0b-8fe8-4d1143871f82} - {87e46c01-367e-4b90-ad50-6d27aedfb565} + {246656c7-00e5-4382-b9b2-595d4cf12791} - {49c4dca6-390d-48d7-a57a-997398737f7e} + {ce48f82f-7956-4131-87d1-f994f201f514} - {34e0a806-6ef9-4610-b0ef-d7e74fd2e4e7} + {f8823286-b7b7-4390-abea-3752fdde829a} @@ -143,6 +143,9 @@ _Suite\Source Files + + _Driver\Source Files + Configuration\Source Files @@ -215,8 +218,5 @@ Timer\Source Files - - _Driver\Source Files - \ No newline at end of file diff --git a/Util/testsuite/TestSuite_x64_vs100.vcxproj b/Util/testsuite/TestSuite_x64_vs100.vcxproj index 7594c8bba..dfd199f16 100644 --- a/Util/testsuite/TestSuite_x64_vs100.vcxproj +++ b/Util/testsuite/TestSuite_x64_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Util/testsuite/TestSuite_x64_vs100.vcxproj.filters b/Util/testsuite/TestSuite_x64_vs100.vcxproj.filters index 175d4b95a..606e3c12e 100644 --- a/Util/testsuite/TestSuite_x64_vs100.vcxproj.filters +++ b/Util/testsuite/TestSuite_x64_vs100.vcxproj.filters @@ -2,64 +2,64 @@ - {58a69f29-12c3-4a4a-9ced-d3c97f601ae8} + {f5888ecc-b3de-4ca7-8a97-a6ff2b64b0c4} - {82d2d715-0749-401f-830e-3dcaac5a4954} + {4993df64-9478-40ad-8703-119a2171c3cb} - {ce37e8f3-4047-476e-8d18-c9c39d04597a} + {59d934c9-c2c7-4efd-b4a2-cd00bc448116} - {e0b7367c-4dd3-4da1-8681-1f6910c843de} + {7626ddce-1f11-4f8a-b7bf-41d40db79877} - {19930256-4e17-4273-87d5-2ae3a083d026} + {63bf4b96-c28f-464d-94e4-3c4f0895b723} - {6a7f6a87-8e0d-498d-b459-4018290c969a} + {d21df2fd-86fd-433e-aede-78ecab7fb2a5} - {8e39eea2-7f2f-4671-82c6-731c76645c88} + {ed1b87cb-d4e0-4858-aed6-39719dc8392d} - {de61fb24-3d90-4860-b5e2-514a41d3d92a} + {d96ca0de-e1b8-431d-800c-c48c3707693d} - {d2fe497d-fbab-41e1-a150-c942bf2f7ac5} + {0ad8ebc9-93fb-4db4-ab85-de7d3732937c} - {f95d9be6-45fb-4d76-9866-f029ed667dde} + {1cbce5c6-1732-4b29-961e-96a8e537fa08} - {d69629fa-f7bd-421e-bb0b-722fd1f8112a} + {f265b414-4131-4b22-9f94-e44eefd701c0} - {42105851-1e6f-499d-a386-8e4039096774} + {59950f6a-2f89-4575-8f78-9d6cd9cb78f0} - {2887cfe1-6762-4ad8-93b9-c453b7a7fee2} + {e222208b-fd4e-4907-b243-de702d46c58e} - {f49c7951-9f8f-48c4-9d1b-1e5886b359ae} + {865cd831-8359-4e81-be50-0862701c618a} - {95768965-64ed-4345-b95b-31badbbb755c} + {09b33877-71dc-4d68-8143-5ad167b5058a} - {4d768c52-fe17-4d38-97eb-104ca1c6e943} + {315c9f94-6767-4df0-8613-278d3888571b} - {b90bb70d-885c-4788-9eb4-0fc6616ef4ef} + {719ee9fb-5e41-4d33-9618-66f77c8d3227} - {cc8831e5-8e5f-4ddc-a791-16bccf036329} + {79c0b30d-e4c2-43bf-82be-76e79489f455} - {9aad8cdc-10cc-41ce-b52e-e19ee659aea9} + {985c58cf-af6f-4cf0-a7a2-c8cb3960596b} - {824e3c73-b212-4934-8de2-e1d2225417f2} + {ed3f9ba4-e1f3-41ec-906c-d2ef10582e9f} diff --git a/Util/testsuite/TestSuite_x64_vs110.vcxproj b/Util/testsuite/TestSuite_x64_vs110.vcxproj index 34b8e20c5..6bed03529 100644 --- a/Util/testsuite/TestSuite_x64_vs110.vcxproj +++ b/Util/testsuite/TestSuite_x64_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;..\..\XML\include;..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/Util/testsuite/TestSuite_x64_vs110.vcxproj.filters b/Util/testsuite/TestSuite_x64_vs110.vcxproj.filters index 1a75b825c..b228c4b23 100644 --- a/Util/testsuite/TestSuite_x64_vs110.vcxproj.filters +++ b/Util/testsuite/TestSuite_x64_vs110.vcxproj.filters @@ -2,64 +2,64 @@ - {a35fecc8-9361-4713-b341-c4905e21e370} + {3950d402-46d3-4060-9ada-2d2c9fc36c5b} - {b7bf0bbc-ccdb-4895-9a49-3f7986c84cd7} + {7227d92a-258d-406e-97f1-abe79b539699} - {1abf2563-ccb3-44aa-bf9b-9ed3b44c874c} + {9794bc79-6254-4026-b16d-73d1c1c92f33} - {413a624c-a718-46e8-ac12-fc72ae9bd59b} + {4f5f3bd8-2df7-4b3c-aab1-d9937ca706a4} - {e6418da9-85d5-4e51-8b17-c2e212b43d44} + {27b4fed1-dd60-4fcb-ab5e-2be1b91afa64} - {34087807-43ed-48cc-a89a-8415ed7f341c} + {d4cd6911-4442-4a75-bf74-a2daf921e75d} - {fa935e5a-9091-4626-b189-69cad7c8d992} + {8fe72910-573b-4c17-988b-b317b98accdb} - {ae55e579-9cf1-48a4-ad05-49d9e98cb5a2} + {d62de5c4-7149-4452-9194-fe55d5ca7f23} - {7e08444e-2bcf-44cb-82c1-cd6c5302c281} + {b63f1e18-7fd1-4b62-b6f9-6e9251b1e284} - {fc7ee45c-f585-4536-9f55-09c5cbd0479d} + {8fc5942d-719e-4bd5-aeb2-4f0b7eef7436} - {b6da558a-5129-4011-987d-62281640a430} + {d32b644c-72de-4c0c-88a8-62c03ef97dc3} - {91001d65-9f31-4527-93c5-daaa20481869} + {7711d4df-9d96-49fc-ae54-b03ec2d2394d} - {abd15ee0-8fd4-4599-a084-93a0849b1b92} + {5027dccd-eb7e-4383-9ee8-8841957a6641} - {69886462-436b-4679-acd4-9949811876fc} + {515e52ce-4076-45a5-b2e6-f65ebf768d3b} - {b106ba11-9052-4eb4-8355-5a548518f23f} + {d1fe7aed-050f-4635-a3e2-5d1ed4b80c65} - {9a95138e-d59c-4def-808c-ece97d137547} + {66285443-b05a-4d81-805b-54ecc02f36a2} - {952fa7bf-80fc-4eee-bcfd-dd4e37241449} + {b623e3cf-eacc-4adb-aace-e2f5894626b9} - {716d92ba-c4f4-427c-92d6-cf73e905ad21} + {1cbf2616-73f1-4a16-9236-e3f2220dea1f} - {a9e8f0e3-5584-47c8-a52f-679f0ff5cc6e} + {7d31f1ed-7ea6-4ec3-858e-ac1efbea61cc} - {cfc53565-7710-4f5a-8ad6-741392a1f4f7} + {9ee166e4-7e27-4f43-9908-6f3fbcf9088c} diff --git a/Util/testsuite/TestSuite_x64_vs120.vcxproj b/Util/testsuite/TestSuite_x64_vs120.vcxproj index 9d859ec36..a3e6de6ee 100644 --- a/Util/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Util/testsuite/TestSuite_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Console + Windows MachineX64 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 @@ -192,21 +202,20 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Console + Windows MachineX64 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX64 @@ -256,20 +264,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Console + Windows MachineX64 @@ -288,78 +295,77 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/Util/testsuite/TestSuite_x64_vs120.vcxproj.filters b/Util/testsuite/TestSuite_x64_vs120.vcxproj.filters index 43afce8d2..bc6c289e2 100644 --- a/Util/testsuite/TestSuite_x64_vs120.vcxproj.filters +++ b/Util/testsuite/TestSuite_x64_vs120.vcxproj.filters @@ -2,64 +2,64 @@ - {a35fecc8-9361-4713-b341-c4905e21e370} + {42112a02-8158-4fde-a6b5-178649604348} - {b7bf0bbc-ccdb-4895-9a49-3f7986c84cd7} + {1ffb660a-30fc-4e2b-b589-e8e18f45cd9b} - {1abf2563-ccb3-44aa-bf9b-9ed3b44c874c} + {c1431f77-ec64-4de5-84bb-93b95f633787} - {413a624c-a718-46e8-ac12-fc72ae9bd59b} + {5baefaea-a147-44e9-9b89-6e59ddc93fbc} - {e6418da9-85d5-4e51-8b17-c2e212b43d44} + {1ee79d0d-d31e-4280-8002-fbb05282a0d4} - {34087807-43ed-48cc-a89a-8415ed7f341c} + {cc4b1415-e04a-46a3-a594-248b644b1d69} - {fa935e5a-9091-4626-b189-69cad7c8d992} + {37550843-7af1-49da-a7d3-c7b5749da7b3} - {ae55e579-9cf1-48a4-ad05-49d9e98cb5a2} + {b10297ba-13e0-49da-9064-ee4932464710} - {7e08444e-2bcf-44cb-82c1-cd6c5302c281} + {6d1d3733-88c8-4838-acae-fd82ec648e90} - {fc7ee45c-f585-4536-9f55-09c5cbd0479d} + {6062d6da-9927-4ebd-9234-afa0c3a10400} - {b6da558a-5129-4011-987d-62281640a430} + {114c54c7-a44c-4333-a8e7-9e85d7c18c51} - {91001d65-9f31-4527-93c5-daaa20481869} + {d4635106-8520-430b-b43c-fbef92649b2f} - {abd15ee0-8fd4-4599-a084-93a0849b1b92} + {92c00d26-1ce0-4446-b79f-f823f2a959bd} - {69886462-436b-4679-acd4-9949811876fc} + {fb22346c-3c8b-4cda-ab30-c87d18a67264} - {b106ba11-9052-4eb4-8355-5a548518f23f} + {2c3e6107-a610-44ce-9459-9d81f0a3adf1} - {9a95138e-d59c-4def-808c-ece97d137547} + {ece3f473-ef23-41ce-8518-3e860546fd12} - {952fa7bf-80fc-4eee-bcfd-dd4e37241449} + {3a3bb109-4d52-4e0d-a462-421b7062b615} - {716d92ba-c4f4-427c-92d6-cf73e905ad21} + {ea544660-9d73-407c-9a96-bd6e9d9f7d32} - {a9e8f0e3-5584-47c8-a52f-679f0ff5cc6e} + {61d4947e-b469-4753-8127-54dbff41a404} - {cfc53565-7710-4f5a-8ad6-741392a1f4f7} + {dee8078f-ab0a-4db8-803f-59f099d09721} @@ -143,6 +143,9 @@ _Suite\Source Files + + _Driver\Source Files + Configuration\Source Files @@ -215,8 +218,5 @@ Timer\Source Files - - _Driver\Source Files - \ No newline at end of file diff --git a/XML/XML_WEC2013_vs110.vcxproj.filters b/XML/XML_WEC2013_vs110.vcxproj.filters index b63f05947..a98cfc744 100644 --- a/XML/XML_WEC2013_vs110.vcxproj.filters +++ b/XML/XML_WEC2013_vs110.vcxproj.filters @@ -2,40 +2,40 @@ - {b03866c9-da1c-477a-85ec-e116273265a5} + {b8db42bc-e358-4774-a88d-8344466a5efd} - {c557e39d-6a6e-4c66-9d82-9813e2ffe703} + {040a1c14-0246-4842-8c11-eba19e3e94f0} - {b8dd0b06-b798-4764-b057-749f04f7346f} + {2223b9ec-8148-446c-8b79-41b386dcdf6c} - {d9d038a9-43fb-4410-8a7b-9414e34e4fbb} + {a06a6ef7-1f48-4de0-95ff-5835b617403f} - {3c678c30-078e-4642-ab7d-3874110a91ee} + {af68edce-6f69-47c0-9dfc-aa4e4a57bb4c} - {a58b929e-d5ad-494d-803d-75ce0fb59947} + {3c50bd5e-06e8-479a-8ced-6bdd7d6c2d3e} - {00369cdb-51ec-4a1a-8f3f-0f745712ec7f} + {40b81b93-eded-40f0-bf8b-d81fe1e491fa} - {3c59d6e1-327f-44b1-9fe4-356af485866f} + {a2d956bf-ac32-4eaf-b86b-6616ca8dc412} - {4565e924-7be3-4af9-b8cb-25e44fc643e2} + {78e187e7-3a2d-431a-83a0-649724b9860a} - {f7c75839-5cb5-46a6-872e-d5d4d62af8d2} + {dd51de33-41e2-48d0-8a58-da7f46045b3e} - {179c4ba8-f996-48c3-8202-c58648ec363e} + {b6b4444d-de4d-45a7-b298-db4883ba791d} - {6c6c3362-6ebd-48b2-9cdc-3bb96bd9becf} + {77d103fa-c6f2-44a5-91d6-e01a4a21db9b} diff --git a/XML/XML_vs100.vcxproj b/XML/XML_vs100.vcxproj index 17e10406c..b482645a5 100644 --- a/XML/XML_vs100.vcxproj +++ b/XML/XML_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoXMLd - PocoXMLmdd - PocoXMLmtd - PocoXML - PocoXMLmd - PocoXMLmt + ..\bin\ + obj\$(Configuration)\ + true + ..\bin\ + obj\$(Configuration)\ + false + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + PocoXMLd + PocoXMLmdd + PocoXMLmtd + PocoXML + PocoXMLmd + PocoXMLmt - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib\PocoXMLmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib\PocoXMLmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib\PocoXMLmdd.lib - + Disabled OnlyExplicitInline @@ -423,28 +423,28 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true + true + true + true + true diff --git a/XML/XML_vs100.vcxproj.filters b/XML/XML_vs100.vcxproj.filters index 175c0d1f0..8a560ff97 100644 --- a/XML/XML_vs100.vcxproj.filters +++ b/XML/XML_vs100.vcxproj.filters @@ -2,40 +2,40 @@ - {761d5d96-562b-4e69-a0e5-74cf597d06cd} + {3f4ba71d-90df-4bf5-ab9c-b5dee3138cf6} - {9d2cff04-4fdd-41db-a922-44966afaa5e8} + {9e228f47-5d5e-4efe-90dc-0ff0ef2f36ff} - {b5a5c2e7-2630-4fe2-a394-b8fdee30c055} + {44362291-a50f-4204-a866-4f82126918da} - {58a7b7f9-1272-48c4-ad16-0ef775af6cbc} + {c650d5d9-a18a-4022-b14d-eb7fe78d4854} - {0493ef26-197a-4d05-b916-2ff5e7b51119} + {0af1b0ae-3256-4f2b-9cd3-363401147a11} - {0ed2264e-1476-42e7-9aad-2f7e81ad8e55} + {50148e26-5279-4489-9b82-9d8a0689670a} - {6f1698a7-4df7-48fa-ade8-db33bcd23c1e} + {6c6bbc31-5d2a-4097-a22b-c06dfe7e0606} - {b4829cf4-4869-4e5d-97cd-d218af2d99c7} + {09f6d0a8-814f-473d-ae75-55fd5e220767} - {5c6e8198-4c99-4086-8496-cd11d1ce4c7b} + {adfdd931-47c9-49c0-91e6-800e397c3dd2} - {3edd37a9-3f30-4eee-8d41-97e69783a4ab} + {49487134-190a-4554-b4d5-57838e4def50} - {27772c4e-df7e-4fcf-89c7-3c6664cf3195} + {dd2899aa-d822-4ba2-b0bd-7f7e18505578} - {f71c239d-97cb-4c57-acd8-2e5a23a89e8e} + {00e7462f-1fda-4d76-be4c-7a6069e01686} diff --git a/XML/XML_vs110.vcxproj b/XML/XML_vs110.vcxproj index 5fede76c8..ebe6f02e7 100644 --- a/XML/XML_vs110.vcxproj +++ b/XML/XML_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoXMLd - PocoXMLmdd - PocoXMLmtd - PocoXML - PocoXMLmd - PocoXMLmt + <_ProjectFileVersion>11.0.61030.0 + PocoXMLd + PocoXMLmdd + PocoXMLmtd + PocoXML + PocoXMLmd + PocoXMLmt - + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -124,10 +136,8 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoXMLd.dll true true @@ -138,7 +148,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -157,10 +167,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoXML.dll true false @@ -172,7 +180,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,13 +198,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoXMLmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +222,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib\PocoXMLmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,13 +245,12 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoXMLmdd.lib - + Disabled OnlyExplicitInline @@ -265,10 +270,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\lib\PocoXMLmd.lib @@ -429,24 +432,29 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - + + true + true + true + true + diff --git a/XML/XML_vs110.vcxproj.filters b/XML/XML_vs110.vcxproj.filters index 12f745461..b76d04637 100644 --- a/XML/XML_vs110.vcxproj.filters +++ b/XML/XML_vs110.vcxproj.filters @@ -2,40 +2,40 @@ - {5b85d48e-f67b-43e2-a615-e97a69572aa4} + {cbbfc934-794b-47aa-b749-db3cbbd8b377} - {0a28aebf-39d0-4748-9de6-72c51904a27a} + {c6994c13-891b-4848-94cd-b1c6b6a57b17} - {66adb544-6251-4384-8b5e-8f2196b62c12} + {de885fd5-0c16-4b49-b886-29a60fae333f} - {3b328611-54de-4aae-b97a-f36191ffa9da} + {d267849f-00ef-4559-a00c-a89eafb804f6} - {be469aed-0546-4e1d-a3c1-0a1211719c24} + {fbddbcb0-cb28-494b-8f58-44c42db964e4} - {66370838-ff99-4dac-a922-656037d2ff8b} + {8338b9e7-87a4-4a97-b2bc-6ca751e54599} - {11da5e02-94c9-457a-a2fb-6f685bbdc8e1} + {47730228-ed35-4af7-91c7-778915d59d3a} - {0a88c6cf-fc18-4b1c-9851-a6586105593c} + {cc5f8115-9186-4b28-b7b3-4025395fb356} - {ed9358d4-31d2-4542-870d-7c380d020ca4} + {ec075743-c2b2-42d4-8eb0-4aa01c0aad2b} - {c76b8795-31b0-4eb0-a0b6-25244ac8b410} + {8f7e1a68-1d34-46ad-b245-c11bf396a890} - {5a01af83-f00f-43ff-a7a3-ec0b75c519b6} + {16c88117-38e1-4bc2-8914-47efa7767960} - {e025d3b9-be20-41f8-a7ea-abbe43d8692f} + {54c3033a-525a-4d49-918b-92c29893836b} diff --git a/XML/XML_vs120.sln b/XML/XML_vs120.sln index a906376ed..748177797 100644 --- a/XML/XML_vs120.sln +++ b/XML/XML_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "XML", "XML_vs120.vcxproj", "{9E211743-85FE-4977-82F3-4F04B40C912D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_vs120.vcxproj", "{C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {9E211743-85FE-4977-82F3-4F04B40C912D}.release_shared|Win32.ActiveCfg = release_shared|Win32 {9E211743-85FE-4977-82F3-4F04B40C912D}.release_shared|Win32.Build.0 = release_shared|Win32 - {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_shared|Win32.ActiveCfg = release_shared|Win32 {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_shared|Win32.Build.0 = release_shared|Win32 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/XML/XML_vs120.vcxproj b/XML/XML_vs120.vcxproj index 0b1123970..9e0afc56f 100644 --- a/XML/XML_vs120.vcxproj +++ b/XML/XML_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ XML Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoXMLd PocoXMLmdd PocoXMLmtd @@ -107,6 +93,32 @@ PocoXMLmd PocoXMLmt + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + Disabled @@ -120,14 +132,12 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoXMLd.dll true true @@ -153,14 +163,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin\PocoXML.dll true false @@ -185,12 +193,11 @@ true true true - + ..\lib\PocoXMLmtd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoXMLmtd.lib @@ -211,11 +218,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib\PocoXMLmt.lib @@ -234,12 +240,11 @@ true true true - + ..\lib\PocoXMLmdd.pdb Level3 EditAndContinue Default - %(DisableSpecificWarnings) ..\lib\PocoXMLmdd.lib @@ -260,174 +265,172 @@ true true true - + ..\lib\PocoXMLmd.pdb Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\lib\PocoXMLmd.lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true true @@ -446,8 +449,13 @@ - + + true + true + true + true + - - - \ No newline at end of file + + + diff --git a/XML/XML_vs120.vcxproj.filters b/XML/XML_vs120.vcxproj.filters index 12f745461..a6084b6a9 100644 --- a/XML/XML_vs120.vcxproj.filters +++ b/XML/XML_vs120.vcxproj.filters @@ -2,40 +2,40 @@ - {5b85d48e-f67b-43e2-a615-e97a69572aa4} + {9cb3bb68-ddad-43d9-94a2-723539c06a4d} - {0a28aebf-39d0-4748-9de6-72c51904a27a} + {d3d60099-7796-4514-9eb2-b4ac1c05ebb6} - {66adb544-6251-4384-8b5e-8f2196b62c12} + {cd5d7f58-74d1-437f-91ec-b6b239eb6312} - {3b328611-54de-4aae-b97a-f36191ffa9da} + {38bd6460-3a60-497e-a2b7-66e4b30ee224} - {be469aed-0546-4e1d-a3c1-0a1211719c24} + {948ca7eb-fa3a-4d84-89bb-7928a5697b5d} - {66370838-ff99-4dac-a922-656037d2ff8b} + {c1c7f3b5-9108-4ff7-984b-266ca1091050} - {11da5e02-94c9-457a-a2fb-6f685bbdc8e1} + {f232d943-0043-40a9-a45b-8b0aa2533ef0} - {0a88c6cf-fc18-4b1c-9851-a6586105593c} + {e24cad98-99fa-471e-8a4a-481a86c2f0cf} - {ed9358d4-31d2-4542-870d-7c380d020ca4} + {f07b8699-9866-4470-a256-9a91767f2401} - {c76b8795-31b0-4eb0-a0b6-25244ac8b410} + {0a8dd402-6c9e-4ade-8401-b253257b4337} - {5a01af83-f00f-43ff-a7a3-ec0b75c519b6} + {f63c5a63-4c68-4434-b810-2a2c8c3eba99} - {e025d3b9-be20-41f8-a7ea-abbe43d8692f} + {a890aea7-a1ee-4e60-b04e-bccd7ce74e2e} diff --git a/XML/XML_x64_vs100.vcxproj b/XML/XML_x64_vs100.vcxproj index a81b1ff16..260d116ab 100644 --- a/XML/XML_x64_vs100.vcxproj +++ b/XML/XML_x64_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoXML64d - PocoXMLmdd - PocoXMLmtd - PocoXML64 - PocoXMLmd - PocoXMLmt + ..\bin64\ + obj64\$(Configuration)\ + true + ..\bin64\ + obj64\$(Configuration)\ + false + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + PocoXML64d + PocoXMLmdd + PocoXMLmtd + PocoXML64 + PocoXMLmd + PocoXMLmt - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib64\PocoXMLmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib64\PocoXMLmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib64\PocoXMLmdd.lib - + Disabled OnlyExplicitInline @@ -421,28 +421,28 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true + true + true + true + true diff --git a/XML/XML_x64_vs100.vcxproj.filters b/XML/XML_x64_vs100.vcxproj.filters index d9376f31c..3e87850d5 100644 --- a/XML/XML_x64_vs100.vcxproj.filters +++ b/XML/XML_x64_vs100.vcxproj.filters @@ -2,40 +2,40 @@ - {b2e86b19-8860-4bd9-a86c-f2a737432655} + {fe477e1f-5873-4034-946e-6d7e6d446018} - {4693f8ec-1527-4dae-a4a7-7e7e0ac71478} + {30d28702-6453-4b73-91e6-972a285f1dc7} - {7d473cfa-f56f-427c-b01f-ea32fa4ba1dc} + {d89a0225-9b8b-4867-a85c-1a15f15a18f4} - {8f4a73a7-77f6-4550-a845-5cce1bc14b04} + {d0e7e346-77af-4d19-afd3-81961d98a713} - {cbcf83e0-7ee1-4c5f-aa55-2862423ec959} + {081097af-eaee-429c-8aac-fa9ec728e8d5} - {67294948-854f-46c8-be7e-25f42f66b553} + {9f204dd6-9330-43a9-b573-b1d5ffbd80ed} - {96ec11c3-b28a-46b8-80b4-8c606542888c} + {5e728400-6fe4-483f-9836-e5143c6f324b} - {47fa2406-ff59-448a-bc8c-14928d07b3fa} + {3008b7cb-9dee-484f-b05d-a9105b017190} - {67f8c7d9-f9fb-4f49-a061-7be4e77884d9} + {c4e9e3d0-b455-4245-a984-979bec3e2448} - {6f818291-6024-4839-b255-3657b5ec0fd2} + {a0116970-d16e-4b47-8c30-da7eb7bfda1f} - {eaf07f0a-31c2-4638-af1d-9207e707bbfa} + {5da9294f-2cf2-4102-8d00-d86d0899f213} - {b6b31fd8-3e70-493b-a17c-8365724b072f} + {ea38c98c-4d5b-46ca-aba4-7fa482bd2d68} diff --git a/XML/XML_x64_vs110.vcxproj b/XML/XML_x64_vs110.vcxproj index f3e3f12b4..e0a1efbd5 100644 --- a/XML/XML_x64_vs110.vcxproj +++ b/XML/XML_x64_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoXML64d - PocoXMLmdd - PocoXMLmtd - PocoXML64 - PocoXMLmd - PocoXMLmt + <_ProjectFileVersion>11.0.61030.0 + PocoXML64d + PocoXMLmdd + PocoXMLmtd + PocoXML64 + PocoXMLmd + PocoXMLmt - + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -124,10 +136,8 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoXML64d.dll true true @@ -138,7 +148,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -157,10 +167,8 @@ Level3 Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoXML64.dll true false @@ -172,7 +180,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,13 +198,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoXMLmtd.lib - + Disabled OnlyExplicitInline @@ -215,13 +222,12 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoXMLmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,13 +245,12 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoXMLmdd.lib - + Disabled OnlyExplicitInline @@ -264,7 +269,6 @@ Level3 Default - %(DisableSpecificWarnings) ..\lib64\PocoXMLmd.lib @@ -427,24 +431,29 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - + + true + true + true + true + diff --git a/XML/XML_x64_vs110.vcxproj.filters b/XML/XML_x64_vs110.vcxproj.filters index 623032a48..c465f2d0f 100644 --- a/XML/XML_x64_vs110.vcxproj.filters +++ b/XML/XML_x64_vs110.vcxproj.filters @@ -2,40 +2,40 @@ - {7a352224-2f28-456b-b9f0-8695d3ae34f8} + {5d236948-84f7-47a8-8678-ea6b698cd78c} - {edca0837-a1e9-4ffd-bb89-9de36b88a491} + {4074402e-8177-4070-9bd6-f4f44c8960a2} - {2f51c7dd-c9a4-4b0d-ba5c-28b721bda459} + {17591cb3-1fae-4510-91bb-dec40eec9815} - {8de8666b-31ad-4e4d-8100-9e1ea9e6f8bb} + {82fc5ac2-3bf9-4554-b87a-b99bce1d0459} - {47f703a8-9c15-43cc-9861-38d176e6b3d5} + {52b02da6-9d1a-4965-9fa1-f3a66837eb9e} - {9d0dcf6f-2924-4dda-af46-4fbbff7ddcd1} + {3eafef93-7819-429a-a890-cee935a5e706} - {9df7a80d-1a1e-435d-b3b8-63a5e7e42db3} + {36b54b62-b9ae-410d-bef3-1c9e2982f39d} - {4c6140ac-ee6e-4474-b882-f67e88a5201f} + {84ca2e59-5cbc-47e8-92df-70c65e08c2c7} - {3d1303df-3bc6-46f1-9e2e-56876286b088} + {33c3905e-45fb-4b58-922c-daecd6b5ff6b} - {f017cacf-84a5-404e-9c34-b685fe328629} + {fe000506-d867-4fcc-a85c-17b71eba4146} - {f8ceb50f-4be2-4c2c-bfa0-7d6640d99dae} + {7ff8bdc8-efb7-43d6-9605-3e914a14f3a9} - {bcaccf53-eab9-4663-a47b-bc0c7d209103} + {73c1bd2d-dc91-476b-b0a4-407c34473dae} diff --git a/XML/XML_x64_vs120.sln b/XML/XML_x64_vs120.sln index 146131f7f..45ec4d8e0 100644 --- a/XML/XML_x64_vs120.sln +++ b/XML/XML_x64_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "XML", "XML_x64_vs120.vcxproj", "{9E211743-85FE-4977-82F3-4F04B40C912D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_x64_vs120.vcxproj", "{C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_shared|x64.ActiveCfg = debug_shared|x64 {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_shared|x64.Build.0 = debug_shared|x64 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_shared|x64.Deploy.0 = debug_shared|x64 {9E211743-85FE-4977-82F3-4F04B40C912D}.release_shared|x64.ActiveCfg = release_shared|x64 {9E211743-85FE-4977-82F3-4F04B40C912D}.release_shared|x64.Build.0 = release_shared|x64 - {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|x64.Build.0 = release_static_md|x64 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_shared|x64.Deploy.0 = release_shared|x64 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|x64.Build.0 = release_static_md|x64 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|x64.Deploy.0 = release_static_md|x64 {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_shared|x64.ActiveCfg = debug_shared|x64 {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_shared|x64.Build.0 = debug_shared|x64 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_shared|x64.Deploy.0 = debug_shared|x64 {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_shared|x64.ActiveCfg = release_shared|x64 {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_shared|x64.Build.0 = release_shared|x64 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|x64.Build.0 = release_static_md|x64 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_shared|x64.Deploy.0 = release_shared|x64 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|x64.Build.0 = release_static_md|x64 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/XML/XML_x64_vs120.vcxproj b/XML/XML_x64_vs120.vcxproj index 836295bbe..24affce64 100644 --- a/XML/XML_x64_vs120.vcxproj +++ b/XML/XML_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ XML Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoXML64d PocoXMLmdd PocoXMLmtd @@ -107,6 +93,32 @@ PocoXMLmd PocoXMLmt + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + Disabled @@ -120,14 +132,12 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoXML64d.dll true true @@ -153,14 +163,12 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - %(AdditionalDependencies) ..\bin64\PocoXML64.dll true false @@ -185,12 +193,11 @@ true true true - + ..\lib64\PocoXMLmtd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoXMLmtd.lib @@ -211,11 +218,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoXMLmt.lib @@ -234,12 +240,11 @@ true true true - + ..\lib64\PocoXMLmdd.pdb Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ..\lib64\PocoXMLmdd.lib @@ -260,172 +265,171 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ..\lib64\PocoXMLmd.lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true true @@ -444,8 +448,13 @@ - + + true + true + true + true + - - - \ No newline at end of file + + + diff --git a/XML/XML_x64_vs120.vcxproj.filters b/XML/XML_x64_vs120.vcxproj.filters index 623032a48..4af27c655 100644 --- a/XML/XML_x64_vs120.vcxproj.filters +++ b/XML/XML_x64_vs120.vcxproj.filters @@ -2,40 +2,40 @@ - {7a352224-2f28-456b-b9f0-8695d3ae34f8} + {a2848e15-efce-420a-a6a9-a0dceae48e4d} - {edca0837-a1e9-4ffd-bb89-9de36b88a491} + {111610be-e11e-48df-8e35-335c03547e92} - {2f51c7dd-c9a4-4b0d-ba5c-28b721bda459} + {65f9ee73-fa79-4aac-8f58-cf2b79502153} - {8de8666b-31ad-4e4d-8100-9e1ea9e6f8bb} + {013109b1-5682-4a82-b3d6-b9dd5f86d07a} - {47f703a8-9c15-43cc-9861-38d176e6b3d5} + {e04f45dd-7998-415f-878a-43ebd63c37c4} - {9d0dcf6f-2924-4dda-af46-4fbbff7ddcd1} + {09d9789d-288b-4543-b928-9fe4f0fa8cce} - {9df7a80d-1a1e-435d-b3b8-63a5e7e42db3} + {44f84c7b-929a-4a8c-9bec-62b731bd0da8} - {4c6140ac-ee6e-4474-b882-f67e88a5201f} + {da483bfc-16ac-40fc-b819-0782334e9ebc} - {3d1303df-3bc6-46f1-9e2e-56876286b088} + {07f3cda5-f874-4632-9a8d-aa87c9c8ad8f} - {f017cacf-84a5-404e-9c34-b685fe328629} + {77fa0399-19d9-4006-bd11-d397883f6f18} - {f8ceb50f-4be2-4c2c-bfa0-7d6640d99dae} + {5888671a-bda7-4f7c-bf55-9e9ee2cd7064} - {bcaccf53-eab9-4663-a47b-bc0c7d209103} + {d6a1a1f1-33c4-474e-ad30-896e01a2a199} diff --git a/XML/samples/DOMParser/DOMParser_WEC2013_vs110.vcxproj.filters b/XML/samples/DOMParser/DOMParser_WEC2013_vs110.vcxproj.filters index b9e9f1f0e..d0af1b334 100644 --- a/XML/samples/DOMParser/DOMParser_WEC2013_vs110.vcxproj.filters +++ b/XML/samples/DOMParser/DOMParser_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {152e3aba-afc5-49b5-92ad-e9cce3e6391f} + {cdca636d-02b3-4724-98db-923427d34339} - {ca9813b1-870c-4936-9876-c6a4b2ca85d2} + {9f3f530e-9258-4707-9a1e-5dd8987debb1} diff --git a/XML/samples/DOMParser/DOMParser_vs100.vcxproj b/XML/samples/DOMParser/DOMParser_vs100.vcxproj index c0340eca9..a603c8e0c 100644 --- a/XML/samples/DOMParser/DOMParser_vs100.vcxproj +++ b/XML/samples/DOMParser/DOMParser_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - DOMParserd - DOMParserd - DOMParserd - DOMParser - DOMParser - DOMParser + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + DOMParserd + DOMParserd + DOMParserd + DOMParser + DOMParser + DOMParser - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/XML/samples/DOMParser/DOMParser_vs100.vcxproj.filters b/XML/samples/DOMParser/DOMParser_vs100.vcxproj.filters index 27f8b17c1..c87c5bdaa 100644 --- a/XML/samples/DOMParser/DOMParser_vs100.vcxproj.filters +++ b/XML/samples/DOMParser/DOMParser_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {5ea0b99b-7b4f-4b4a-b426-4857bd139daa} + {91166035-6337-4ebe-9ffa-ab7462cae8fb} - {ae3fcb59-b87b-458f-9435-c5838d8cf5e0} + {de12a9bc-2d21-4bd9-95f1-1b4aae0d25d1} diff --git a/XML/samples/DOMParser/DOMParser_vs110.vcxproj b/XML/samples/DOMParser/DOMParser_vs110.vcxproj index 58dab0480..66694f723 100644 --- a/XML/samples/DOMParser/DOMParser_vs110.vcxproj +++ b/XML/samples/DOMParser/DOMParser_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - DOMParserd - DOMParserd - DOMParserd - DOMParser - DOMParser - DOMParser + <_ProjectFileVersion>11.0.61030.0 + DOMParserd + DOMParserd + DOMParserd + DOMParser + DOMParser + DOMParser - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/XML/samples/DOMParser/DOMParser_vs110.vcxproj.filters b/XML/samples/DOMParser/DOMParser_vs110.vcxproj.filters index 452722e3b..0bca7fa4a 100644 --- a/XML/samples/DOMParser/DOMParser_vs110.vcxproj.filters +++ b/XML/samples/DOMParser/DOMParser_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {9d1cf2c5-3b20-48cc-801b-d0995f222206} + {14ee681e-da5e-4b20-baca-07fdf004e725} - {8830148a-f62f-4d78-920a-ff50871393fc} + {89c7359e-aae7-47cb-ae3f-05d4a404df75} diff --git a/XML/samples/DOMParser/DOMParser_vs120.vcxproj b/XML/samples/DOMParser/DOMParser_vs120.vcxproj index fe0ef007d..806ed635f 100644 --- a/XML/samples/DOMParser/DOMParser_vs120.vcxproj +++ b/XML/samples/DOMParser/DOMParser_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ DOMParser Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 DOMParserd DOMParserd DOMParserd @@ -111,6 +93,36 @@ DOMParser DOMParser + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/XML/samples/DOMParser/DOMParser_vs120.vcxproj.filters b/XML/samples/DOMParser/DOMParser_vs120.vcxproj.filters index 452722e3b..94ce062d4 100644 --- a/XML/samples/DOMParser/DOMParser_vs120.vcxproj.filters +++ b/XML/samples/DOMParser/DOMParser_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {9d1cf2c5-3b20-48cc-801b-d0995f222206} + {8b884da3-e30d-4faf-a9e7-da21a8a0b11b} - {8830148a-f62f-4d78-920a-ff50871393fc} + {61404247-6d1c-4727-bde1-be6340e08a73} diff --git a/XML/samples/DOMParser/DOMParser_x64_vs100.vcxproj b/XML/samples/DOMParser/DOMParser_x64_vs100.vcxproj index 5327e2f5e..fe7e83cd5 100644 --- a/XML/samples/DOMParser/DOMParser_x64_vs100.vcxproj +++ b/XML/samples/DOMParser/DOMParser_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - DOMParserd - DOMParserd - DOMParserd - DOMParser - DOMParser - DOMParser + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + DOMParserd + DOMParserd + DOMParserd + DOMParser + DOMParser + DOMParser - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/XML/samples/DOMParser/DOMParser_x64_vs100.vcxproj.filters b/XML/samples/DOMParser/DOMParser_x64_vs100.vcxproj.filters index b4c01b742..2d91ed8b7 100644 --- a/XML/samples/DOMParser/DOMParser_x64_vs100.vcxproj.filters +++ b/XML/samples/DOMParser/DOMParser_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {099348d7-e1b8-4f48-a652-fb5ac35cd8ec} + {655e81c6-4f85-48a3-87f9-fe656729fa25} - {d0e540da-0847-4cda-abb3-2219bf0f1dfc} + {396c4722-b612-4057-a838-b0147cdcdf8e} diff --git a/XML/samples/DOMParser/DOMParser_x64_vs110.vcxproj b/XML/samples/DOMParser/DOMParser_x64_vs110.vcxproj index ee244c669..dd8d4d128 100644 --- a/XML/samples/DOMParser/DOMParser_x64_vs110.vcxproj +++ b/XML/samples/DOMParser/DOMParser_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - DOMParserd - DOMParserd - DOMParserd - DOMParser - DOMParser - DOMParser + <_ProjectFileVersion>11.0.61030.0 + DOMParserd + DOMParserd + DOMParserd + DOMParser + DOMParser + DOMParser - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/XML/samples/DOMParser/DOMParser_x64_vs110.vcxproj.filters b/XML/samples/DOMParser/DOMParser_x64_vs110.vcxproj.filters index a3cf6bae9..851e3cc49 100644 --- a/XML/samples/DOMParser/DOMParser_x64_vs110.vcxproj.filters +++ b/XML/samples/DOMParser/DOMParser_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {bbc9068d-2bba-4f88-8405-beb6371107cd} + {58f07361-bd53-4765-b48b-c3d7755af195} - {02935f4d-c310-4e18-950b-9fd60353beca} + {34c2c2f8-e8a4-4a45-a0c2-0c2332b2fba2} diff --git a/XML/samples/DOMParser/DOMParser_x64_vs120.vcxproj b/XML/samples/DOMParser/DOMParser_x64_vs120.vcxproj index e966eccb6..e362249bb 100644 --- a/XML/samples/DOMParser/DOMParser_x64_vs120.vcxproj +++ b/XML/samples/DOMParser/DOMParser_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ DOMParser Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 DOMParserd DOMParserd DOMParserd @@ -111,6 +93,36 @@ DOMParser DOMParser + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/XML/samples/DOMParser/DOMParser_x64_vs120.vcxproj.filters b/XML/samples/DOMParser/DOMParser_x64_vs120.vcxproj.filters index a3cf6bae9..c50e551c0 100644 --- a/XML/samples/DOMParser/DOMParser_x64_vs120.vcxproj.filters +++ b/XML/samples/DOMParser/DOMParser_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {bbc9068d-2bba-4f88-8405-beb6371107cd} + {69c11677-400c-4909-90b4-6c62e101528c} - {02935f4d-c310-4e18-950b-9fd60353beca} + {be8c59d9-ad9f-42db-86c9-c8be03cbcac8} diff --git a/XML/samples/DOMWriter/DOMWriter_WEC2013_vs110.vcxproj.filters b/XML/samples/DOMWriter/DOMWriter_WEC2013_vs110.vcxproj.filters index 47dd56e2d..4f49a8c60 100644 --- a/XML/samples/DOMWriter/DOMWriter_WEC2013_vs110.vcxproj.filters +++ b/XML/samples/DOMWriter/DOMWriter_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {7e565537-a7f7-44ee-9888-30f740a14725} + {0a98e4df-2a60-41ee-b9d7-dfaee3270d42} - {5dd69beb-d920-4dec-88ba-2ae327d1d062} + {e363ec25-5b7f-4f9f-aa0f-1ac189f70eb4} diff --git a/XML/samples/DOMWriter/DOMWriter_vs100.vcxproj b/XML/samples/DOMWriter/DOMWriter_vs100.vcxproj index 2da10a0a3..722ed23bd 100644 --- a/XML/samples/DOMWriter/DOMWriter_vs100.vcxproj +++ b/XML/samples/DOMWriter/DOMWriter_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - DOMWriterd - DOMWriterd - DOMWriterd - DOMWriter - DOMWriter - DOMWriter + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + DOMWriterd + DOMWriterd + DOMWriterd + DOMWriter + DOMWriter + DOMWriter - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/XML/samples/DOMWriter/DOMWriter_vs100.vcxproj.filters b/XML/samples/DOMWriter/DOMWriter_vs100.vcxproj.filters index 4facf304d..8cdae9bc3 100644 --- a/XML/samples/DOMWriter/DOMWriter_vs100.vcxproj.filters +++ b/XML/samples/DOMWriter/DOMWriter_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {1b1205bb-7358-429f-8564-9760a8969f60} + {61617bff-c57a-4352-98d3-7486b17beb71} - {ef22ec2b-2d62-4fa2-9d83-3f2f0a519fb0} + {aa6c4843-800c-403f-9135-dc5eb5e3ad1f} diff --git a/XML/samples/DOMWriter/DOMWriter_vs110.vcxproj b/XML/samples/DOMWriter/DOMWriter_vs110.vcxproj index 6dd01f11b..200d988b5 100644 --- a/XML/samples/DOMWriter/DOMWriter_vs110.vcxproj +++ b/XML/samples/DOMWriter/DOMWriter_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - DOMWriterd - DOMWriterd - DOMWriterd - DOMWriter - DOMWriter - DOMWriter + <_ProjectFileVersion>11.0.61030.0 + DOMWriterd + DOMWriterd + DOMWriterd + DOMWriter + DOMWriter + DOMWriter - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/XML/samples/DOMWriter/DOMWriter_vs110.vcxproj.filters b/XML/samples/DOMWriter/DOMWriter_vs110.vcxproj.filters index d39449f97..63740afe3 100644 --- a/XML/samples/DOMWriter/DOMWriter_vs110.vcxproj.filters +++ b/XML/samples/DOMWriter/DOMWriter_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {06fdefeb-e485-40a7-9d8c-3e7e8d1903ba} + {75d012fc-4758-4bbe-8b45-94898100fb1a} - {abe30d68-4b4b-475a-9640-58af8750669c} + {7050404e-043a-4170-b7c2-92481abf66e7} diff --git a/XML/samples/DOMWriter/DOMWriter_vs120.vcxproj b/XML/samples/DOMWriter/DOMWriter_vs120.vcxproj index ecf011dc0..c2d3ecdc9 100644 --- a/XML/samples/DOMWriter/DOMWriter_vs120.vcxproj +++ b/XML/samples/DOMWriter/DOMWriter_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ DOMWriter Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 DOMWriterd DOMWriterd DOMWriterd @@ -111,6 +93,36 @@ DOMWriter DOMWriter + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/XML/samples/DOMWriter/DOMWriter_vs120.vcxproj.filters b/XML/samples/DOMWriter/DOMWriter_vs120.vcxproj.filters index d39449f97..cb34fac87 100644 --- a/XML/samples/DOMWriter/DOMWriter_vs120.vcxproj.filters +++ b/XML/samples/DOMWriter/DOMWriter_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {06fdefeb-e485-40a7-9d8c-3e7e8d1903ba} + {3c005ed8-623d-4c1a-8cd5-ab87e4095cfe} - {abe30d68-4b4b-475a-9640-58af8750669c} + {11539d92-f021-479a-804e-c2616fd92af9} diff --git a/XML/samples/DOMWriter/DOMWriter_x64_vs100.vcxproj b/XML/samples/DOMWriter/DOMWriter_x64_vs100.vcxproj index 41b2a2491..b5f7cfe6b 100644 --- a/XML/samples/DOMWriter/DOMWriter_x64_vs100.vcxproj +++ b/XML/samples/DOMWriter/DOMWriter_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - DOMWriterd - DOMWriterd - DOMWriterd - DOMWriter - DOMWriter - DOMWriter + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + DOMWriterd + DOMWriterd + DOMWriterd + DOMWriter + DOMWriter + DOMWriter - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/XML/samples/DOMWriter/DOMWriter_x64_vs100.vcxproj.filters b/XML/samples/DOMWriter/DOMWriter_x64_vs100.vcxproj.filters index 1c5c845f8..720b92d4b 100644 --- a/XML/samples/DOMWriter/DOMWriter_x64_vs100.vcxproj.filters +++ b/XML/samples/DOMWriter/DOMWriter_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {c6dd185e-09a4-4de5-9e0e-260790f3105b} + {429a32f0-3dd6-4314-a650-773f6d1d1316} - {3da8b51a-05c6-41d8-ac8a-c7707a4cf1c1} + {28262e4b-fc21-4186-b558-2d9596093407} diff --git a/XML/samples/DOMWriter/DOMWriter_x64_vs110.vcxproj b/XML/samples/DOMWriter/DOMWriter_x64_vs110.vcxproj index e9afb38c9..ac9f648bb 100644 --- a/XML/samples/DOMWriter/DOMWriter_x64_vs110.vcxproj +++ b/XML/samples/DOMWriter/DOMWriter_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - DOMWriterd - DOMWriterd - DOMWriterd - DOMWriter - DOMWriter - DOMWriter + <_ProjectFileVersion>11.0.61030.0 + DOMWriterd + DOMWriterd + DOMWriterd + DOMWriter + DOMWriter + DOMWriter - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/XML/samples/DOMWriter/DOMWriter_x64_vs110.vcxproj.filters b/XML/samples/DOMWriter/DOMWriter_x64_vs110.vcxproj.filters index d9b6fa3ac..7a581c4f5 100644 --- a/XML/samples/DOMWriter/DOMWriter_x64_vs110.vcxproj.filters +++ b/XML/samples/DOMWriter/DOMWriter_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {f612067e-ac0d-48aa-8782-991fe8e029c4} + {6c9feb34-c212-482d-8eb1-6b304b29e3f3} - {f0981a55-ce53-4455-b11f-f9702a60488f} + {5f1dd34b-c44b-46a3-b12c-1c1a03b159e0} diff --git a/XML/samples/DOMWriter/DOMWriter_x64_vs120.vcxproj b/XML/samples/DOMWriter/DOMWriter_x64_vs120.vcxproj index e173bd69e..a1af4597e 100644 --- a/XML/samples/DOMWriter/DOMWriter_x64_vs120.vcxproj +++ b/XML/samples/DOMWriter/DOMWriter_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ DOMWriter Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 DOMWriterd DOMWriterd DOMWriterd @@ -111,6 +93,36 @@ DOMWriter DOMWriter + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/XML/samples/DOMWriter/DOMWriter_x64_vs120.vcxproj.filters b/XML/samples/DOMWriter/DOMWriter_x64_vs120.vcxproj.filters index d9b6fa3ac..138713013 100644 --- a/XML/samples/DOMWriter/DOMWriter_x64_vs120.vcxproj.filters +++ b/XML/samples/DOMWriter/DOMWriter_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {f612067e-ac0d-48aa-8782-991fe8e029c4} + {7014a827-36b9-4b75-bb98-fb99bf50fcf9} - {f0981a55-ce53-4455-b11f-f9702a60488f} + {b9759e64-1c50-4d1a-a423-adb7211842a0} diff --git a/XML/samples/PrettyPrint/PrettyPrint_WEC2013_vs110.vcxproj.filters b/XML/samples/PrettyPrint/PrettyPrint_WEC2013_vs110.vcxproj.filters index ba66eebaf..623d6bb1a 100644 --- a/XML/samples/PrettyPrint/PrettyPrint_WEC2013_vs110.vcxproj.filters +++ b/XML/samples/PrettyPrint/PrettyPrint_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {1c18cc25-9a2c-4ed3-9b57-86b61db3cd09} + {400d32d4-1fb8-403c-841b-28d5d02e8215} - {4029f79b-e2f9-44c5-b73f-a7b5210f5d9a} + {0b6490e6-62a5-43b5-8cc9-2d0d8857d315} diff --git a/XML/samples/PrettyPrint/PrettyPrint_vs100.vcxproj b/XML/samples/PrettyPrint/PrettyPrint_vs100.vcxproj index e4b41d6de..a659edc5f 100644 --- a/XML/samples/PrettyPrint/PrettyPrint_vs100.vcxproj +++ b/XML/samples/PrettyPrint/PrettyPrint_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - PrettyPrintd - PrettyPrintd - PrettyPrintd - PrettyPrint - PrettyPrint - PrettyPrint + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + PrettyPrintd + PrettyPrintd + PrettyPrintd + PrettyPrint + PrettyPrint + PrettyPrint - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/XML/samples/PrettyPrint/PrettyPrint_vs100.vcxproj.filters b/XML/samples/PrettyPrint/PrettyPrint_vs100.vcxproj.filters index d607f273d..0e4d5fcf7 100644 --- a/XML/samples/PrettyPrint/PrettyPrint_vs100.vcxproj.filters +++ b/XML/samples/PrettyPrint/PrettyPrint_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {81f52a89-3fd5-47d7-87f6-b1e2c866c9ad} + {ec0090b1-53c0-4549-92d4-92c2ace91bad} - {990838a3-4c98-4404-a8ec-48bf2a02d7d6} + {8e1489bf-be35-4fbb-8087-bf3ad332ee10} diff --git a/XML/samples/PrettyPrint/PrettyPrint_vs110.vcxproj b/XML/samples/PrettyPrint/PrettyPrint_vs110.vcxproj index d19e0ffd7..50abf3e38 100644 --- a/XML/samples/PrettyPrint/PrettyPrint_vs110.vcxproj +++ b/XML/samples/PrettyPrint/PrettyPrint_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - PrettyPrintd - PrettyPrintd - PrettyPrintd - PrettyPrint - PrettyPrint - PrettyPrint + <_ProjectFileVersion>11.0.61030.0 + PrettyPrintd + PrettyPrintd + PrettyPrintd + PrettyPrint + PrettyPrint + PrettyPrint - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/XML/samples/PrettyPrint/PrettyPrint_vs110.vcxproj.filters b/XML/samples/PrettyPrint/PrettyPrint_vs110.vcxproj.filters index e7d29cf57..80276857a 100644 --- a/XML/samples/PrettyPrint/PrettyPrint_vs110.vcxproj.filters +++ b/XML/samples/PrettyPrint/PrettyPrint_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {4fd6da9e-7165-4d1f-ae11-de70d5e36576} + {61bef701-8506-4fc0-9599-45a2abcfab49} - {8444a93b-db8a-4b3a-90cc-6edb9a39e13a} + {c90c0537-7117-4cd9-bd00-513a8a4750ca} diff --git a/XML/samples/PrettyPrint/PrettyPrint_vs120.vcxproj b/XML/samples/PrettyPrint/PrettyPrint_vs120.vcxproj index 6ef5446cd..0474a2637 100644 --- a/XML/samples/PrettyPrint/PrettyPrint_vs120.vcxproj +++ b/XML/samples/PrettyPrint/PrettyPrint_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ PrettyPrint Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 PrettyPrintd PrettyPrintd PrettyPrintd @@ -111,6 +93,36 @@ PrettyPrint PrettyPrint + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/XML/samples/PrettyPrint/PrettyPrint_vs120.vcxproj.filters b/XML/samples/PrettyPrint/PrettyPrint_vs120.vcxproj.filters index e7d29cf57..c25452c36 100644 --- a/XML/samples/PrettyPrint/PrettyPrint_vs120.vcxproj.filters +++ b/XML/samples/PrettyPrint/PrettyPrint_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {4fd6da9e-7165-4d1f-ae11-de70d5e36576} + {578cdfac-377f-449d-b919-9d3053072d3c} - {8444a93b-db8a-4b3a-90cc-6edb9a39e13a} + {2b754978-7f2c-412a-8a6d-4176516c5965} diff --git a/XML/samples/PrettyPrint/PrettyPrint_x64_vs100.vcxproj b/XML/samples/PrettyPrint/PrettyPrint_x64_vs100.vcxproj index 051f8aee8..fc79ae7c2 100644 --- a/XML/samples/PrettyPrint/PrettyPrint_x64_vs100.vcxproj +++ b/XML/samples/PrettyPrint/PrettyPrint_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - PrettyPrintd - PrettyPrintd - PrettyPrintd - PrettyPrint - PrettyPrint - PrettyPrint + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + PrettyPrintd + PrettyPrintd + PrettyPrintd + PrettyPrint + PrettyPrint + PrettyPrint - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/XML/samples/PrettyPrint/PrettyPrint_x64_vs100.vcxproj.filters b/XML/samples/PrettyPrint/PrettyPrint_x64_vs100.vcxproj.filters index 60374763e..c1cc23965 100644 --- a/XML/samples/PrettyPrint/PrettyPrint_x64_vs100.vcxproj.filters +++ b/XML/samples/PrettyPrint/PrettyPrint_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {6c0b0176-e22f-4c5b-ac07-f68f03c9d86d} + {38c4f813-69d5-4e23-bdde-1aa732c0447e} - {08d430a2-155c-4a64-8ecc-2fc06cb0b09f} + {910a9dd6-2a51-4d6c-83fd-ecacd934a420} diff --git a/XML/samples/PrettyPrint/PrettyPrint_x64_vs110.vcxproj b/XML/samples/PrettyPrint/PrettyPrint_x64_vs110.vcxproj index f48df670b..891a740ed 100644 --- a/XML/samples/PrettyPrint/PrettyPrint_x64_vs110.vcxproj +++ b/XML/samples/PrettyPrint/PrettyPrint_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - PrettyPrintd - PrettyPrintd - PrettyPrintd - PrettyPrint - PrettyPrint - PrettyPrint + <_ProjectFileVersion>11.0.61030.0 + PrettyPrintd + PrettyPrintd + PrettyPrintd + PrettyPrint + PrettyPrint + PrettyPrint - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/XML/samples/PrettyPrint/PrettyPrint_x64_vs110.vcxproj.filters b/XML/samples/PrettyPrint/PrettyPrint_x64_vs110.vcxproj.filters index 89fe5cf2d..4e565e593 100644 --- a/XML/samples/PrettyPrint/PrettyPrint_x64_vs110.vcxproj.filters +++ b/XML/samples/PrettyPrint/PrettyPrint_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {19d07092-bf96-428a-af52-6d11156ae802} + {76a04cae-548f-41f3-8db6-ccc99054dd27} - {7401bb6e-73f2-4020-b189-5b649878e3a9} + {4b199476-7294-48f0-9b90-199e48758caf} diff --git a/XML/samples/PrettyPrint/PrettyPrint_x64_vs120.vcxproj b/XML/samples/PrettyPrint/PrettyPrint_x64_vs120.vcxproj index 8ab4fbb12..95be485ae 100644 --- a/XML/samples/PrettyPrint/PrettyPrint_x64_vs120.vcxproj +++ b/XML/samples/PrettyPrint/PrettyPrint_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ PrettyPrint Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 PrettyPrintd PrettyPrintd PrettyPrintd @@ -111,6 +93,36 @@ PrettyPrint PrettyPrint + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/XML/samples/PrettyPrint/PrettyPrint_x64_vs120.vcxproj.filters b/XML/samples/PrettyPrint/PrettyPrint_x64_vs120.vcxproj.filters index 89fe5cf2d..14b38c9e8 100644 --- a/XML/samples/PrettyPrint/PrettyPrint_x64_vs120.vcxproj.filters +++ b/XML/samples/PrettyPrint/PrettyPrint_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {19d07092-bf96-428a-af52-6d11156ae802} + {5fb44d04-aeab-4bca-b138-cc7164dc312a} - {7401bb6e-73f2-4020-b189-5b649878e3a9} + {74b2dcfe-0dfc-4fb6-99f6-033c875e5fd7} diff --git a/XML/samples/SAXParser/SAXParser_WEC2013_vs110.vcxproj.filters b/XML/samples/SAXParser/SAXParser_WEC2013_vs110.vcxproj.filters index a4108e991..6ac82e81d 100644 --- a/XML/samples/SAXParser/SAXParser_WEC2013_vs110.vcxproj.filters +++ b/XML/samples/SAXParser/SAXParser_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {3a736afa-69fc-4148-96b6-9e2d49ec0ce8} + {026b69ca-22cf-4b0e-975f-b113eae98900} - {65aa47d7-b313-4d81-ad0c-3b4fcd05c773} + {f8453def-0255-4117-871b-6f2a9b7af76e} diff --git a/XML/samples/SAXParser/SAXParser_vs100.vcxproj b/XML/samples/SAXParser/SAXParser_vs100.vcxproj index 010c95136..f238def69 100644 --- a/XML/samples/SAXParser/SAXParser_vs100.vcxproj +++ b/XML/samples/SAXParser/SAXParser_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - SAXParserd - SAXParserd - SAXParserd - SAXParser - SAXParser - SAXParser + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + SAXParserd + SAXParserd + SAXParserd + SAXParser + SAXParser + SAXParser - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/XML/samples/SAXParser/SAXParser_vs100.vcxproj.filters b/XML/samples/SAXParser/SAXParser_vs100.vcxproj.filters index d1bee1d51..9ae265a49 100644 --- a/XML/samples/SAXParser/SAXParser_vs100.vcxproj.filters +++ b/XML/samples/SAXParser/SAXParser_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {2a383aab-3329-4442-9d8f-6eb3a2d83d25} + {f39f8369-1816-4f7d-86ae-fafa88d90671} - {030da1bb-4339-460b-8960-da067dab052a} + {1b299161-33d0-43de-8e98-5e87a142da94} diff --git a/XML/samples/SAXParser/SAXParser_vs110.vcxproj b/XML/samples/SAXParser/SAXParser_vs110.vcxproj index b06b0ebd4..58a96e3a3 100644 --- a/XML/samples/SAXParser/SAXParser_vs110.vcxproj +++ b/XML/samples/SAXParser/SAXParser_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - SAXParserd - SAXParserd - SAXParserd - SAXParser - SAXParser - SAXParser + <_ProjectFileVersion>11.0.61030.0 + SAXParserd + SAXParserd + SAXParserd + SAXParser + SAXParser + SAXParser - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/XML/samples/SAXParser/SAXParser_vs110.vcxproj.filters b/XML/samples/SAXParser/SAXParser_vs110.vcxproj.filters index 591f37d79..ddd54848f 100644 --- a/XML/samples/SAXParser/SAXParser_vs110.vcxproj.filters +++ b/XML/samples/SAXParser/SAXParser_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {aec08ad1-1b75-45f5-a6eb-1079ef7abcf9} + {fdadca74-4658-495a-95c6-eff3b5f52ed4} - {57d590f9-50b2-41b1-8ab6-c9c61b460e3b} + {ac2ca265-ea1b-440e-8730-102b9e87e9e7} diff --git a/XML/samples/SAXParser/SAXParser_vs120.vcxproj b/XML/samples/SAXParser/SAXParser_vs120.vcxproj index 716ff8297..b0349037c 100644 --- a/XML/samples/SAXParser/SAXParser_vs120.vcxproj +++ b/XML/samples/SAXParser/SAXParser_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ SAXParser Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 SAXParserd SAXParserd SAXParserd @@ -111,6 +93,36 @@ SAXParser SAXParser + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/XML/samples/SAXParser/SAXParser_vs120.vcxproj.filters b/XML/samples/SAXParser/SAXParser_vs120.vcxproj.filters index 591f37d79..ec29c0d9f 100644 --- a/XML/samples/SAXParser/SAXParser_vs120.vcxproj.filters +++ b/XML/samples/SAXParser/SAXParser_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {aec08ad1-1b75-45f5-a6eb-1079ef7abcf9} + {b94d43c2-b12a-444d-975a-0735ebc453d3} - {57d590f9-50b2-41b1-8ab6-c9c61b460e3b} + {f2b77375-4d72-4901-9013-a12055d316bb} diff --git a/XML/samples/SAXParser/SAXParser_x64_vs100.vcxproj b/XML/samples/SAXParser/SAXParser_x64_vs100.vcxproj index f4d8f05ee..858511e15 100644 --- a/XML/samples/SAXParser/SAXParser_x64_vs100.vcxproj +++ b/XML/samples/SAXParser/SAXParser_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - SAXParserd - SAXParserd - SAXParserd - SAXParser - SAXParser - SAXParser + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + SAXParserd + SAXParserd + SAXParserd + SAXParser + SAXParser + SAXParser - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/XML/samples/SAXParser/SAXParser_x64_vs100.vcxproj.filters b/XML/samples/SAXParser/SAXParser_x64_vs100.vcxproj.filters index 7ee71e2cc..535c8f789 100644 --- a/XML/samples/SAXParser/SAXParser_x64_vs100.vcxproj.filters +++ b/XML/samples/SAXParser/SAXParser_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {558b5151-1696-43a7-9147-3c0c9acf29a5} + {582272a5-5bba-443b-ad31-04385b26aebe} - {356178f5-8c0a-486e-9094-ced5650d9be8} + {5beaeabb-a476-41c4-88db-dda382c4e109} diff --git a/XML/samples/SAXParser/SAXParser_x64_vs110.vcxproj b/XML/samples/SAXParser/SAXParser_x64_vs110.vcxproj index c3f0d2fa0..e4ec9143c 100644 --- a/XML/samples/SAXParser/SAXParser_x64_vs110.vcxproj +++ b/XML/samples/SAXParser/SAXParser_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - SAXParserd - SAXParserd - SAXParserd - SAXParser - SAXParser - SAXParser + <_ProjectFileVersion>11.0.61030.0 + SAXParserd + SAXParserd + SAXParserd + SAXParser + SAXParser + SAXParser - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/XML/samples/SAXParser/SAXParser_x64_vs110.vcxproj.filters b/XML/samples/SAXParser/SAXParser_x64_vs110.vcxproj.filters index 1bf4587ea..8427527c3 100644 --- a/XML/samples/SAXParser/SAXParser_x64_vs110.vcxproj.filters +++ b/XML/samples/SAXParser/SAXParser_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {83da49ec-7ea3-42ac-ad67-145f193920f5} + {73163741-ef34-4c97-978d-8aba986dfbbc} - {d0209985-a7e4-4a31-b980-561591073c4d} + {24228dab-f115-4872-9984-1b672f4aa6c1} diff --git a/XML/samples/SAXParser/SAXParser_x64_vs120.vcxproj b/XML/samples/SAXParser/SAXParser_x64_vs120.vcxproj index 7f8cb1881..e022a8579 100644 --- a/XML/samples/SAXParser/SAXParser_x64_vs120.vcxproj +++ b/XML/samples/SAXParser/SAXParser_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ SAXParser Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 SAXParserd SAXParserd SAXParserd @@ -111,6 +93,36 @@ SAXParser SAXParser + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/XML/samples/SAXParser/SAXParser_x64_vs120.vcxproj.filters b/XML/samples/SAXParser/SAXParser_x64_vs120.vcxproj.filters index 1bf4587ea..db1ed8f88 100644 --- a/XML/samples/SAXParser/SAXParser_x64_vs120.vcxproj.filters +++ b/XML/samples/SAXParser/SAXParser_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {83da49ec-7ea3-42ac-ad67-145f193920f5} + {63b5e312-d629-4224-ba63-df9023bb1273} - {d0209985-a7e4-4a31-b980-561591073c4d} + {24d76347-ee46-479b-a348-e5bae26c541e} diff --git a/XML/samples/samples_vs120.sln b/XML/samples/samples_vs120.sln index 6f86e84a9..fb1088fb9 100644 --- a/XML/samples/samples_vs120.sln +++ b/XML/samples/samples_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DOMParser", "DOMParser\DOMParser_vs120.vcxproj", "{70F2F655-67D5-32A1-A99B-D4903547DB3E}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DOMWriter", "DOMWriter\DOMWriter_vs120.vcxproj", "{A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}" diff --git a/XML/samples/samples_x64_vs120.sln b/XML/samples/samples_x64_vs120.sln index 77204ac40..5d9541b9a 100644 --- a/XML/samples/samples_x64_vs120.sln +++ b/XML/samples/samples_x64_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DOMParser", "DOMParser\DOMParser_x64_vs120.vcxproj", "{70F2F655-67D5-32A1-A99B-D4903547DB3E}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DOMWriter", "DOMWriter\DOMWriter_x64_vs120.vcxproj", "{A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}" diff --git a/XML/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters b/XML/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters index ffe31dd7c..6c6b0c1d1 100644 --- a/XML/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters +++ b/XML/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters @@ -2,46 +2,46 @@ - {adb2c165-e858-4b4a-9443-031174a9c02a} + {af49e28e-9a37-4de1-979c-ce319760e2bb} - {524c9921-ce1c-453f-b522-118795d1ea12} + {638d5090-b9cc-41d0-88dc-93596584c78a} - {37898bd3-abcd-46ed-8096-9e9215195c7d} + {00a96117-4ecf-4950-b60c-6e8290418c39} - {0fbdff4b-ad16-41c5-b5c5-7c0ad0a259f6} + {af4e55ed-10e9-4d39-94f1-0d0a319c1a0c} - {fed705b1-6681-43be-a325-658f492d46a7} + {a19d26f0-e18a-47fb-be73-c422b2d1e6bd} - {0a865a1b-0925-4f86-a39b-e55a082e089d} + {3ce532e6-99ff-4d60-b885-a902500cf20b} - {12fcf5e1-5027-4927-bb9b-8ea4b82b583e} + {ba841587-65bf-4a6f-a738-6c870f27665e} - {78527810-da63-4409-88da-f9eaf65fc8d6} + {6baa3996-1a18-4bed-b7e4-6697d75cb37c} - {cc1c25ac-e70a-4565-9c91-24ff44d4a00d} + {c8e50b0d-c417-4109-bd0c-edfa41e7a395} - {f4b1b7d0-6d3d-4c10-baaa-6764d49b2145} + {909a4900-518f-418c-8c3e-baa4078704f8} - {c7a135fa-f024-4b2a-985f-ed038330a5be} + {bc3f4bd9-ad4f-43a1-825d-8c9d7677b2bc} - {fc978b48-4545-4fef-a94e-439a3de9716f} + {efa76a0f-0187-41fa-80f5-4a2a64cf0f3f} - {c56d8b43-1cab-4f23-98e5-0364836c4e0a} + {6a759823-df9f-4f8d-ab84-1c086f20b0d3} - {1a469eca-0f0b-431b-9962-52f123923c22} + {ef048472-e9ea-4466-b198-ad99816369a5} diff --git a/XML/testsuite/TestSuite_vs100.vcxproj b/XML/testsuite/TestSuite_vs100.vcxproj index 297c7d199..4ef96237d 100644 --- a/XML/testsuite/TestSuite_vs100.vcxproj +++ b/XML/testsuite/TestSuite_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/XML/testsuite/TestSuite_vs100.vcxproj.filters b/XML/testsuite/TestSuite_vs100.vcxproj.filters index e29df9245..36af81563 100644 --- a/XML/testsuite/TestSuite_vs100.vcxproj.filters +++ b/XML/testsuite/TestSuite_vs100.vcxproj.filters @@ -2,46 +2,46 @@ - {b1f5d6d6-7f36-4fb8-9737-e90ac627fd2e} + {9cb0aad3-eabd-47a7-83ee-74a7ee07d87a} - {e46764b5-0e73-4b1a-8095-85aff232a67f} + {2e45caa4-4f49-43ce-aeb6-0b1bb582d2d4} - {fdc2e163-2b1a-4ac8-baae-938efefbe23f} + {43e3994b-5a8d-4fc0-b577-208b82a13fa4} - {68e177e2-e8a3-4ad8-85c0-07b26ce8d240} + {04b972ed-12d9-45ab-a231-6fa6feafc94f} - {6fa4d71e-8e33-487a-b939-fa850c9459b4} + {6c9e3263-badf-49ff-9cdf-c251ca4a8b6f} - {6a542733-bab8-47ba-a01b-c71569395c27} + {1edd4574-b685-4e0a-b03b-5e1b57dd890d} - {03981fc6-d5a2-416a-aa11-360ae24c1e16} + {750c5c60-c97b-470a-86a8-dd9693a68611} - {e3144735-b640-4622-a65b-c34e772b98b8} + {51ea54b5-4d52-47d7-ba70-818c9ed5ebd6} - {7fa6c03b-061e-40dc-b8c8-05bef9f4d660} + {6a3d1214-68d0-4413-9e7a-9cb2f0db803c} - {4a4ae031-0e7d-4634-8ef0-57f2731efdf8} + {993cccdf-b199-4e02-8d22-01788ccc1168} - {a96c3cb7-b86c-40ca-9531-d43659e0deb4} + {39e2ddf9-9e26-4e64-abcc-2f9c007f8194} - {71befd3e-6bda-44cc-8d79-985c99accf75} + {441219a5-7089-4da0-8a68-733fe1109680} - {a189ecd5-e9f5-4b7f-87cd-1c20b29a2c4a} + {4e886610-a0cc-4339-a1ff-f1a412b3c934} - {8e64b500-a650-4993-8f77-2b91568222b1} + {10f4fb1a-9ffc-40ac-b504-12ea05c812c4} diff --git a/XML/testsuite/TestSuite_vs110.vcxproj b/XML/testsuite/TestSuite_vs110.vcxproj index 8a8c3133e..154eaf85f 100644 --- a/XML/testsuite/TestSuite_vs110.vcxproj +++ b/XML/testsuite/TestSuite_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/XML/testsuite/TestSuite_vs110.vcxproj.filters b/XML/testsuite/TestSuite_vs110.vcxproj.filters index cb03a8810..e6aa61a56 100644 --- a/XML/testsuite/TestSuite_vs110.vcxproj.filters +++ b/XML/testsuite/TestSuite_vs110.vcxproj.filters @@ -2,46 +2,46 @@ - {dc11f6a9-d896-4052-83ab-49e2915bd574} + {802da046-03bd-41c2-8922-1cf5a76a14f2} - {185b5eb8-d5c4-45c4-8fab-f30408b6adb6} + {10e7aa72-1600-4b12-9611-371cc2a34c5b} - {84083e8b-a0bb-4927-a135-6ac673c3f9e8} + {6e5a5afa-d80c-4da1-9685-07415811bc3a} - {b7c8f7a8-df44-4e90-990b-7790de0ab641} + {20dedd00-79c6-4962-aac9-bf0db65c4e4b} - {b527ec97-93eb-495e-9fe8-164164efbd15} + {095c99ab-524a-44ac-a57a-9e9e4f7f4331} - {0073f7eb-a239-453d-a668-666cb52c9543} + {7ec67327-e6d5-4855-a543-9d3e42ff96e9} - {12b331fe-5593-4bb5-bb8c-dbc26f5b5abf} + {1bb49b2c-814b-40b7-bb86-af7848c2a467} - {3d6f6c23-d197-44a1-8b5c-e366f35a8dab} + {38a7352a-421d-4328-b5fb-12312fd265b0} - {9f9a1b22-8bd8-4a59-b164-7e01dde65f1e} + {c61dbac7-f76f-4e4b-945a-e4a6274f6b48} - {014dad88-d054-4a1f-a92b-b0fbebc0f472} + {90cfc347-801a-4698-8384-fb72f33104fe} - {6a98d17d-176d-444c-8efa-7fd41c5b6448} + {c14ac98c-f94e-48d4-bf46-68aa87ceb47f} - {9eb623ee-124f-4bd0-b2e4-96e9cc9c233b} + {52976393-db09-416f-87e7-0e18d94895ae} - {bbcb34e3-d027-4f9e-a4bc-43f1540f9f7c} + {ce60aa94-d4c0-4bd2-8929-2b312dc6dc93} - {4322ebbf-73e5-460d-a876-e1742720657c} + {ccf495af-fad3-497b-a53a-770d50eadc7a} diff --git a/XML/testsuite/TestSuite_vs120.vcxproj b/XML/testsuite/TestSuite_vs120.vcxproj index 4021ff9dc..f40095a53 100644 --- a/XML/testsuite/TestSuite_vs120.vcxproj +++ b/XML/testsuite/TestSuite_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Console + Windows MachineX86 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 @@ -192,21 +202,20 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Console + Windows MachineX86 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX86 @@ -256,20 +264,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Console + Windows MachineX86 @@ -288,68 +295,67 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/XML/testsuite/TestSuite_vs120.vcxproj.filters b/XML/testsuite/TestSuite_vs120.vcxproj.filters index eb20c6553..a7901ba4a 100644 --- a/XML/testsuite/TestSuite_vs120.vcxproj.filters +++ b/XML/testsuite/TestSuite_vs120.vcxproj.filters @@ -2,46 +2,46 @@ - {dc11f6a9-d896-4052-83ab-49e2915bd574} + {2515ea5c-98ba-4fca-805b-1b32c567eda1} - {185b5eb8-d5c4-45c4-8fab-f30408b6adb6} + {c410a33d-2b6b-4707-9d67-85271fcb0e59} - {84083e8b-a0bb-4927-a135-6ac673c3f9e8} + {71782d12-bb06-4145-8649-173dafbdf6a2} - {b7c8f7a8-df44-4e90-990b-7790de0ab641} + {e1de418b-dcf3-4bf9-9af0-68634a434135} - {b527ec97-93eb-495e-9fe8-164164efbd15} + {46ad8e11-4c4f-4216-b758-405c97b12ab0} - {0073f7eb-a239-453d-a668-666cb52c9543} + {00c39d3c-efaa-4dd1-adf1-1635ba7994f5} - {12b331fe-5593-4bb5-bb8c-dbc26f5b5abf} + {b1ccc080-a3df-466d-8c52-02a173483626} - {3d6f6c23-d197-44a1-8b5c-e366f35a8dab} + {fda395a8-729a-4290-83bc-ff054e0cef6f} - {9f9a1b22-8bd8-4a59-b164-7e01dde65f1e} + {ba29b848-9249-4c2e-98a8-3dbcb0e91698} - {014dad88-d054-4a1f-a92b-b0fbebc0f472} + {ce92891c-0c87-4173-9615-e1d308b16369} - {6a98d17d-176d-444c-8efa-7fd41c5b6448} + {07cb360e-fe58-4508-ac3b-663997c6fdf6} - {9eb623ee-124f-4bd0-b2e4-96e9cc9c233b} + {f3b86ed0-57fa-4ffe-80b8-ea0c6d4548aa} - {bbcb34e3-d027-4f9e-a4bc-43f1540f9f7c} + {182acf01-7748-4136-b188-95e1de9694da} - {4322ebbf-73e5-460d-a876-e1742720657c} + {12ca2328-a68f-47c6-a6ce-9e4dd75037b0} @@ -167,7 +167,7 @@ _Suite\Source Files - + _Driver\Source Files diff --git a/XML/testsuite/TestSuite_x64_vs100.vcxproj b/XML/testsuite/TestSuite_x64_vs100.vcxproj index 1dbc72d18..0dad6714f 100644 --- a/XML/testsuite/TestSuite_x64_vs100.vcxproj +++ b/XML/testsuite/TestSuite_x64_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/XML/testsuite/TestSuite_x64_vs100.vcxproj.filters b/XML/testsuite/TestSuite_x64_vs100.vcxproj.filters index c88856457..71ee56b65 100644 --- a/XML/testsuite/TestSuite_x64_vs100.vcxproj.filters +++ b/XML/testsuite/TestSuite_x64_vs100.vcxproj.filters @@ -2,46 +2,46 @@ - {48d0859a-8573-49e4-8c91-c05e6c5c914b} + {032db3fc-8e84-4ca2-8f5b-22a89cd772c4} - {4a8789b2-1c66-4594-b41e-719bae3d0027} + {f8bd6553-11b4-4f27-9ab6-b62c37b631d4} - {56ea4763-79f0-442b-8cf9-3a784906ac48} + {a3da5bf1-314f-4b4e-8998-e086b9bbbbdb} - {869ad523-2deb-47ac-b6e3-ac174643909a} + {a4fec080-1393-45a7-a83b-2794d036e2b3} - {195bef5c-bbb4-45fd-8650-7ed007156c51} + {eab1cb51-79cf-431b-9522-0c5e507a1dba} - {3ea5e4f3-db71-46b0-8fee-6c684e09517e} + {2e9eb668-d818-4832-9a94-a62c6ac4fa2f} - {a01275f9-3f11-4e58-b66b-ee1c698de6dd} + {966f07e3-15b1-4469-9ff3-0f1e0816bb6a} - {452db92f-5122-4e30-b91b-e0ecea098640} + {a79f9452-e61e-45e3-af4a-309f80e6f11c} - {4a2d7ee2-0654-42c6-995b-0ce85420595a} + {1638fb39-a239-4154-b374-8bbfac2f5b0d} - {706d17fd-0e5d-41f7-83bc-823853712ceb} + {d98bcf69-7c51-4bcc-b646-ee43aeaf215d} - {2a8fc1ac-55fc-4786-b0bf-835eaed3d988} + {09366f97-38c0-4156-9934-b06be3dd32a7} - {1b275272-2217-4125-83a4-2805ededd7e5} + {7ed6dd4a-57ba-4aca-a10c-5da68345c30f} - {f149f95a-a2f2-4125-b90b-35c2fa87863d} + {f2ffdcbc-f3ba-4515-a922-c5f3e0e2c3ae} - {1c2632e4-1237-4201-812d-e8714616a836} + {aeb3e3b8-e78c-40d7-8ba2-2292ef2d8bce} diff --git a/XML/testsuite/TestSuite_x64_vs110.vcxproj b/XML/testsuite/TestSuite_x64_vs110.vcxproj index 86acf6646..665e6b44c 100644 --- a/XML/testsuite/TestSuite_x64_vs110.vcxproj +++ b/XML/testsuite/TestSuite_x64_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/XML/testsuite/TestSuite_x64_vs110.vcxproj.filters b/XML/testsuite/TestSuite_x64_vs110.vcxproj.filters index 3ce3da78e..f049a6a2c 100644 --- a/XML/testsuite/TestSuite_x64_vs110.vcxproj.filters +++ b/XML/testsuite/TestSuite_x64_vs110.vcxproj.filters @@ -2,46 +2,46 @@ - {e8d74e03-4ed0-4f0c-a885-e2c710b6b8a2} + {c17b1ff8-7471-4f5e-b030-c3f4721ec5b0} - {aabd48ee-5b85-4eb4-b48a-570e3a91d365} + {991c2e3c-b6b8-4bbc-bca6-ef2fb3a3cd08} - {ba4ce0ea-beec-4620-bf7b-36432c64d3e8} + {ea89c253-3d5f-4f3f-8bb1-ac873fe92e70} - {323cae6d-0986-4769-8123-14b29e23d8e1} + {2fda21b8-3fc0-4151-9261-472baed48432} - {6a3deea2-fb3d-48e1-bec3-9446b792a94f} + {f1af6a92-6d31-4438-9f9b-c0f2cd421043} - {54dd977d-1f8d-4e98-9ece-7f40789b5213} + {e07e3a40-1f90-42b5-bfd1-da702670d740} - {eba97977-14ad-418a-8b32-ec7271e009de} + {6b15dcdf-8fb5-4e27-8971-cd83c2915fd1} - {1b673858-12ef-40d8-ba3e-e208ba57d8ed} + {4415c57f-c0bf-4b2b-b33a-a865aa9c646c} - {a0432bd9-8262-4946-86ab-977f1359b30d} + {9009ab2e-0774-4263-842c-aeb9395fb689} - {f59fa045-6459-459c-994f-ce9353441b36} + {ed9f21bd-26f8-4a05-b770-0007068cc308} - {0ce773d7-7672-429b-91d9-82f2db18c205} + {1df7369d-1137-45bd-b245-86e8f7024bfb} - {c4f935f3-e04e-4f33-9697-d76f16d2d1a6} + {5e384ae6-552d-4013-9886-eb20a759d0ac} - {6b997d35-c68f-4414-96c4-cb27824a1e49} + {38f4530f-1a0c-4c7e-8fc0-5a1a27c6f1ad} - {2019b12d-d20e-4ce2-86e0-c57355cd58d5} + {c8d93eb7-cc61-4e28-805a-94d87fde40eb} diff --git a/XML/testsuite/TestSuite_x64_vs120.vcxproj b/XML/testsuite/TestSuite_x64_vs120.vcxproj index b5407a1f5..24c2c5956 100644 --- a/XML/testsuite/TestSuite_x64_vs120.vcxproj +++ b/XML/testsuite/TestSuite_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Console + Windows MachineX64 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 @@ -192,21 +202,20 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Console + Windows MachineX64 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX64 @@ -256,20 +264,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Console + Windows MachineX64 @@ -288,68 +295,67 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + + diff --git a/XML/testsuite/TestSuite_x64_vs120.vcxproj.filters b/XML/testsuite/TestSuite_x64_vs120.vcxproj.filters index 044d36ff3..612ec4dbf 100644 --- a/XML/testsuite/TestSuite_x64_vs120.vcxproj.filters +++ b/XML/testsuite/TestSuite_x64_vs120.vcxproj.filters @@ -2,46 +2,46 @@ - {e8d74e03-4ed0-4f0c-a885-e2c710b6b8a2} + {b599a475-020a-454e-841d-59cf971d4741} - {aabd48ee-5b85-4eb4-b48a-570e3a91d365} + {de68859e-470c-4b9b-a8ed-da8a7ea3bf4c} - {ba4ce0ea-beec-4620-bf7b-36432c64d3e8} + {f2ee7cdc-f418-4fee-bc20-4dcd25f03c28} - {323cae6d-0986-4769-8123-14b29e23d8e1} + {66d20cef-54d5-4f2c-9690-183863b2f307} - {6a3deea2-fb3d-48e1-bec3-9446b792a94f} + {92ae764f-4be4-4b67-a7cd-ac1211818331} - {54dd977d-1f8d-4e98-9ece-7f40789b5213} + {a7a8ae8a-49df-4260-ab8d-e6489d3026eb} - {eba97977-14ad-418a-8b32-ec7271e009de} + {6cbd8408-e747-464c-a305-a7d045031328} - {1b673858-12ef-40d8-ba3e-e208ba57d8ed} + {613b28db-5680-41fd-bec5-de7b08feb9c1} - {a0432bd9-8262-4946-86ab-977f1359b30d} + {80a8f041-4419-436f-9707-4de439a14c90} - {f59fa045-6459-459c-994f-ce9353441b36} + {921bc9c3-a85e-45bf-972d-fe7a4b3c0226} - {0ce773d7-7672-429b-91d9-82f2db18c205} + {afd9b7e2-633b-486f-80d3-90a23f7c6118} - {c4f935f3-e04e-4f33-9697-d76f16d2d1a6} + {7fdaa6e2-3610-48d9-9101-9a63b19f0396} - {6b997d35-c68f-4414-96c4-cb27824a1e49} + {cbff159b-0f9f-46d6-9d1e-2aa648277859} - {2019b12d-d20e-4ce2-86e0-c57355cd58d5} + {211d516d-82b2-4c86-b680-3a6980c82569} @@ -167,7 +167,7 @@ _Suite\Source Files - + _Driver\Source Files diff --git a/Zip/Zip_WEC2013_vs110.vcxproj.filters b/Zip/Zip_WEC2013_vs110.vcxproj.filters index adc44e4b5..7018bc8ec 100644 --- a/Zip/Zip_WEC2013_vs110.vcxproj.filters +++ b/Zip/Zip_WEC2013_vs110.vcxproj.filters @@ -2,22 +2,22 @@ - {e9155282-7174-426c-a29c-cc911b7ba316} + {d046c399-896a-4cc4-a9d2-5202144c1a96} - {fae9c236-bae9-4be2-b758-ed35171860ef} + {1d8ed6ae-68ff-4c5a-88b8-385737b96a7a} - {07304e50-44ec-4de0-a10e-d0730a732812} + {52243e4a-dd29-46d4-a89b-82adc85d23f7} - {0b4fa115-5d26-432b-a692-75e280c1cdda} + {be65a7a3-37da-4dc7-ab65-8e2578ac2b37} - {b6d815cb-a967-44e1-8c7c-0210f0c269d3} + {2d866ad0-fc06-4399-8763-c6a80e890bf4} - {9274f62f-ffc2-4cf3-aa74-a909654c79fa} + {6d64ebd1-3eed-4c12-af13-6c1b8304c201} diff --git a/Zip/Zip_vs100.vcxproj b/Zip/Zip_vs100.vcxproj index 43ca220a6..207a7913d 100644 --- a/Zip/Zip_vs100.vcxproj +++ b/Zip/Zip_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoZipd - PocoZipmdd - PocoZipmtd - PocoZip - PocoZipmd - PocoZipmt + ..\bin\ + obj\$(Configuration)\ + true + ..\bin\ + obj\$(Configuration)\ + false + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + PocoZipd + PocoZipmdd + PocoZipmtd + PocoZip + PocoZipmd + PocoZipmt - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib\PocoZipmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib\PocoZipmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib\PocoZipmdd.lib - + Disabled OnlyExplicitInline @@ -317,10 +317,10 @@ - true - true - true - true + true + true + true + true diff --git a/Zip/Zip_vs100.vcxproj.filters b/Zip/Zip_vs100.vcxproj.filters index b36b98cac..48da58cbb 100644 --- a/Zip/Zip_vs100.vcxproj.filters +++ b/Zip/Zip_vs100.vcxproj.filters @@ -2,22 +2,22 @@ - {527d977f-e48e-4f31-8405-06026fbd142a} + {b9e32382-3426-4c78-8e23-5492a8ad417d} - {1a9c3e8b-9053-472d-8e42-48084506db64} + {39163c32-aa7d-4da9-8ffe-b75b519cff43} - {fb2e125e-7c16-47b1-a895-c78c216fd2b9} + {fb389246-d3ff-4d44-bf8f-22bbe1cf7747} - {f8e6b994-e2b0-41fb-be19-9f32ec8cfab8} + {39ef85f5-e1cd-426a-8364-d77f5b37259f} - {6ffb5ff2-8bf8-4786-881c-4b7dc733468f} + {47313818-e3ba-40b0-b8fe-9f242af8e5c2} - {ae5dc2c5-32e2-4913-a512-551580feae34} + {457352f0-d1b9-4e32-a7a2-cea96dca7e6e} diff --git a/Zip/Zip_vs110.vcxproj b/Zip/Zip_vs110.vcxproj index f1fa0c3ff..53219b592 100644 --- a/Zip/Zip_vs110.vcxproj +++ b/Zip/Zip_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - PocoZipd - PocoZipmdd - PocoZipmtd - PocoZip - PocoZipmd - PocoZipmt + <_ProjectFileVersion>11.0.61030.0 + PocoZipd + PocoZipmdd + PocoZipmtd + PocoZip + PocoZipmd + PocoZipmt - + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -138,7 +150,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -172,7 +184,7 @@ MachineX86 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +208,7 @@ ..\lib\PocoZipmtd.lib - + Disabled OnlyExplicitInline @@ -221,7 +233,7 @@ ..\lib\PocoZipmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -245,7 +257,7 @@ ..\lib\PocoZipmdd.lib - + Disabled OnlyExplicitInline @@ -322,7 +334,12 @@ - + + true + true + true + true + diff --git a/Zip/Zip_vs110.vcxproj.filters b/Zip/Zip_vs110.vcxproj.filters index 98f63bba6..54aaf092c 100644 --- a/Zip/Zip_vs110.vcxproj.filters +++ b/Zip/Zip_vs110.vcxproj.filters @@ -2,22 +2,22 @@ - {89ee6501-3d79-4da0-8455-a5a3c63aee53} + {0f6f04b1-86f6-48fd-a5b8-9b9dab4b553e} - {61fad059-d6a1-42c8-9681-a1ac8cb3738f} + {6e8caa5a-c919-400f-9c8d-4ff268302d23} - {443964da-eb84-4b15-b5f4-30ab76713f50} + {7ef16a17-b17d-4d0a-828d-1724e4aa3941} - {c099fdaf-74e2-47d2-88d5-e8da3878ed53} + {bd7abbe2-412e-4368-b10d-e4541cfad3fc} - {31e470b5-f10e-415e-a8ef-dbac5b600275} + {c8006b51-d832-45f2-9541-4e26d62345af} - {c685b632-d1f6-4fe6-8525-969065b0a481} + {29ae293a-1a64-4c01-85ee-6e748d008a32} diff --git a/Zip/Zip_vs120.sln b/Zip/Zip_vs120.sln index 31530c06b..9e15fd228 100644 --- a/Zip/Zip_vs120.sln +++ b/Zip/Zip_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Zip", "Zip_vs120.vcxproj", "{4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_vs120.vcxproj", "{9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|Win32 = debug_shared|Win32 - debug_static_md|Win32 = debug_static_md|Win32 - debug_static_mt|Win32 = debug_static_mt|Win32 release_shared|Win32 = release_shared|Win32 - release_static_md|Win32 = release_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_shared|Win32.ActiveCfg = release_shared|Win32 {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_shared|Win32.Build.0 = release_shared|Win32 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_shared|Win32.Build.0 = debug_shared|Win32 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_shared|Win32.ActiveCfg = release_shared|Win32 {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_shared|Win32.Build.0 = release_shared|Win32 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Zip/Zip_vs120.vcxproj b/Zip/Zip_vs120.vcxproj index 56a1fc6d1..ebec09872 100644 --- a/Zip/Zip_vs120.vcxproj +++ b/Zip/Zip_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Zip Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin\ - obj\$(Configuration)\ - true - ..\bin\ - obj\$(Configuration)\ - false - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ - ..\lib\ - obj\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoZipd PocoZipmdd PocoZipmtd @@ -107,6 +93,32 @@ PocoZipmd PocoZipmt + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + Disabled @@ -120,7 +132,7 @@ true true true - + Level3 EditAndContinue Default @@ -153,9 +165,9 @@ true true true - + Level3 - + Default 4244;4267;%(DisableSpecificWarnings) @@ -185,7 +197,7 @@ true true true - + ..\lib\PocoZipmtd.pdb Level3 EditAndContinue @@ -211,9 +223,9 @@ true true true - + Level3 - + Default 4244;4267;%(DisableSpecificWarnings) @@ -234,7 +246,7 @@ true true true - + ..\lib\PocoZipmdd.pdb Level3 EditAndContinue @@ -260,10 +272,10 @@ true true true - + ..\lib\PocoZipmd.pdb Level3 - + Default 4244;4267;%(DisableSpecificWarnings) @@ -273,57 +285,62 @@ - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - + + true + true + true + true + - - - \ No newline at end of file + + + diff --git a/Zip/Zip_vs120.vcxproj.filters b/Zip/Zip_vs120.vcxproj.filters index 98f63bba6..48071e3c9 100644 --- a/Zip/Zip_vs120.vcxproj.filters +++ b/Zip/Zip_vs120.vcxproj.filters @@ -2,22 +2,22 @@ - {89ee6501-3d79-4da0-8455-a5a3c63aee53} + {c66e57fe-b191-4600-87d8-2cc12d59d761} - {61fad059-d6a1-42c8-9681-a1ac8cb3738f} + {638fadb5-1295-453b-aa56-633a185a4277} - {443964da-eb84-4b15-b5f4-30ab76713f50} + {62fd1625-3243-4b98-acd4-403c19a5c230} - {c099fdaf-74e2-47d2-88d5-e8da3878ed53} + {b32ca400-125a-4cf0-8abc-9d6383f2fedc} - {31e470b5-f10e-415e-a8ef-dbac5b600275} + {07e25a2f-242d-4a4e-9672-4a465700fd0b} - {c685b632-d1f6-4fe6-8525-969065b0a481} + {e89b07c3-a601-468d-9d15-e7fa138ab3c1} diff --git a/Zip/Zip_x64_vs100.vcxproj b/Zip/Zip_x64_vs100.vcxproj index 404629b65..47981dab3 100644 --- a/Zip/Zip_x64_vs100.vcxproj +++ b/Zip/Zip_x64_vs100.vcxproj @@ -33,75 +33,75 @@ Win32Proj - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + StaticLibrary MultiByte - + DynamicLibrary MultiByte - + DynamicLibrary MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoZip64d - PocoZipmdd - PocoZipmtd - PocoZip64 - PocoZipmd - PocoZipmt + ..\bin64\ + obj64\$(Configuration)\ + true + ..\bin64\ + obj64\$(Configuration)\ + false + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + PocoZip64d + PocoZipmdd + PocoZipmtd + PocoZip64 + PocoZipmd + PocoZipmt - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -132,7 +132,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +166,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -190,7 +190,7 @@ ..\lib64\PocoZipmtd.lib - + Disabled OnlyExplicitInline @@ -215,7 +215,7 @@ ..\lib64\PocoZipmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -239,7 +239,7 @@ ..\lib64\PocoZipmdd.lib - + Disabled OnlyExplicitInline @@ -315,10 +315,10 @@ - true - true - true - true + true + true + true + true diff --git a/Zip/Zip_x64_vs100.vcxproj.filters b/Zip/Zip_x64_vs100.vcxproj.filters index 1b671d5c4..969773430 100644 --- a/Zip/Zip_x64_vs100.vcxproj.filters +++ b/Zip/Zip_x64_vs100.vcxproj.filters @@ -2,22 +2,22 @@ - {50646af3-3f92-495f-ad32-d3eb049f01fd} + {b15e3001-e886-4707-88b5-47a3b13ff762} - {99037355-3083-4faf-86db-9fd83506a877} + {18bd923b-f929-4012-9f30-e65883b0ad14} - {095a35a9-cce3-4892-979c-5fe9237b5294} + {b0debdfb-1f18-48c5-ae25-603ad318e80a} - {9970a03a-e79a-4bf3-a2af-f5ad18875c1a} + {d7a9f619-c58b-4973-8aa5-ddcd5e975ccf} - {614c4bb1-2a0a-4096-9c2e-b765951c06a5} + {cbecb6f0-94e5-4b39-b45d-a0fe71201553} - {e233c41d-32f7-4cb7-8880-4a1e2e6f9026} + {8597fa15-e082-485c-bc1c-29655c633004} diff --git a/Zip/Zip_x64_vs110.vcxproj b/Zip/Zip_x64_vs110.vcxproj index 8911121e3..57b98ed41 100644 --- a/Zip/Zip_x64_vs110.vcxproj +++ b/Zip/Zip_x64_vs110.vcxproj @@ -33,81 +33,93 @@ Win32Proj - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + StaticLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - + DynamicLibrary MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - PocoZip64d - PocoZipmdd - PocoZipmtd - PocoZip64 - PocoZipmd - PocoZipmt + <_ProjectFileVersion>11.0.61030.0 + PocoZip64d + PocoZipmdd + PocoZipmtd + PocoZip64 + PocoZipmd + PocoZipmt - + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -138,7 +150,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -172,7 +184,7 @@ MachineX64 - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +208,7 @@ ..\lib64\PocoZipmtd.lib - + Disabled OnlyExplicitInline @@ -221,7 +233,7 @@ ..\lib64\PocoZipmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -245,7 +257,7 @@ ..\lib64\PocoZipmdd.lib - + Disabled OnlyExplicitInline @@ -320,7 +332,12 @@ - + + true + true + true + true + diff --git a/Zip/Zip_x64_vs110.vcxproj.filters b/Zip/Zip_x64_vs110.vcxproj.filters index 87245796d..4c9fbf3a2 100644 --- a/Zip/Zip_x64_vs110.vcxproj.filters +++ b/Zip/Zip_x64_vs110.vcxproj.filters @@ -2,22 +2,22 @@ - {656b3c18-a1d5-457a-9f8e-e5ffa1ae364e} + {53818047-0ff6-40b2-be59-eac6935dcf4c} - {09e2d9b8-7e31-4049-bc62-5a5f8f63fb4e} + {853d1545-3c0d-4cff-a7cb-9f969f8be79b} - {e3260f47-7e0b-4b23-ab5b-e218ec23fd67} + {8f80327e-2f30-4992-9693-d0dc25aea27b} - {ac4c42e0-56b2-4dd0-951e-a40bdaaf0f7d} + {a4797a75-cbc0-4d59-af48-648428d16165} - {4b54b78e-b7b8-4659-9866-613de74cce54} + {e5b077ce-d628-4cbc-8675-0dafa9b80863} - {823f37f8-41f1-4830-9a5a-d10892923527} + {ca6d92ba-cc99-4ead-a127-7eb819a68da5} diff --git a/Zip/Zip_x64_vs120.sln b/Zip/Zip_x64_vs120.sln index f2bf4c73a..d69fafe98 100644 --- a/Zip/Zip_x64_vs120.sln +++ b/Zip/Zip_x64_vs120.sln @@ -1,7 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Zip", "Zip_x64_vs120.vcxproj", "{4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\TestSuite_x64_vs120.vcxproj", "{9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}" @@ -12,37 +10,49 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution debug_shared|x64 = debug_shared|x64 - debug_static_md|x64 = debug_static_md|x64 - debug_static_mt|x64 = debug_static_mt|x64 release_shared|x64 = release_shared|x64 - release_static_md|x64 = release_static_md|x64 + debug_static_mt|x64 = debug_static_mt|x64 release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_shared|x64.ActiveCfg = debug_shared|x64 {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_shared|x64.Build.0 = debug_shared|x64 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_shared|x64.Deploy.0 = debug_shared|x64 {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_shared|x64.ActiveCfg = release_shared|x64 {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_shared|x64.Build.0 = release_shared|x64 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|x64.Build.0 = release_static_md|x64 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_shared|x64.Deploy.0 = release_shared|x64 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|x64.Build.0 = release_static_md|x64 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|x64.Deploy.0 = release_static_md|x64 {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_shared|x64.ActiveCfg = debug_shared|x64 {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_shared|x64.Build.0 = debug_shared|x64 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|x64.Build.0 = debug_static_md|x64 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_shared|x64.Deploy.0 = debug_shared|x64 {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_shared|x64.ActiveCfg = release_shared|x64 {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_shared|x64.Build.0 = release_shared|x64 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|x64.ActiveCfg = release_static_md|x64 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|x64.Build.0 = release_static_md|x64 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_shared|x64.Deploy.0 = release_shared|x64 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|x64.Build.0 = release_static_md|x64 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|x64.Deploy.0 = release_static_md|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Zip/Zip_x64_vs120.vcxproj b/Zip/Zip_x64_vs120.vcxproj index fa6d4f592..523162a03 100644 --- a/Zip/Zip_x64_vs120.vcxproj +++ b/Zip/Zip_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ Zip Win32Proj - + StaticLibrary MultiByte @@ -63,43 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - ..\bin64\ - obj64\$(Configuration)\ - true - ..\bin64\ - obj64\$(Configuration)\ - false - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ - ..\lib64\ - obj64\$(Configuration)\ + <_ProjectFileVersion>11.0.61030.0 PocoZip64d PocoZipmdd PocoZipmtd @@ -107,6 +93,32 @@ PocoZipmd PocoZipmt + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + Disabled @@ -120,7 +132,7 @@ true true true - + Level3 ProgramDatabase Default @@ -153,9 +165,9 @@ true true true - + Level3 - + Default 4244;4267;%(DisableSpecificWarnings) @@ -185,7 +197,7 @@ true true true - + ..\lib64\PocoZipmtd.pdb Level3 ProgramDatabase @@ -211,9 +223,9 @@ true true true - + Level3 - + Default 4244;4267;%(DisableSpecificWarnings) @@ -234,7 +246,7 @@ true true true - + ..\lib64\PocoZipmdd.pdb Level3 ProgramDatabase @@ -260,9 +272,9 @@ true true true - + Level3 - + Default 4244;4267;%(DisableSpecificWarnings) @@ -271,57 +283,62 @@ - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - + + true + true + true + true + - - - \ No newline at end of file + + + diff --git a/Zip/Zip_x64_vs120.vcxproj.filters b/Zip/Zip_x64_vs120.vcxproj.filters index 87245796d..b2a774e80 100644 --- a/Zip/Zip_x64_vs120.vcxproj.filters +++ b/Zip/Zip_x64_vs120.vcxproj.filters @@ -2,22 +2,22 @@ - {656b3c18-a1d5-457a-9f8e-e5ffa1ae364e} + {072ede9e-0227-438b-8a06-d1efa8cf50fb} - {09e2d9b8-7e31-4049-bc62-5a5f8f63fb4e} + {560d54b4-addf-4dd1-a03b-2acc5d969002} - {e3260f47-7e0b-4b23-ab5b-e218ec23fd67} + {0b7e6ae6-c1a6-4d76-ab68-1ac72fd4076d} - {ac4c42e0-56b2-4dd0-951e-a40bdaaf0f7d} + {2615d76f-337a-4776-9fc1-df3ed7929d19} - {4b54b78e-b7b8-4659-9866-613de74cce54} + {729ba75c-636d-4821-81d8-abe7b72cdfd5} - {823f37f8-41f1-4830-9a5a-d10892923527} + {2f819377-2c54-4bfc-a088-24185bae134c} diff --git a/Zip/samples/samples_vs120.sln b/Zip/samples/samples_vs120.sln index 4c83c62d8..cd76107bb 100644 --- a/Zip/samples/samples_vs120.sln +++ b/Zip/samples/samples_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zip", "zip\zip_vs120.vcxproj", "{7F3AD0E5-A150-3AE7-9041-9086C45020C0}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unzip", "unzip\unzip_vs120.vcxproj", "{9FE5275A-E14A-30C2-9C5B-AEBDE780608F}" diff --git a/Zip/samples/samples_x64_vs120.sln b/Zip/samples/samples_x64_vs120.sln index 7a5ce7a30..454a86c5d 100644 --- a/Zip/samples/samples_x64_vs120.sln +++ b/Zip/samples/samples_x64_vs120.sln @@ -1,5 +1,5 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zip", "zip\zip_x64_vs120.vcxproj", "{7F3AD0E5-A150-3AE7-9041-9086C45020C0}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unzip", "unzip\unzip_x64_vs120.vcxproj", "{9FE5275A-E14A-30C2-9C5B-AEBDE780608F}" diff --git a/Zip/samples/unzip/unzip_WEC2013_vs110.vcxproj.filters b/Zip/samples/unzip/unzip_WEC2013_vs110.vcxproj.filters index 65a5e6660..59b08359d 100644 --- a/Zip/samples/unzip/unzip_WEC2013_vs110.vcxproj.filters +++ b/Zip/samples/unzip/unzip_WEC2013_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {b9bbaffb-1910-41f1-be09-fd22d3833cfc} + {474f0b2c-132a-4766-9162-0153774f989e} - {68c92ca0-2dca-499c-bf22-3eabc5cef3a3} + {79da0d8a-a80b-47f8-be06-4fe1d0ab0bd7} diff --git a/Zip/samples/unzip/unzip_vs100.vcxproj b/Zip/samples/unzip/unzip_vs100.vcxproj index 894d34fc6..e4bb2055b 100644 --- a/Zip/samples/unzip/unzip_vs100.vcxproj +++ b/Zip/samples/unzip/unzip_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - unzipd - unzipd - unzipd - unzip - unzip - unzip + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + unzipd + unzipd + unzipd + unzip + unzip + unzip - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Zip/samples/unzip/unzip_vs100.vcxproj.filters b/Zip/samples/unzip/unzip_vs100.vcxproj.filters index 1f041b080..a6e5cb9ea 100644 --- a/Zip/samples/unzip/unzip_vs100.vcxproj.filters +++ b/Zip/samples/unzip/unzip_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {f6b1fb43-59ba-4663-b293-f3cfde92502a} + {02f63ecf-0dd3-45a6-8f8c-9aa4b1d79968} - {6d562fb0-fae5-45a0-9317-0d699a144d2f} + {427c1f3c-0b2f-474c-a726-6c9c59c0b262} diff --git a/Zip/samples/unzip/unzip_vs110.vcxproj b/Zip/samples/unzip/unzip_vs110.vcxproj index 278059e8e..685bc274d 100644 --- a/Zip/samples/unzip/unzip_vs110.vcxproj +++ b/Zip/samples/unzip/unzip_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - unzipd - unzipd - unzipd - unzip - unzip - unzip + <_ProjectFileVersion>11.0.61030.0 + unzipd + unzipd + unzipd + unzip + unzip + unzip - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Zip/samples/unzip/unzip_vs110.vcxproj.filters b/Zip/samples/unzip/unzip_vs110.vcxproj.filters index 22d888968..d1faaaf4d 100644 --- a/Zip/samples/unzip/unzip_vs110.vcxproj.filters +++ b/Zip/samples/unzip/unzip_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {b2889132-f36b-4c57-a197-1189b52c46bd} + {74b7ad3a-2573-4f5d-861b-de2468c7bdf5} - {eb4b0e5f-460c-48b7-ab1e-5cd2cbd6b590} + {097e888e-3c04-4db1-a0ae-868828ab2680} diff --git a/Zip/samples/unzip/unzip_vs120.vcxproj b/Zip/samples/unzip/unzip_vs120.vcxproj index 0c7271cc2..3725906eb 100644 --- a/Zip/samples/unzip/unzip_vs120.vcxproj +++ b/Zip/samples/unzip/unzip_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ unzip Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 unzipd unzipd unzipd @@ -111,6 +93,36 @@ unzip unzip + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Zip/samples/unzip/unzip_vs120.vcxproj.filters b/Zip/samples/unzip/unzip_vs120.vcxproj.filters index 22d888968..19ff61cfd 100644 --- a/Zip/samples/unzip/unzip_vs120.vcxproj.filters +++ b/Zip/samples/unzip/unzip_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {b2889132-f36b-4c57-a197-1189b52c46bd} + {59bcb284-ec6a-4328-80fc-6dcd5292106b} - {eb4b0e5f-460c-48b7-ab1e-5cd2cbd6b590} + {11420973-ee3e-4d2f-996c-635ba28a51e3} diff --git a/Zip/samples/unzip/unzip_x64_vs100.vcxproj b/Zip/samples/unzip/unzip_x64_vs100.vcxproj index 3adc92af5..94ab8139f 100644 --- a/Zip/samples/unzip/unzip_x64_vs100.vcxproj +++ b/Zip/samples/unzip/unzip_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - unzipd - unzipd - unzipd - unzip - unzip - unzip + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + unzipd + unzipd + unzipd + unzip + unzip + unzip - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Zip/samples/unzip/unzip_x64_vs100.vcxproj.filters b/Zip/samples/unzip/unzip_x64_vs100.vcxproj.filters index 9c17687cb..37ecdd216 100644 --- a/Zip/samples/unzip/unzip_x64_vs100.vcxproj.filters +++ b/Zip/samples/unzip/unzip_x64_vs100.vcxproj.filters @@ -2,10 +2,10 @@ - {65a883cd-edbc-4e78-9b37-d11b258eb6bf} + {be761c2b-b1cd-4a02-a56c-5ff5ed2a2357} - {e12c33da-9f0d-45ce-aba4-3b8f75fe895a} + {26144994-1c84-4177-861d-8359aec9930c} diff --git a/Zip/samples/unzip/unzip_x64_vs110.vcxproj b/Zip/samples/unzip/unzip_x64_vs110.vcxproj index 5a1536a5d..77931a12c 100644 --- a/Zip/samples/unzip/unzip_x64_vs110.vcxproj +++ b/Zip/samples/unzip/unzip_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - unzipd - unzipd - unzipd - unzip - unzip - unzip + <_ProjectFileVersion>11.0.61030.0 + unzipd + unzipd + unzipd + unzip + unzip + unzip - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Zip/samples/unzip/unzip_x64_vs110.vcxproj.filters b/Zip/samples/unzip/unzip_x64_vs110.vcxproj.filters index a9d2ea96d..e49852b56 100644 --- a/Zip/samples/unzip/unzip_x64_vs110.vcxproj.filters +++ b/Zip/samples/unzip/unzip_x64_vs110.vcxproj.filters @@ -2,10 +2,10 @@ - {0108e417-e11b-414b-be4c-0572b01a5978} + {a54ca608-cef7-427a-84fb-51c335aa2ad0} - {03207af1-bae3-4aaf-945f-bc044142ce47} + {fdd2889e-108b-43f1-b848-b831fd43852f} diff --git a/Zip/samples/unzip/unzip_x64_vs120.vcxproj b/Zip/samples/unzip/unzip_x64_vs120.vcxproj index fe2a5c80b..a98b7bacb 100644 --- a/Zip/samples/unzip/unzip_x64_vs120.vcxproj +++ b/Zip/samples/unzip/unzip_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ unzip Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 unzipd unzipd unzipd @@ -111,6 +93,36 @@ unzip unzip + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Zip/samples/unzip/unzip_x64_vs120.vcxproj.filters b/Zip/samples/unzip/unzip_x64_vs120.vcxproj.filters index a9d2ea96d..9c21b7b96 100644 --- a/Zip/samples/unzip/unzip_x64_vs120.vcxproj.filters +++ b/Zip/samples/unzip/unzip_x64_vs120.vcxproj.filters @@ -2,10 +2,10 @@ - {0108e417-e11b-414b-be4c-0572b01a5978} + {03946488-506d-4ad3-a867-e593d4dc1e97} - {03207af1-bae3-4aaf-945f-bc044142ce47} + {c2a35043-009c-4e69-9c44-928f327f9f80} diff --git a/Zip/samples/zip/zip_WEC2013_vs110.vcxproj.filters b/Zip/samples/zip/zip_WEC2013_vs110.vcxproj.filters index 251598dc8..5391da100 100644 --- a/Zip/samples/zip/zip_WEC2013_vs110.vcxproj.filters +++ b/Zip/samples/zip/zip_WEC2013_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {146d1cbe-2344-493e-b812-555d63e69aa2} + {11948073-a7d6-4edb-a8ca-d52f85d7b9cf} diff --git a/Zip/samples/zip/zip_vs100.vcxproj b/Zip/samples/zip/zip_vs100.vcxproj index b449a7379..213db0201 100644 --- a/Zip/samples/zip/zip_vs100.vcxproj +++ b/Zip/samples/zip/zip_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - zipd - zipd - zipd - zip - zip - zip + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + zipd + zipd + zipd + zip + zip + zip - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Zip/samples/zip/zip_vs100.vcxproj.filters b/Zip/samples/zip/zip_vs100.vcxproj.filters index e0c9aee62..6d9738417 100644 --- a/Zip/samples/zip/zip_vs100.vcxproj.filters +++ b/Zip/samples/zip/zip_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {a167d694-66e1-4bd5-a3de-d12168de3a4f} + {022e9a3e-b47f-46b5-b865-27a961e15226} diff --git a/Zip/samples/zip/zip_vs110.vcxproj b/Zip/samples/zip/zip_vs110.vcxproj index d85f52f4f..e170d0d8b 100644 --- a/Zip/samples/zip/zip_vs110.vcxproj +++ b/Zip/samples/zip/zip_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - zipd - zipd - zipd - zip - zip - zip + <_ProjectFileVersion>11.0.61030.0 + zipd + zipd + zipd + zip + zip + zip - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX86 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Zip/samples/zip/zip_vs110.vcxproj.filters b/Zip/samples/zip/zip_vs110.vcxproj.filters index 34731b62e..2ed771d85 100644 --- a/Zip/samples/zip/zip_vs110.vcxproj.filters +++ b/Zip/samples/zip/zip_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {08ff4bea-99d8-4f6a-ad1d-0ae6ff1a2ec9} + {8e511e03-71db-4ad8-ae7f-fe4034a648ef} diff --git a/Zip/samples/zip/zip_vs120.vcxproj b/Zip/samples/zip/zip_vs120.vcxproj index c502d15ff..5542adbc3 100644 --- a/Zip/samples/zip/zip_vs120.vcxproj +++ b/Zip/samples/zip/zip_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ zip Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 zipd zipd zipd @@ -111,6 +93,36 @@ zip zip + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Zip/samples/zip/zip_vs120.vcxproj.filters b/Zip/samples/zip/zip_vs120.vcxproj.filters index 34731b62e..b478c6f54 100644 --- a/Zip/samples/zip/zip_vs120.vcxproj.filters +++ b/Zip/samples/zip/zip_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {08ff4bea-99d8-4f6a-ad1d-0ae6ff1a2ec9} + {cdd4b4ca-7ebb-440e-ac06-aaaf27759e2b} diff --git a/Zip/samples/zip/zip_x64_vs100.vcxproj b/Zip/samples/zip/zip_x64_vs100.vcxproj index 207bdd9d4..9722db19a 100644 --- a/Zip/samples/zip/zip_x64_vs100.vcxproj +++ b/Zip/samples/zip/zip_x64_vs100.vcxproj @@ -33,79 +33,79 @@ Win32Proj - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - + Application MultiByte - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.30319.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - zipd - zipd - zipd - zip - zip - zip + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + zipd + zipd + zipd + zip + zip + zip - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -135,7 +135,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +229,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -259,7 +259,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Zip/samples/zip/zip_x64_vs100.vcxproj.filters b/Zip/samples/zip/zip_x64_vs100.vcxproj.filters index 741466dd2..1f438b8c6 100644 --- a/Zip/samples/zip/zip_x64_vs100.vcxproj.filters +++ b/Zip/samples/zip/zip_x64_vs100.vcxproj.filters @@ -2,7 +2,7 @@ - {3f20617f-1946-4287-9748-885f08cb5af3} + {7970c626-b15e-4e9b-b9a5-0e368a90b6ce} diff --git a/Zip/samples/zip/zip_x64_vs110.vcxproj b/Zip/samples/zip/zip_x64_vs110.vcxproj index 553b83e72..d28b7c506 100644 --- a/Zip/samples/zip/zip_x64_vs110.vcxproj +++ b/Zip/samples/zip/zip_x64_vs110.vcxproj @@ -33,85 +33,97 @@ Win32Proj - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - + Application MultiByte v110 - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - zipd - zipd - zipd - zip - zip - zip + <_ProjectFileVersion>11.0.61030.0 + zipd + zipd + zipd + zip + zip + zip - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -128,7 +140,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -141,7 +152,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -160,7 +171,6 @@ Level3 Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -173,7 +183,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -190,7 +200,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -203,7 +212,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -222,7 +231,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -235,7 +243,7 @@ MachineX64 - + Disabled .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -252,7 +260,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -265,7 +272,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -284,7 +291,6 @@ Level3 Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) diff --git a/Zip/samples/zip/zip_x64_vs110.vcxproj.filters b/Zip/samples/zip/zip_x64_vs110.vcxproj.filters index 9ea0dfc8c..76c02c06f 100644 --- a/Zip/samples/zip/zip_x64_vs110.vcxproj.filters +++ b/Zip/samples/zip/zip_x64_vs110.vcxproj.filters @@ -2,7 +2,7 @@ - {998ee794-4c7f-467b-ab27-46311c6e57a8} + {4ea72f61-d6ef-4728-a1b2-5c141a2ab1d3} diff --git a/Zip/samples/zip/zip_x64_vs120.vcxproj b/Zip/samples/zip/zip_x64_vs120.vcxproj index f6e6e1c28..6484fe684 100644 --- a/Zip/samples/zip/zip_x64_vs120.vcxproj +++ b/Zip/samples/zip/zip_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,7 +32,7 @@ zip Win32Proj - + Application MultiByte @@ -63,47 +63,29 @@ MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 zipd zipd zipd @@ -111,6 +93,36 @@ zip zip + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -124,11 +136,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -156,11 +167,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -186,11 +196,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -218,11 +227,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -248,11 +256,10 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -280,11 +287,10 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) @@ -298,8 +304,8 @@ - + - - - \ No newline at end of file + + + diff --git a/Zip/samples/zip/zip_x64_vs120.vcxproj.filters b/Zip/samples/zip/zip_x64_vs120.vcxproj.filters index 9ea0dfc8c..f2a462a26 100644 --- a/Zip/samples/zip/zip_x64_vs120.vcxproj.filters +++ b/Zip/samples/zip/zip_x64_vs120.vcxproj.filters @@ -2,7 +2,7 @@ - {998ee794-4c7f-467b-ab27-46311c6e57a8} + {3c726a82-92cd-415f-b765-5b70948b7bce} diff --git a/Zip/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters b/Zip/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters index f0ea1c5eb..1a5b9d220 100644 --- a/Zip/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters +++ b/Zip/testsuite/TestSuite_WEC2013_vs110.vcxproj.filters @@ -2,28 +2,28 @@ - {e3c894e4-2d19-4219-bf95-7852a867b65b} + {053fbce0-5d0e-4dc9-b497-22220c0c2acb} - {136ee7c5-9d03-42bd-b55f-ec338a4d4231} + {8e373acf-d000-428e-8b53-ecefc2dc2f83} - {3728dcab-c354-44be-a325-5d215f577afe} + {11888bf6-238a-4028-9d0c-b3420fe1205e} - {f5f24127-9059-4c3e-9293-7a32c8d3fc78} + {68a9236b-eea6-4808-9b0e-0e42ee25773f} - {ecddae68-a35f-4590-934c-0533f532effd} + {fc3d9fcf-4b66-4075-b2c8-9b0354e4b61b} - {aa22a3f9-7d08-4749-977e-4cb4d1aad312} + {a4368243-e381-4d86-9a5d-f57ccd680111} - {c05a5f82-eb12-4c86-a75f-790587943c74} + {fd159f00-71e5-4850-b8a4-a3d0e5187f27} - {ccbef987-4f60-4d46-b4c2-4ca1645a770a} + {c08cd712-a9eb-427c-a1bb-4a7ed6019724} diff --git a/Zip/testsuite/TestSuite_vs100.vcxproj b/Zip/testsuite/TestSuite_vs100.vcxproj index 06ef586f8..48e096469 100644 --- a/Zip/testsuite/TestSuite_vs100.vcxproj +++ b/Zip/testsuite/TestSuite_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX86 - + Disabled OnlyExplicitInline diff --git a/Zip/testsuite/TestSuite_vs100.vcxproj.filters b/Zip/testsuite/TestSuite_vs100.vcxproj.filters index d77419107..267f409ae 100644 --- a/Zip/testsuite/TestSuite_vs100.vcxproj.filters +++ b/Zip/testsuite/TestSuite_vs100.vcxproj.filters @@ -2,28 +2,28 @@ - {2559b3af-65ce-4883-9d61-2a34e507a942} + {29630e4f-4ccd-4fe8-9839-69b904b66536} - {65e829c6-78e3-4099-b4fe-4b87576fe7e8} + {31e04ecc-3b01-4140-b26c-869b11c38c0e} - {2dd7452a-3e0a-4331-9e1a-192734f16cdf} + {dcf11b4f-e838-450f-99b7-9b5d3a4badaf} - {71c9cbe8-7359-4000-975b-446ab01ecd5f} + {6510ddd1-20bf-45ee-957f-d0f4cf05c50b} - {fd71b310-6eee-4626-bbe9-cbeca0fec56c} + {1720bb4c-1212-46ef-b2a8-ba1a1ae00ebb} - {ba5029b7-4670-40fb-958f-7d6cf508ef6b} + {5e9b0487-ed91-44bb-a5b1-2edb4658c3de} - {206b4fcb-35f4-4c72-99b8-e3fe1485546a} + {f28201f3-12b1-4c18-bfbd-889349f8d44a} - {2313f4b0-9bb7-42d7-b6cc-ada6d7aac17f} + {c3004490-73cc-44ee-9ca4-cad4044f130f} diff --git a/Zip/testsuite/TestSuite_vs110.vcxproj b/Zip/testsuite/TestSuite_vs110.vcxproj index 90e059f1a..980e79421 100644 --- a/Zip/testsuite/TestSuite_vs110.vcxproj +++ b/Zip/testsuite/TestSuite_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX86 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 EditAndContinue Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX86 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/Zip/testsuite/TestSuite_vs110.vcxproj.filters b/Zip/testsuite/TestSuite_vs110.vcxproj.filters index 988f353af..c07d6b97e 100644 --- a/Zip/testsuite/TestSuite_vs110.vcxproj.filters +++ b/Zip/testsuite/TestSuite_vs110.vcxproj.filters @@ -2,28 +2,28 @@ - {a16c665b-5700-4a2a-af8e-f80cd1f21d3f} + {3bcbc442-f822-4ae6-a30b-c8756b328a9e} - {04d0b6bf-24ec-4025-a4e2-85ef7f9121d2} + {11a98128-d579-4e6a-9af5-a72cb1422d5d} - {a1228aed-c68a-431e-b256-6d8b1870e971} + {4820946e-d7c5-4c0c-88e4-47cc90945bc0} - {0d521ea5-f63d-4c9d-98c7-e0618015e758} + {77a17daf-f2cc-4d13-9899-d03d68991780} - {b5d8dcbc-e354-4d97-8702-9b0aee7c6f83} + {cb65bb91-92d6-4b83-b00f-be1cc70f5074} - {881f920e-f0d6-48d9-93a4-12e7710f5fd9} + {008273b6-9eef-4e92-8fb3-d4a1aefaed57} - {18f7676e-1498-4d9a-9f38-ebc458351e07} + {2902916a-78c5-4461-b887-d03241fa05b1} - {f9dd095a-d8b0-4a0f-9a8a-0891cb07a6e9} + {98662f08-1e6a-4e61-8fba-fcd971c7467e} diff --git a/Zip/testsuite/TestSuite_vs120.vcxproj b/Zip/testsuite/TestSuite_vs120.vcxproj index 7b5e16f8b..845eedfe8 100644 --- a/Zip/testsuite/TestSuite_vs120.vcxproj +++ b/Zip/testsuite/TestSuite_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin\ - obj\$(Configuration)\ - true - bin\ - obj\$(Configuration)\ - false - bin\static_mt\ - obj\$(Configuration)\ - true - bin\static_mt\ - obj\$(Configuration)\ - false - bin\static_md\ - obj\$(Configuration)\ - true - bin\static_md\ - obj\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Console + Windows MachineX86 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 @@ -192,21 +202,20 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Console + Windows MachineX86 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX86 @@ -256,20 +264,19 @@ true true true - + Level3 EditAndContinue Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Console + Windows MachineX86 @@ -288,36 +295,35 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX86 - - - - + + + + - - - - - + + + + + - - - \ No newline at end of file + + + diff --git a/Zip/testsuite/TestSuite_vs120.vcxproj.filters b/Zip/testsuite/TestSuite_vs120.vcxproj.filters index 51394ab3b..a55ed09b6 100644 --- a/Zip/testsuite/TestSuite_vs120.vcxproj.filters +++ b/Zip/testsuite/TestSuite_vs120.vcxproj.filters @@ -2,28 +2,28 @@ - {a16c665b-5700-4a2a-af8e-f80cd1f21d3f} + {0faadb83-a6b7-44dc-8f07-0de66dbbc6a4} - {04d0b6bf-24ec-4025-a4e2-85ef7f9121d2} + {85ef67b1-a065-4008-95ff-0f52c293f2e6} - {a1228aed-c68a-431e-b256-6d8b1870e971} + {d7b2c597-b889-49f9-a423-297b5fb317e1} - {0d521ea5-f63d-4c9d-98c7-e0618015e758} + {d08d014d-cff7-4cb5-9980-80c0153e7811} - {b5d8dcbc-e354-4d97-8702-9b0aee7c6f83} + {53ed812c-d406-4f14-8ad3-458923ab38c6} - {881f920e-f0d6-48d9-93a4-12e7710f5fd9} + {39f3cb2d-3912-4ead-9756-fca2e8db5440} - {18f7676e-1498-4d9a-9f38-ebc458351e07} + {13936453-42b8-4026-b55b-0a17d0b3c2e7} - {f9dd095a-d8b0-4a0f-9a8a-0891cb07a6e9} + {2876fd5e-fb5a-4fc0-9a03-8f49c92b551e} @@ -53,7 +53,7 @@ _Suite\Source Files - + _Driver\Source Files diff --git a/Zip/testsuite/TestSuite_x64_vs100.vcxproj b/Zip/testsuite/TestSuite_x64_vs100.vcxproj index 9e3be4ff6..67894619a 100644 --- a/Zip/testsuite/TestSuite_x64_vs100.vcxproj +++ b/Zip/testsuite/TestSuite_x64_vs100.vcxproj @@ -33,85 +33,85 @@ Win32Proj - + Application Dynamic MultiByte - + Application Dynamic MultiByte - + Application Static MultiByte - + Application Static MultiByte - + Application Dynamic MultiByte - + Application Dynamic MultiByte - - + + - - + + - - + + - - + + - - + + - - + + <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -141,7 +141,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -173,7 +173,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -204,7 +204,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -237,7 +237,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -267,7 +267,7 @@ MachineX64 - + Disabled OnlyExplicitInline diff --git a/Zip/testsuite/TestSuite_x64_vs100.vcxproj.filters b/Zip/testsuite/TestSuite_x64_vs100.vcxproj.filters index c1d39705d..39c44af6d 100644 --- a/Zip/testsuite/TestSuite_x64_vs100.vcxproj.filters +++ b/Zip/testsuite/TestSuite_x64_vs100.vcxproj.filters @@ -2,28 +2,28 @@ - {b302702c-fb42-40b9-9a80-8f50099055f6} + {4fd19591-4d92-4fca-ac8f-7adbf569ffbc} - {a662658a-ee54-4508-8050-6b30d0d5863d} + {29777fb3-e3d0-414b-8ab6-4c3d36f2fca6} - {9653ed6a-93fe-4a67-a2e5-ee4d84d490cf} + {5c5ef6c1-264d-4692-b082-200827432199} - {abf5330c-677a-488a-96a2-9cac9fe67383} + {37a0fe52-4aa4-4a7a-a874-cc69894e3959} - {2cc67b1e-58ef-4de2-b347-06e47c028a1d} + {30b5fe22-a228-4564-8ece-ea15517c2472} - {8b2a961c-1c07-4f96-a636-9513f250f3e1} + {bc03c5b4-a4f3-490b-9ea2-965cea26b478} - {925cf1a0-f385-4b27-997e-306755fa6ce2} + {41fb22cf-5ff9-4bcb-a9cf-795d34e5fb7b} - {c3b45363-5ef1-402f-bac2-b6140325d45a} + {e427de5a-12d4-40b0-9d68-fdea795b7298} diff --git a/Zip/testsuite/TestSuite_x64_vs110.vcxproj b/Zip/testsuite/TestSuite_x64_vs110.vcxproj index 33d4f59e4..db1f1f39e 100644 --- a/Zip/testsuite/TestSuite_x64_vs110.vcxproj +++ b/Zip/testsuite/TestSuite_x64_vs110.vcxproj @@ -33,37 +33,37 @@ Win32Proj - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Static MultiByte v110 - + Application Static MultiByte v110 - + Application Dynamic MultiByte v110 - + Application Dynamic MultiByte @@ -71,53 +71,65 @@ - - + + - - + + - - + + - - + + - - + + - - + + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + <_ProjectFileVersion>11.0.61030.0 + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -134,7 +146,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) @@ -147,7 +158,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -166,7 +177,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) @@ -179,7 +189,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +206,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -210,7 +219,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -229,7 +238,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -243,7 +251,7 @@ MachineX64 - + Disabled ..\include;..\..\CppUnit\include;..\..\CppUnit\WinTestRunner\include;..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -260,7 +268,6 @@ Level3 ProgramDatabase Default - %(DisableSpecificWarnings) CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) @@ -273,7 +280,7 @@ MachineX64 - + Disabled OnlyExplicitInline @@ -292,7 +299,6 @@ Level3 Default - %(DisableSpecificWarnings) CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) diff --git a/Zip/testsuite/TestSuite_x64_vs110.vcxproj.filters b/Zip/testsuite/TestSuite_x64_vs110.vcxproj.filters index 4d4042b9a..96d2caf64 100644 --- a/Zip/testsuite/TestSuite_x64_vs110.vcxproj.filters +++ b/Zip/testsuite/TestSuite_x64_vs110.vcxproj.filters @@ -2,28 +2,28 @@ - {3154f242-146e-48cb-99bd-918a15137083} + {e0da30ac-7af1-4921-8b84-48aed6dda6d0} - {01a9ac05-669a-4932-8ee3-4a38d2ba2df0} + {35027242-0833-40a3-8f3a-4d5ad935af4b} - {db677391-ebfb-41c4-a34d-ecb5e384a787} + {8bb1cfe0-99d1-40e0-9d01-99615b832a99} - {a1604e87-69cb-461e-ab69-32e840549588} + {700b5fe6-da43-4929-918e-b6e7bc0e805e} - {0ec83424-3133-4d9e-9429-c7f3fb7ff190} + {2cf61eff-bc60-463f-965e-a60f644872ae} - {12e450b3-30b6-481c-9336-d6ceb02f17d9} + {3d65bcd4-9773-493d-a168-bf97be8da5e5} - {322dd378-27e9-42cf-b47c-e9cc990819dc} + {3c65d136-2c77-4e43-bb8b-c394cf89716d} - {9969b312-db96-4418-848a-192a4c40572e} + {d3ef5ff8-eb79-480e-b74f-d7ea0e7a40c1} diff --git a/Zip/testsuite/TestSuite_x64_vs120.vcxproj b/Zip/testsuite/TestSuite_x64_vs120.vcxproj index 160555b3b..c6a89dedc 100644 --- a/Zip/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Zip/testsuite/TestSuite_x64_vs120.vcxproj @@ -1,5 +1,5 @@ - - + + debug_shared @@ -32,84 +32,66 @@ TestSuite Win32Proj - + Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Static MultiByte v120 Application - false + Static MultiByte v120 Application - false + Dynamic MultiByte v120 Application - false + Dynamic MultiByte v120 - - + + - + - + - + - + - + - + - + - <_ProjectFileVersion>10.0.40219.1 - bin64\ - obj64\$(Configuration)\ - true - bin64\ - obj64\$(Configuration)\ - false - bin64\static_mt\ - obj64\$(Configuration)\ - true - bin64\static_mt\ - obj64\$(Configuration)\ - false - bin64\static_md\ - obj64\$(Configuration)\ - true - bin64\static_md\ - obj64\$(Configuration)\ - false + <_ProjectFileVersion>11.0.61030.0 TestSuited TestSuited TestSuited @@ -117,6 +99,36 @@ TestSuite TestSuite + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + Disabled @@ -130,20 +142,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitd.lib;%(AdditionalDependencies) + CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Console + Windows MachineX64 @@ -162,18 +173,17 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnit.lib;%(AdditionalDependencies) + CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 @@ -192,21 +202,20 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Console + Windows MachineX64 @@ -225,19 +234,18 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Console + Windows true true MachineX64 @@ -256,20 +264,19 @@ true true true - + Level3 ProgramDatabase Default - %(DisableSpecificWarnings) - CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Console + Windows MachineX64 @@ -288,36 +295,35 @@ true true true - + Level3 - + Default - %(DisableSpecificWarnings) - CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Console + Windows true true MachineX64 - - - - + + + + - - - - - + + + + + - - - \ No newline at end of file + + + diff --git a/Zip/testsuite/TestSuite_x64_vs120.vcxproj.filters b/Zip/testsuite/TestSuite_x64_vs120.vcxproj.filters index 9747c6c10..afca93fdd 100644 --- a/Zip/testsuite/TestSuite_x64_vs120.vcxproj.filters +++ b/Zip/testsuite/TestSuite_x64_vs120.vcxproj.filters @@ -2,28 +2,28 @@ - {3154f242-146e-48cb-99bd-918a15137083} + {c0da7dcd-83ae-4fd3-9566-16d433ca62ec} - {01a9ac05-669a-4932-8ee3-4a38d2ba2df0} + {ecfaf9ba-964a-4c5a-987e-162d8f7eb20e} - {db677391-ebfb-41c4-a34d-ecb5e384a787} + {96de2431-da4a-4b2f-bab0-61a229642915} - {a1604e87-69cb-461e-ab69-32e840549588} + {82d2f16d-314e-4e46-9ae2-42f15c191337} - {0ec83424-3133-4d9e-9429-c7f3fb7ff190} + {760ccdb7-97eb-40fc-a10a-b9537d262f8d} - {12e450b3-30b6-481c-9336-d6ceb02f17d9} + {b62b7a1a-e2ae-4859-8507-165857644cc0} - {322dd378-27e9-42cf-b47c-e9cc990819dc} + {dae6ad99-cfe9-478a-b357-9178f1ab0039} - {9969b312-db96-4418-848a-192a4c40572e} + {b356a313-b10f-4c19-84ec-cae5fcfe2643} @@ -53,7 +53,7 @@ _Suite\Source Files - + _Driver\Source Files From 9a1a75e2b0130175b0f2d422d30dd6a3dd2e6a1a Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Mon, 21 Apr 2014 20:04:48 +0200 Subject: [PATCH 26/52] ProGen templates: support for additional compiler and linker flags --- .../templates/vs100/Win32/executable/debug_shared.template | 2 ++ .../vs100/Win32/executable/debug_static_md.template | 2 ++ .../vs100/Win32/executable/debug_static_mt.template | 2 ++ .../vs100/Win32/executable/release_shared.template | 2 ++ .../vs100/Win32/executable/release_static_md.template | 2 ++ .../vs100/Win32/executable/release_static_mt.template | 2 ++ ProGen/templates/vs100/Win32/library/debug_shared.template | 2 ++ .../templates/vs100/Win32/library/debug_static_md.template | 1 + .../templates/vs100/Win32/library/debug_static_mt.template | 1 + .../templates/vs100/Win32/library/release_shared.template | 2 ++ .../vs100/Win32/library/release_static_md.template | 1 + .../vs100/Win32/library/release_static_mt.template | 1 + ProGen/templates/vs100/Win32/plugin/debug_shared.template | 2 ++ ProGen/templates/vs100/Win32/plugin/release_shared.template | 2 ++ .../templates/vs100/Win32/testsuite/debug_shared.template | 2 ++ .../vs100/Win32/testsuite/debug_static_md.template | 2 ++ .../vs100/Win32/testsuite/debug_static_mt.template | 2 ++ .../templates/vs100/Win32/testsuite/release_shared.template | 2 ++ .../vs100/Win32/testsuite/release_static_md.template | 2 ++ .../vs100/Win32/testsuite/release_static_mt.template | 2 ++ ProGen/templates/vs100/x64/executable/debug_shared.template | 2 ++ .../templates/vs100/x64/executable/debug_static_md.template | 2 ++ .../templates/vs100/x64/executable/debug_static_mt.template | 2 ++ .../templates/vs100/x64/executable/release_shared.template | 2 ++ .../vs100/x64/executable/release_static_md.template | 2 ++ .../vs100/x64/executable/release_static_mt.template | 2 ++ ProGen/templates/vs100/x64/library/debug_shared.template | 2 ++ ProGen/templates/vs100/x64/library/debug_static_md.template | 1 + ProGen/templates/vs100/x64/library/debug_static_mt.template | 1 + ProGen/templates/vs100/x64/library/release_shared.template | 2 ++ .../templates/vs100/x64/library/release_static_md.template | 1 + .../templates/vs100/x64/library/release_static_mt.template | 1 + ProGen/templates/vs100/x64/plugin/debug_shared.template | 2 ++ ProGen/templates/vs100/x64/plugin/release_shared.template | 2 ++ ProGen/templates/vs100/x64/testsuite/debug_shared.template | 2 ++ .../templates/vs100/x64/testsuite/debug_static_md.template | 2 ++ .../templates/vs100/x64/testsuite/debug_static_mt.template | 2 ++ .../templates/vs100/x64/testsuite/release_shared.template | 2 ++ .../vs100/x64/testsuite/release_static_md.template | 2 ++ .../vs100/x64/testsuite/release_static_mt.template | 2 ++ .../templates/vs110/Win32/executable/debug_shared.template | 2 ++ .../vs110/Win32/executable/debug_static_md.template | 2 ++ .../vs110/Win32/executable/debug_static_mt.template | 2 ++ .../vs110/Win32/executable/release_shared.template | 2 ++ .../vs110/Win32/executable/release_static_md.template | 2 ++ .../vs110/Win32/executable/release_static_mt.template | 2 ++ ProGen/templates/vs110/Win32/library/debug_shared.template | 2 ++ .../templates/vs110/Win32/library/debug_static_md.template | 1 + .../templates/vs110/Win32/library/debug_static_mt.template | 1 + .../templates/vs110/Win32/library/release_shared.template | 2 ++ .../vs110/Win32/library/release_static_md.template | 1 + .../vs110/Win32/library/release_static_mt.template | 1 + ProGen/templates/vs110/Win32/plugin/debug_shared.template | 2 ++ ProGen/templates/vs110/Win32/plugin/release_shared.template | 2 ++ .../templates/vs110/Win32/testsuite/debug_shared.template | 2 ++ .../vs110/Win32/testsuite/debug_static_md.template | 2 ++ .../vs110/Win32/testsuite/debug_static_mt.template | 2 ++ .../templates/vs110/Win32/testsuite/release_shared.template | 2 ++ .../vs110/Win32/testsuite/release_static_md.template | 2 ++ .../vs110/Win32/testsuite/release_static_mt.template | 2 ++ .../templates/vs110/WinCE/executable/debug_shared.template | 2 ++ .../vs110/WinCE/executable/debug_static_md.template | 2 ++ .../vs110/WinCE/executable/debug_static_mt.template | 2 ++ .../vs110/WinCE/executable/release_shared.template | 2 ++ .../vs110/WinCE/executable/release_static_md.template | 2 ++ .../vs110/WinCE/executable/release_static_mt.template | 2 ++ ProGen/templates/vs110/WinCE/library/debug_shared.template | 2 ++ .../templates/vs110/WinCE/library/debug_static_md.template | 1 + .../templates/vs110/WinCE/library/debug_static_mt.template | 1 + .../templates/vs110/WinCE/library/release_shared.template | 2 ++ .../vs110/WinCE/library/release_static_md.template | 1 + .../vs110/WinCE/library/release_static_mt.template | 1 + ProGen/templates/vs110/WinCE/plugin/debug_shared.template | 2 ++ ProGen/templates/vs110/WinCE/plugin/release_shared.template | 2 ++ .../templates/vs110/WinCE/testsuite/debug_shared.template | 2 ++ .../vs110/WinCE/testsuite/debug_static_md.template | 2 ++ .../vs110/WinCE/testsuite/debug_static_mt.template | 2 ++ .../templates/vs110/WinCE/testsuite/release_shared.template | 2 ++ .../vs110/WinCE/testsuite/release_static_md.template | 2 ++ .../vs110/WinCE/testsuite/release_static_mt.template | 2 ++ ProGen/templates/vs110/x64/executable/debug_shared.template | 2 ++ .../templates/vs110/x64/executable/debug_static_md.template | 2 ++ .../templates/vs110/x64/executable/debug_static_mt.template | 2 ++ .../templates/vs110/x64/executable/release_shared.template | 2 ++ .../vs110/x64/executable/release_static_md.template | 2 ++ .../vs110/x64/executable/release_static_mt.template | 2 ++ ProGen/templates/vs110/x64/library/debug_shared.template | 2 ++ ProGen/templates/vs110/x64/library/debug_static_md.template | 1 + ProGen/templates/vs110/x64/library/debug_static_mt.template | 1 + ProGen/templates/vs110/x64/library/release_shared.template | 2 ++ .../templates/vs110/x64/library/release_static_md.template | 1 + .../templates/vs110/x64/library/release_static_mt.template | 1 + ProGen/templates/vs110/x64/plugin/debug_shared.template | 2 ++ ProGen/templates/vs110/x64/plugin/release_shared.template | 2 ++ ProGen/templates/vs110/x64/testsuite/debug_shared.template | 2 ++ .../templates/vs110/x64/testsuite/debug_static_md.template | 2 ++ .../templates/vs110/x64/testsuite/debug_static_mt.template | 2 ++ .../templates/vs110/x64/testsuite/release_shared.template | 2 ++ .../vs110/x64/testsuite/release_static_md.template | 2 ++ .../vs110/x64/testsuite/release_static_mt.template | 2 ++ .../templates/vs120/Win32/executable/debug_shared.template | 2 ++ .../vs120/Win32/executable/debug_static_md.template | 2 ++ .../vs120/Win32/executable/debug_static_mt.template | 2 ++ .../vs120/Win32/executable/release_shared.template | 2 ++ .../vs120/Win32/executable/release_static_md.template | 2 ++ .../vs120/Win32/executable/release_static_mt.template | 2 ++ ProGen/templates/vs120/Win32/library/debug_shared.template | 2 ++ .../templates/vs120/Win32/library/debug_static_md.template | 1 + .../templates/vs120/Win32/library/debug_static_mt.template | 1 + .../templates/vs120/Win32/library/release_shared.template | 2 ++ .../vs120/Win32/library/release_static_md.template | 1 + .../vs120/Win32/library/release_static_mt.template | 1 + ProGen/templates/vs120/Win32/plugin/debug_shared.template | 2 ++ ProGen/templates/vs120/Win32/plugin/release_shared.template | 2 ++ .../templates/vs120/Win32/testsuite/debug_shared.template | 2 ++ .../vs120/Win32/testsuite/debug_static_md.template | 2 ++ .../vs120/Win32/testsuite/debug_static_mt.template | 2 ++ .../templates/vs120/Win32/testsuite/release_shared.template | 2 ++ .../vs120/Win32/testsuite/release_static_md.template | 2 ++ .../vs120/Win32/testsuite/release_static_mt.template | 2 ++ ProGen/templates/vs120/x64/executable/debug_shared.template | 2 ++ .../templates/vs120/x64/executable/debug_static_md.template | 2 ++ .../templates/vs120/x64/executable/debug_static_mt.template | 2 ++ .../templates/vs120/x64/executable/release_shared.template | 2 ++ .../vs120/x64/executable/release_static_md.template | 2 ++ .../vs120/x64/executable/release_static_mt.template | 2 ++ ProGen/templates/vs120/x64/library/debug_shared.template | 2 ++ ProGen/templates/vs120/x64/library/debug_static_md.template | 1 + ProGen/templates/vs120/x64/library/debug_static_mt.template | 1 + ProGen/templates/vs120/x64/library/release_shared.template | 2 ++ .../templates/vs120/x64/library/release_static_md.template | 1 + .../templates/vs120/x64/library/release_static_mt.template | 1 + ProGen/templates/vs120/x64/plugin/debug_shared.template | 2 ++ ProGen/templates/vs120/x64/plugin/release_shared.template | 2 ++ ProGen/templates/vs120/x64/testsuite/debug_shared.template | 2 ++ .../templates/vs120/x64/testsuite/debug_static_md.template | 2 ++ .../templates/vs120/x64/testsuite/debug_static_mt.template | 2 ++ .../templates/vs120/x64/testsuite/release_shared.template | 2 ++ .../vs120/x64/testsuite/release_static_md.template | 2 ++ .../vs120/x64/testsuite/release_static_mt.template | 2 ++ .../templates/vs71/Win32/executable/debug_shared.template | 6 ++++-- .../vs71/Win32/executable/debug_static_md.template | 6 ++++-- .../vs71/Win32/executable/debug_static_mt.template | 6 ++++-- .../templates/vs71/Win32/executable/release_shared.template | 6 ++++-- .../vs71/Win32/executable/release_static_md.template | 6 ++++-- .../vs71/Win32/executable/release_static_mt.template | 6 ++++-- ProGen/templates/vs71/Win32/library/debug_shared.template | 6 ++++-- .../templates/vs71/Win32/library/debug_static_md.template | 3 ++- .../templates/vs71/Win32/library/debug_static_mt.template | 3 ++- ProGen/templates/vs71/Win32/library/release_shared.template | 6 ++++-- .../templates/vs71/Win32/library/release_static_md.template | 3 ++- .../templates/vs71/Win32/library/release_static_mt.template | 3 ++- ProGen/templates/vs71/Win32/plugin/debug_shared.template | 6 ++++-- ProGen/templates/vs71/Win32/plugin/release_shared.template | 6 ++++-- ProGen/templates/vs71/Win32/testsuite/debug_shared.template | 6 ++++-- .../templates/vs71/Win32/testsuite/debug_static_md.template | 6 ++++-- .../templates/vs71/Win32/testsuite/debug_static_mt.template | 6 ++++-- .../templates/vs71/Win32/testsuite/release_shared.template | 6 ++++-- .../vs71/Win32/testsuite/release_static_md.template | 6 ++++-- .../vs71/Win32/testsuite/release_static_mt.template | 6 ++++-- .../templates/vs80/Win32/executable/debug_shared.template | 2 ++ .../vs80/Win32/executable/debug_static_md.template | 2 ++ .../vs80/Win32/executable/debug_static_mt.template | 2 ++ .../templates/vs80/Win32/executable/release_shared.template | 2 ++ .../vs80/Win32/executable/release_static_md.template | 2 ++ .../vs80/Win32/executable/release_static_mt.template | 2 ++ ProGen/templates/vs80/Win32/library/debug_shared.template | 2 ++ .../templates/vs80/Win32/library/debug_static_md.template | 1 + .../templates/vs80/Win32/library/debug_static_mt.template | 1 + ProGen/templates/vs80/Win32/library/release_shared.template | 2 ++ .../templates/vs80/Win32/library/release_static_md.template | 1 + .../templates/vs80/Win32/library/release_static_mt.template | 1 + ProGen/templates/vs80/Win32/plugin/debug_shared.template | 2 ++ ProGen/templates/vs80/Win32/plugin/release_shared.template | 2 ++ ProGen/templates/vs80/Win32/testsuite/debug_shared.template | 2 ++ .../templates/vs80/Win32/testsuite/debug_static_md.template | 2 ++ .../templates/vs80/Win32/testsuite/debug_static_mt.template | 2 ++ .../templates/vs80/Win32/testsuite/release_shared.template | 2 ++ .../vs80/Win32/testsuite/release_static_md.template | 2 ++ .../vs80/Win32/testsuite/release_static_mt.template | 2 ++ .../templates/vs90/Win32/executable/debug_shared.template | 2 ++ .../vs90/Win32/executable/debug_static_md.template | 2 ++ .../vs90/Win32/executable/debug_static_mt.template | 2 ++ .../templates/vs90/Win32/executable/release_shared.template | 2 ++ .../vs90/Win32/executable/release_static_md.template | 2 ++ .../vs90/Win32/executable/release_static_mt.template | 2 ++ ProGen/templates/vs90/Win32/library/debug_shared.template | 2 ++ .../templates/vs90/Win32/library/debug_static_md.template | 1 + .../templates/vs90/Win32/library/debug_static_mt.template | 1 + ProGen/templates/vs90/Win32/library/release_shared.template | 2 ++ .../templates/vs90/Win32/library/release_static_md.template | 1 + .../templates/vs90/Win32/library/release_static_mt.template | 1 + ProGen/templates/vs90/Win32/plugin/debug_shared.template | 2 ++ ProGen/templates/vs90/Win32/plugin/release_shared.template | 2 ++ ProGen/templates/vs90/Win32/testsuite/debug_shared.template | 2 ++ .../templates/vs90/Win32/testsuite/debug_static_md.template | 2 ++ .../templates/vs90/Win32/testsuite/debug_static_mt.template | 2 ++ .../templates/vs90/Win32/testsuite/release_shared.template | 2 ++ .../vs90/Win32/testsuite/release_static_md.template | 2 ++ .../vs90/Win32/testsuite/release_static_mt.template | 2 ++ .../templates/vs90/WinCE/executable/debug_shared.template | 2 ++ .../vs90/WinCE/executable/debug_static_md.template | 2 ++ .../vs90/WinCE/executable/debug_static_mt.template | 2 ++ .../templates/vs90/WinCE/executable/release_shared.template | 2 ++ .../vs90/WinCE/executable/release_static_md.template | 2 ++ .../vs90/WinCE/executable/release_static_mt.template | 2 ++ ProGen/templates/vs90/WinCE/library/debug_shared.template | 2 ++ .../templates/vs90/WinCE/library/debug_static_md.template | 1 + .../templates/vs90/WinCE/library/debug_static_mt.template | 1 + ProGen/templates/vs90/WinCE/library/release_shared.template | 2 ++ .../templates/vs90/WinCE/library/release_static_md.template | 1 + .../templates/vs90/WinCE/library/release_static_mt.template | 1 + ProGen/templates/vs90/WinCE/plugin/debug_shared.template | 2 ++ ProGen/templates/vs90/WinCE/plugin/release_shared.template | 2 ++ ProGen/templates/vs90/WinCE/testsuite/debug_shared.template | 2 ++ .../templates/vs90/WinCE/testsuite/debug_static_md.template | 2 ++ .../templates/vs90/WinCE/testsuite/debug_static_mt.template | 2 ++ .../templates/vs90/WinCE/testsuite/release_shared.template | 2 ++ .../vs90/WinCE/testsuite/release_static_md.template | 2 ++ .../vs90/WinCE/testsuite/release_static_mt.template | 2 ++ ProGen/templates/vs90/x64/executable/debug_shared.template | 2 ++ .../templates/vs90/x64/executable/debug_static_md.template | 2 ++ .../templates/vs90/x64/executable/debug_static_mt.template | 2 ++ .../templates/vs90/x64/executable/release_shared.template | 2 ++ .../vs90/x64/executable/release_static_md.template | 2 ++ .../vs90/x64/executable/release_static_mt.template | 2 ++ ProGen/templates/vs90/x64/library/debug_shared.template | 2 ++ ProGen/templates/vs90/x64/library/debug_static_md.template | 1 + ProGen/templates/vs90/x64/library/debug_static_mt.template | 1 + ProGen/templates/vs90/x64/library/release_shared.template | 2 ++ .../templates/vs90/x64/library/release_static_md.template | 1 + .../templates/vs90/x64/library/release_static_mt.template | 1 + ProGen/templates/vs90/x64/plugin/debug_shared.template | 2 ++ ProGen/templates/vs90/x64/plugin/release_shared.template | 2 ++ ProGen/templates/vs90/x64/testsuite/debug_shared.template | 2 ++ .../templates/vs90/x64/testsuite/debug_static_md.template | 2 ++ .../templates/vs90/x64/testsuite/debug_static_mt.template | 2 ++ ProGen/templates/vs90/x64/testsuite/release_shared.template | 2 ++ .../templates/vs90/x64/testsuite/release_static_md.template | 2 ++ .../templates/vs90/x64/testsuite/release_static_mt.template | 2 ++ 240 files changed, 468 insertions(+), 36 deletions(-) diff --git a/ProGen/templates/vs100/Win32/executable/debug_shared.template b/ProGen/templates/vs100/Win32/executable/debug_shared.template index d50a22883..d88709118 100644 --- a/ProGen/templates/vs100/Win32/executable/debug_shared.template +++ b/ProGen/templates/vs100/Win32/executable/debug_shared.template @@ -39,6 +39,7 @@ DebugInformationFormat="4" CompileAs="0" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}" /> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> diff --git a/ProGen/templates/vs71/Win32/library/release_static_mt.template b/ProGen/templates/vs71/Win32/library/release_static_mt.template index cba572875..69d2ffb6c 100644 --- a/ProGen/templates/vs71/Win32/library/release_static_mt.template +++ b/ProGen/templates/vs71/Win32/library/release_static_mt.template @@ -27,7 +27,8 @@ Detect64BitPortabilityProblems="FALSE" DebugInformationFormat="0" CompileAs="0" - DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> diff --git a/ProGen/templates/vs71/Win32/plugin/debug_shared.template b/ProGen/templates/vs71/Win32/plugin/debug_shared.template index 73c151211..facc8d0ba 100644 --- a/ProGen/templates/vs71/Win32/plugin/debug_shared.template +++ b/ProGen/templates/vs71/Win32/plugin/debug_shared.template @@ -24,7 +24,8 @@ Detect64BitPortabilityProblems="FALSE" DebugInformationFormat="4" CompileAs="0" - DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> + DisableSpecificWarnings="4800;${configuration.compiler.disableWarnings}" + AdditionalOptions="${configuration.compiler.additionalOptions}"/> + TargetMachine="1" + AdditionalOptions="${configuration.linker.additionalOptions}"/> Date: Mon, 21 Apr 2014 20:25:04 +0200 Subject: [PATCH 27/52] ProGen templates: support for additional compiler and linker flags --- ProGen/templates/vs90/WinCE/executable/debug_shared.template | 3 +-- .../templates/vs90/WinCE/executable/debug_static_md.template | 3 +-- .../templates/vs90/WinCE/executable/debug_static_mt.template | 3 +-- ProGen/templates/vs90/WinCE/executable/release_shared.template | 3 +-- .../templates/vs90/WinCE/executable/release_static_md.template | 3 +-- .../templates/vs90/WinCE/executable/release_static_mt.template | 3 +-- ProGen/templates/vs90/WinCE/library/debug_shared.template | 3 +-- ProGen/templates/vs90/WinCE/library/release_shared.template | 3 +-- ProGen/templates/vs90/WinCE/plugin/debug_shared.template | 3 +-- ProGen/templates/vs90/WinCE/plugin/release_shared.template | 3 +-- ProGen/templates/vs90/WinCE/testsuite/debug_shared.template | 3 +-- ProGen/templates/vs90/WinCE/testsuite/debug_static_md.template | 3 +-- ProGen/templates/vs90/WinCE/testsuite/debug_static_mt.template | 3 +-- ProGen/templates/vs90/WinCE/testsuite/release_shared.template | 3 +-- .../templates/vs90/WinCE/testsuite/release_static_md.template | 3 +-- .../templates/vs90/WinCE/testsuite/release_static_mt.template | 3 +-- 16 files changed, 16 insertions(+), 32 deletions(-) diff --git a/ProGen/templates/vs90/WinCE/executable/debug_shared.template b/ProGen/templates/vs90/WinCE/executable/debug_shared.template index 720663ab2..5bf116442 100644 --- a/ProGen/templates/vs90/WinCE/executable/debug_shared.template +++ b/ProGen/templates/vs90/WinCE/executable/debug_shared.template @@ -52,7 +52,7 @@ /> Date: Mon, 21 Apr 2014 20:28:30 +0200 Subject: [PATCH 28/52] ProGen templates: support for additional compiler and linker flags --- ProGen/templates/vs110/WinCE/executable/debug_shared.template | 1 - ProGen/templates/vs110/WinCE/executable/debug_static_md.template | 1 - ProGen/templates/vs110/WinCE/executable/debug_static_mt.template | 1 - ProGen/templates/vs110/WinCE/executable/release_shared.template | 1 - .../templates/vs110/WinCE/executable/release_static_md.template | 1 - .../templates/vs110/WinCE/executable/release_static_mt.template | 1 - ProGen/templates/vs110/WinCE/library/debug_shared.template | 1 - ProGen/templates/vs110/WinCE/library/release_shared.template | 1 - ProGen/templates/vs110/WinCE/plugin/debug_shared.template | 1 - ProGen/templates/vs110/WinCE/plugin/release_shared.template | 1 - ProGen/templates/vs110/WinCE/testsuite/debug_shared.template | 1 - ProGen/templates/vs110/WinCE/testsuite/debug_static_md.template | 1 - ProGen/templates/vs110/WinCE/testsuite/debug_static_mt.template | 1 - ProGen/templates/vs110/WinCE/testsuite/release_shared.template | 1 - .../templates/vs110/WinCE/testsuite/release_static_md.template | 1 - .../templates/vs110/WinCE/testsuite/release_static_mt.template | 1 - 16 files changed, 16 deletions(-) diff --git a/ProGen/templates/vs110/WinCE/executable/debug_shared.template b/ProGen/templates/vs110/WinCE/executable/debug_shared.template index ca7a3a2e7..af4cf1328 100644 --- a/ProGen/templates/vs110/WinCE/executable/debug_shared.template +++ b/ProGen/templates/vs110/WinCE/executable/debug_shared.template @@ -45,7 +45,6 @@ /> Date: Mon, 21 Apr 2014 20:39:40 +0200 Subject: [PATCH 29/52] added /bigobj option for Data 64-bit builds; ProGen now suports vc.project.compiler/linker.additionalOptions settings in .progen files --- Data/Data.progen | 1 + Data/Data_vs100.vcxproj | 8 ++++++++ Data/Data_x64_vs100.vcxproj | 8 ++++++++ Data/Data_x64_vs110.vcxproj | 6 ++++++ Data/Data_x64_vs120.vcxproj | 6 ++++++ Data/Data_x64_vs90.vcproj | 24 ++++++++++++++++-------- ProGen/src/ProGen.cpp | 2 ++ 7 files changed, 47 insertions(+), 8 deletions(-) diff --git a/Data/Data.progen b/Data/Data.progen index b461b469f..da7505747 100644 --- a/Data/Data.progen +++ b/Data/Data.progen @@ -12,5 +12,6 @@ vc.project.compiler.defines = vc.project.compiler.defines.shared = ${vc.project.name}_EXPORTS vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.additionalOptions.x64 = /bigobj vc.solution.create = true vc.solution.include = testsuite\\TestSuite diff --git a/Data/Data_vs100.vcxproj b/Data/Data_vs100.vcxproj index 3c398a0dc..9a294b08c 100644 --- a/Data/Data_vs100.vcxproj +++ b/Data/Data_vs100.vcxproj @@ -119,6 +119,7 @@ EditAndContinue Default %(DisableSpecificWarnings) + %(AdditionalOptions) %(AdditionalDependencies) @@ -130,6 +131,7 @@ Console ..\lib\PocoDatad.lib MachineX86 + %(AdditionalOptions) @@ -152,6 +154,7 @@ Default %(DisableSpecificWarnings) + %(AdditionalOptions) %(AdditionalDependencies) @@ -164,6 +167,7 @@ true ..\lib\PocoData.lib MachineX86 + %(AdditionalOptions) @@ -185,6 +189,7 @@ EditAndContinue Default %(DisableSpecificWarnings) + %(AdditionalOptions) ..\lib\PocoDatamtd.lib @@ -210,6 +215,7 @@ Default %(DisableSpecificWarnings) + %(AdditionalOptions) ..\lib\PocoDatamt.lib @@ -234,6 +240,7 @@ EditAndContinue Default %(DisableSpecificWarnings) + %(AdditionalOptions) ..\lib\PocoDatamdd.lib @@ -260,6 +267,7 @@ Default %(DisableSpecificWarnings) + %(AdditionalOptions) %(AdditionalDependencies) diff --git a/Data/Data_x64_vs100.vcxproj b/Data/Data_x64_vs100.vcxproj index b9d6985d3..a200e2672 100644 --- a/Data/Data_x64_vs100.vcxproj +++ b/Data/Data_x64_vs100.vcxproj @@ -119,6 +119,7 @@ ProgramDatabase Default %(DisableSpecificWarnings) + /bigobj %(AdditionalOptions) %(AdditionalDependencies) @@ -130,6 +131,7 @@ Console ..\lib64\PocoDatad.lib MachineX64 + %(AdditionalOptions) @@ -152,6 +154,7 @@ Default %(DisableSpecificWarnings) + /bigobj %(AdditionalOptions) %(AdditionalDependencies) @@ -164,6 +167,7 @@ true ..\lib64\PocoData.lib MachineX64 + %(AdditionalOptions) @@ -185,6 +189,7 @@ ProgramDatabase Default %(DisableSpecificWarnings) + /bigobj %(AdditionalOptions) ..\lib64\PocoDatamtd.lib @@ -210,6 +215,7 @@ Default %(DisableSpecificWarnings) + /bigobj %(AdditionalOptions) ..\lib64\PocoDatamt.lib @@ -234,6 +240,7 @@ ProgramDatabase Default %(DisableSpecificWarnings) + /bigobj %(AdditionalOptions) ..\lib64\PocoDatamdd.lib @@ -259,6 +266,7 @@ Default %(DisableSpecificWarnings) + /bigobj %(AdditionalOptions) ..\lib64\PocoDatamd.lib diff --git a/Data/Data_x64_vs110.vcxproj b/Data/Data_x64_vs110.vcxproj index 8468370bc..53af79d82 100644 --- a/Data/Data_x64_vs110.vcxproj +++ b/Data/Data_x64_vs110.vcxproj @@ -136,6 +136,7 @@ Level3 ProgramDatabase Default + /bigobj %(AdditionalOptions) ..\bin64\PocoData64d.dll @@ -167,6 +168,7 @@ Level3 Default + /bigobj %(AdditionalOptions) ..\bin64\PocoData64.dll @@ -198,6 +200,7 @@ Level3 ProgramDatabase Default + /bigobj %(AdditionalOptions) ..\lib64\PocoDatamtd.lib @@ -222,6 +225,7 @@ Level3 Default + /bigobj %(AdditionalOptions) ..\lib64\PocoDatamt.lib @@ -245,6 +249,7 @@ Level3 ProgramDatabase Default + /bigobj %(AdditionalOptions) ..\lib64\PocoDatamdd.lib @@ -269,6 +274,7 @@ Level3 Default + /bigobj %(AdditionalOptions) ..\lib64\PocoDatamd.lib diff --git a/Data/Data_x64_vs120.vcxproj b/Data/Data_x64_vs120.vcxproj index 7059506db..bfc79e891 100644 --- a/Data/Data_x64_vs120.vcxproj +++ b/Data/Data_x64_vs120.vcxproj @@ -136,6 +136,7 @@ Level3 ProgramDatabase Default + /bigobj %(AdditionalOptions) ..\bin64\PocoData64d.dll @@ -167,6 +168,7 @@ Level3 Default + /bigobj %(AdditionalOptions) ..\bin64\PocoData64.dll @@ -198,6 +200,7 @@ Level3 ProgramDatabase Default + /bigobj %(AdditionalOptions) ..\lib64\PocoDatamtd.lib @@ -222,6 +225,7 @@ Level3 Default + /bigobj %(AdditionalOptions) ..\lib64\PocoDatamt.lib @@ -245,6 +249,7 @@ Level3 ProgramDatabase Default + /bigobj %(AdditionalOptions) ..\lib64\PocoDatamdd.lib @@ -269,6 +274,7 @@ Level3 Default + /bigobj %(AdditionalOptions) ..\lib64\PocoDatamd.lib diff --git a/Data/Data_x64_vs90.vcproj b/Data/Data_x64_vs90.vcproj index d7a950393..87ca5e1a3 100644 --- a/Data/Data_x64_vs90.vcproj +++ b/Data/Data_x64_vs90.vcproj @@ -46,7 +46,8 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" - DisableSpecificWarnings=""/> + DisableSpecificWarnings="" + AdditionalOptions="/bigobj"/> + TargetMachine="17" + AdditionalOptions=""/> + DisableSpecificWarnings="" + AdditionalOptions="/bigobj"/> + TargetMachine="17" + AdditionalOptions=""/> + DisableSpecificWarnings="" + AdditionalOptions="/bigobj"/> + DisableSpecificWarnings="" + AdditionalOptions="/bigobj"/> + DisableSpecificWarnings="" + AdditionalOptions="/bigobj"/> + DisableSpecificWarnings="" + AdditionalOptions="/bigobj"/> config().getString("progen.libsuffix." + config, ""); Poco::StringTokenizer rawDependencies(pProps->getString("configuration.linker.dependencies"), " ", Poco::StringTokenizer::TOK_TRIM | Poco::StringTokenizer::TOK_IGNORE_EMPTY); From f80c16b53ad584accf790028fe20302abf664a00 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Mon, 21 Apr 2014 20:55:18 +0200 Subject: [PATCH 30/52] don't use WinTestRunner/MFC in VS2013 test suites --- .../templates/vs120/Win32/testsuite/debug_shared.template | 5 ++--- .../vs120/Win32/testsuite/debug_static_md.template | 5 ++--- .../vs120/Win32/testsuite/debug_static_mt.template | 6 ++---- ProGen/templates/vs120/Win32/testsuite/project.properties | 1 + .../templates/vs120/Win32/testsuite/release_shared.template | 5 ++--- .../vs120/Win32/testsuite/release_static_md.template | 5 ++--- .../vs120/Win32/testsuite/release_static_mt.template | 6 ++---- ProGen/templates/vs120/x64/testsuite/debug_shared.template | 5 ++--- .../templates/vs120/x64/testsuite/debug_static_md.template | 5 ++--- .../templates/vs120/x64/testsuite/debug_static_mt.template | 6 ++---- ProGen/templates/vs120/x64/testsuite/project.properties | 1 + .../templates/vs120/x64/testsuite/release_shared.template | 5 ++--- .../vs120/x64/testsuite/release_static_md.template | 5 ++--- .../vs120/x64/testsuite/release_static_mt.template | 6 ++---- 14 files changed, 26 insertions(+), 40 deletions(-) diff --git a/ProGen/templates/vs120/Win32/testsuite/debug_shared.template b/ProGen/templates/vs120/Win32/testsuite/debug_shared.template index 2f4db8ebf..69f5a3b22 100644 --- a/ProGen/templates/vs120/Win32/testsuite/debug_shared.template +++ b/ProGen/templates/vs120/Win32/testsuite/debug_shared.template @@ -3,7 +3,6 @@ OutputDirectory="bin\" IntermediateDirectory="obj\$(ConfigurationName)" ConfigurationType="1" - UseOfMFC="2" CharacterSet="2" > diff --git a/ProGen/templates/vs120/Win32/testsuite/debug_static_md.template b/ProGen/templates/vs120/Win32/testsuite/debug_static_md.template index 68885ec3b..e6359f70f 100644 --- a/ProGen/templates/vs120/Win32/testsuite/debug_static_md.template +++ b/ProGen/templates/vs120/Win32/testsuite/debug_static_md.template @@ -3,7 +3,6 @@ OutputDirectory="bin\static_md\" IntermediateDirectory="obj\$(ConfigurationName)" ConfigurationType="1" - UseOfMFC="2" CharacterSet="2" > diff --git a/ProGen/templates/vs120/Win32/testsuite/debug_static_mt.template b/ProGen/templates/vs120/Win32/testsuite/debug_static_mt.template index 46763ae09..002c5a166 100644 --- a/ProGen/templates/vs120/Win32/testsuite/debug_static_mt.template +++ b/ProGen/templates/vs120/Win32/testsuite/debug_static_mt.template @@ -3,7 +3,6 @@ OutputDirectory="bin\static_mt\" IntermediateDirectory="obj\$(ConfigurationName)" ConfigurationType="1" - UseOfMFC="1" CharacterSet="2" > diff --git a/ProGen/templates/vs120/Win32/testsuite/project.properties b/ProGen/templates/vs120/Win32/testsuite/project.properties index bf39bf8c5..a708b0f00 100644 --- a/ProGen/templates/vs120/Win32/testsuite/project.properties +++ b/ProGen/templates/vs120/Win32/testsuite/project.properties @@ -7,3 +7,4 @@ project.targetSuffix.debug_static_mt = d project.targetSuffix.release_static_mt = project.postprocess = upgrade2008to2013 project.finalSuffix = _vs120.vcxproj +project.replaceSourceFiles = .\\src\\WinDriver.cpp > .\\src\\Driver.cpp diff --git a/ProGen/templates/vs120/Win32/testsuite/release_shared.template b/ProGen/templates/vs120/Win32/testsuite/release_shared.template index 451becda4..f85718517 100644 --- a/ProGen/templates/vs120/Win32/testsuite/release_shared.template +++ b/ProGen/templates/vs120/Win32/testsuite/release_shared.template @@ -3,7 +3,6 @@ OutputDirectory="bin\" IntermediateDirectory="obj\$(ConfigurationName)" ConfigurationType="1" - UseOfMFC="2" CharacterSet="2" > diff --git a/ProGen/templates/vs120/x64/testsuite/debug_static_md.template b/ProGen/templates/vs120/x64/testsuite/debug_static_md.template index 99e2564c2..a5bf9915c 100644 --- a/ProGen/templates/vs120/x64/testsuite/debug_static_md.template +++ b/ProGen/templates/vs120/x64/testsuite/debug_static_md.template @@ -3,7 +3,6 @@ OutputDirectory="bin64\static_md\" IntermediateDirectory="obj64\$(ConfigurationName)" ConfigurationType="1" - UseOfMFC="2" CharacterSet="2" > diff --git a/ProGen/templates/vs120/x64/testsuite/debug_static_mt.template b/ProGen/templates/vs120/x64/testsuite/debug_static_mt.template index 565c4d5ac..8a1e41dfe 100644 --- a/ProGen/templates/vs120/x64/testsuite/debug_static_mt.template +++ b/ProGen/templates/vs120/x64/testsuite/debug_static_mt.template @@ -3,7 +3,6 @@ OutputDirectory="bin64\static_mt\" IntermediateDirectory="obj64\$(ConfigurationName)" ConfigurationType="1" - UseOfMFC="1" CharacterSet="2" > diff --git a/ProGen/templates/vs120/x64/testsuite/project.properties b/ProGen/templates/vs120/x64/testsuite/project.properties index 60b8cb5d9..fd0b790e6 100644 --- a/ProGen/templates/vs120/x64/testsuite/project.properties +++ b/ProGen/templates/vs120/x64/testsuite/project.properties @@ -8,3 +8,4 @@ project.targetSuffix.release_static_mt = project.postprocess = upgrade2008to2013 project.finalSuffix = _x64_vs120.vcxproj project.targetArchitecture = AMD64 +project.replaceSourceFiles = .\\src\\WinDriver.cpp > .\\src\\Driver.cpp diff --git a/ProGen/templates/vs120/x64/testsuite/release_shared.template b/ProGen/templates/vs120/x64/testsuite/release_shared.template index 117df4268..1e0868b9f 100644 --- a/ProGen/templates/vs120/x64/testsuite/release_shared.template +++ b/ProGen/templates/vs120/x64/testsuite/release_shared.template @@ -3,7 +3,6 @@ OutputDirectory="bin64\" IntermediateDirectory="obj64\$(ConfigurationName)" ConfigurationType="1" - UseOfMFC="2" CharacterSet="2" > Date: Mon, 21 Apr 2014 21:39:07 +0200 Subject: [PATCH 31/52] added runtests2.cmd script --- build/script/runtests2.cmd | 73 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 build/script/runtests2.cmd diff --git a/build/script/runtests2.cmd b/build/script/runtests2.cmd new file mode 100644 index 000000000..575207fba --- /dev/null +++ b/build/script/runtests2.cmd @@ -0,0 +1,73 @@ +@echo off +rem +rem $Id$ +rem +rem A script for running the POCO testsuites. +rem +rem usage: runtests2 [64] +rem +rem If the environment variable EXCLUDE_TESTS is set, containing +rem a space-separated list of project names (as found in the +rem components file), these tests will be skipped. +rem + +setlocal EnableDelayedExpansion + +set TESTRUNNER=TestSuite.exe +set TESTRUNNERARGS=-all +set BINDIR=bin + +if "%1"=="64" ( + set BINDIR=bin64 +) + +set runs=0 +set failures=0 +set failedTests= +set status=0 +set excluded=0 + +for /f %%C in ('findstr /R "." components') do ( + set excluded=0 + for %%X in (%EXCLUDE_TESTS%) do ( + if "%%X"=="%%C" ( + set excluded=1 + ) + ) + if !excluded!==0 ( + if exist %%C ( + if exist %%C\testsuite ( + if exist %%C\testsuite\%BINDIR%\%TESTRUNNER% ( + echo. + echo. + echo **************************************** + echo *** %%C + echo **************************************** + echo. + + set /a runs=!runs! + 1 + set dir=%CD% + cd %%C\testsuite + %BINDIR%\%TESTRUNNER% %TESTRUNNERARGS% + if !ERRORLEVEL! neq 0 ( + set /a failures=!failures! + 1 + set failedTests=!failedTests! %%C + set status=1 + ) + cd !dir! + ) + ) + ) + ) +) + +echo. +echo. +echo !runs! runs, !failures! failed. +echo. +for %%F in (!failedTests!) do ( + echo Failed: %%F +) +echo. + +exit /b !status! From 85873d02c913099626d92dca2ae26d38e14209d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Mon, 21 Apr 2014 22:10:34 +0200 Subject: [PATCH 32/52] re-generated VS2013 testsuite projects without MFC --- CppParser/testsuite/TestSuite_vs120.vcxproj | 34 +++++++------------ .../testsuite/TestSuite_x64_vs120.vcxproj | 34 +++++++------------ Crypto/testsuite/TestSuite_vs120.vcxproj | 34 +++++++------------ Crypto/testsuite/TestSuite_x64_vs120.vcxproj | 34 +++++++------------ Data/MySQL/testsuite/TestSuite_vs120.vcxproj | 34 +++++++------------ .../testsuite/TestSuite_x64_vs120.vcxproj | 34 +++++++------------ Data/ODBC/testsuite/TestSuite_vs120.vcxproj | 34 +++++++------------ .../testsuite/TestSuite_x64_vs120.vcxproj | 34 +++++++------------ Data/SQLite/testsuite/TestSuite_vs120.vcxproj | 34 +++++++------------ .../testsuite/TestSuite_x64_vs120.vcxproj | 34 +++++++------------ Data/testsuite/TestSuite_vs120.vcxproj | 34 +++++++------------ Data/testsuite/TestSuite_x64_vs120.vcxproj | 34 +++++++------------ Foundation/testsuite/TestSuite_vs120.vcxproj | 12 +++---- .../testsuite/TestSuite_x64_vs120.vcxproj | 12 +++---- JSON/testsuite/TestSuite_vs120.vcxproj | 34 +++++++------------ JSON/testsuite/TestSuite_x64_vs120.vcxproj | 34 +++++++------------ MongoDB/testsuite/TestSuite_vs120.vcxproj | 34 +++++++------------ MongoDB/testsuite/TestSuite_x64_vs120.vcxproj | 34 +++++++------------ Net/testsuite/TestSuite_vs120.vcxproj | 34 +++++++------------ Net/testsuite/TestSuite_x64_vs120.vcxproj | 34 +++++++------------ .../testsuite/TestSuite_vs120.vcxproj | 34 +++++++------------ .../testsuite/TestSuite_x64_vs120.vcxproj | 34 +++++++------------ PDF/testsuite/TestSuite_vs120.vcxproj | 34 +++++++------------ PDF/testsuite/TestSuite_x64_vs120.vcxproj | 34 +++++++------------ Util/testsuite/TestSuite_vs120.vcxproj | 34 +++++++------------ Util/testsuite/TestSuite_x64_vs120.vcxproj | 34 +++++++------------ XML/testsuite/TestSuite_vs120.vcxproj | 34 +++++++------------ XML/testsuite/TestSuite_x64_vs120.vcxproj | 34 +++++++------------ Zip/testsuite/TestSuite_vs120.vcxproj | 34 +++++++------------ Zip/testsuite/TestSuite_x64_vs120.vcxproj | 34 +++++++------------ 30 files changed, 376 insertions(+), 600 deletions(-) diff --git a/CppParser/testsuite/TestSuite_vs120.vcxproj b/CppParser/testsuite/TestSuite_vs120.vcxproj index 31665757f..536f07aee 100644 --- a/CppParser/testsuite/TestSuite_vs120.vcxproj +++ b/CppParser/testsuite/TestSuite_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Windows + Console MachineX86 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Windows + Console MachineX86 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX86 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Windows + Console MachineX86 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -320,7 +312,7 @@ - + diff --git a/CppParser/testsuite/TestSuite_x64_vs120.vcxproj b/CppParser/testsuite/TestSuite_x64_vs120.vcxproj index 432a7f99c..50ce81bce 100644 --- a/CppParser/testsuite/TestSuite_x64_vs120.vcxproj +++ b/CppParser/testsuite/TestSuite_x64_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Windows + Console MachineX64 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Windows + Console MachineX64 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX64 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Windows + Console MachineX64 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -320,7 +312,7 @@ - + diff --git a/Crypto/testsuite/TestSuite_vs120.vcxproj b/Crypto/testsuite/TestSuite_vs120.vcxproj index ac27acf0d..b9ec7b035 100644 --- a/Crypto/testsuite/TestSuite_vs120.vcxproj +++ b/Crypto/testsuite/TestSuite_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) + CppUnitd.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Windows + Console MachineX86 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) + CppUnit.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Windows + Console MachineX86 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX86 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Windows + Console MachineX86 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -322,7 +314,7 @@ - + diff --git a/Crypto/testsuite/TestSuite_x64_vs120.vcxproj b/Crypto/testsuite/TestSuite_x64_vs120.vcxproj index 4c93c4341..f0152a2d0 100644 --- a/Crypto/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Crypto/testsuite/TestSuite_x64_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) + CppUnitd.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Windows + Console MachineX64 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) + CppUnit.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Windows + Console MachineX64 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX64 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Windows + Console MachineX64 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -322,7 +314,7 @@ - + diff --git a/Data/MySQL/testsuite/TestSuite_vs120.vcxproj b/Data/MySQL/testsuite/TestSuite_vs120.vcxproj index 48157f2b6..3ba7e6d66 100644 --- a/Data/MySQL/testsuite/TestSuite_vs120.vcxproj +++ b/Data/MySQL/testsuite/TestSuite_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;libmysql.lib;%(AdditionalDependencies) + CppUnitd.lib;libmysql.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Windows + Console MachineX86 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;libmysql.lib;%(AdditionalDependencies) + CppUnit.lib;libmysql.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;libmysql.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Windows + Console MachineX86 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;libmysql.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX86 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;libmysql.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Windows + Console MachineX86 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;libmysql.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -320,7 +312,7 @@ - + diff --git a/Data/MySQL/testsuite/TestSuite_x64_vs120.vcxproj b/Data/MySQL/testsuite/TestSuite_x64_vs120.vcxproj index 0a28181ea..7374ba213 100644 --- a/Data/MySQL/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Data/MySQL/testsuite/TestSuite_x64_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;libmysql.lib;%(AdditionalDependencies) + CppUnitd.lib;libmysql.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Windows + Console MachineX64 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;libmysql.lib;%(AdditionalDependencies) + CppUnit.lib;libmysql.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;libmysql.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Windows + Console MachineX64 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;libmysql.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX64 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;libmysql.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Windows + Console MachineX64 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libmysql.lib;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;libmysql.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -320,7 +312,7 @@ - + diff --git a/Data/ODBC/testsuite/TestSuite_vs120.vcxproj b/Data/ODBC/testsuite/TestSuite_vs120.vcxproj index de0d1624e..4e2e10940 100644 --- a/Data/ODBC/testsuite/TestSuite_vs120.vcxproj +++ b/Data/ODBC/testsuite/TestSuite_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitd.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Windows + Console MachineX86 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnit.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Windows + Console MachineX86 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX86 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Windows + Console MachineX86 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -334,7 +326,7 @@ - + diff --git a/Data/ODBC/testsuite/TestSuite_x64_vs120.vcxproj b/Data/ODBC/testsuite/TestSuite_x64_vs120.vcxproj index 93a315e96..a42987285 100644 --- a/Data/ODBC/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Data/ODBC/testsuite/TestSuite_x64_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitd.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Windows + Console MachineX64 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnit.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Windows + Console MachineX64 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX64 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Windows + Console MachineX64 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -334,7 +326,7 @@ - + diff --git a/Data/SQLite/testsuite/TestSuite_vs120.vcxproj b/Data/SQLite/testsuite/TestSuite_vs120.vcxproj index 0c68caf57..1600502be 100644 --- a/Data/SQLite/testsuite/TestSuite_vs120.vcxproj +++ b/Data/SQLite/testsuite/TestSuite_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Windows + Console MachineX86 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Windows + Console MachineX86 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX86 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Windows + Console MachineX86 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -318,7 +310,7 @@ - + diff --git a/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj b/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj index 49144f37d..77cd0c38f 100644 --- a/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Data/SQLite/testsuite/TestSuite_x64_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Windows + Console MachineX64 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Windows + Console MachineX64 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX64 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Windows + Console MachineX64 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -318,7 +310,7 @@ - + diff --git a/Data/testsuite/TestSuite_vs120.vcxproj b/Data/testsuite/TestSuite_vs120.vcxproj index dc77b8303..04e0e8aae 100644 --- a/Data/testsuite/TestSuite_vs120.vcxproj +++ b/Data/testsuite/TestSuite_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Windows + Console MachineX86 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Windows + Console MachineX86 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX86 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Windows + Console MachineX86 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -325,7 +317,7 @@ - + diff --git a/Data/testsuite/TestSuite_x64_vs120.vcxproj b/Data/testsuite/TestSuite_x64_vs120.vcxproj index 734477857..db498669e 100644 --- a/Data/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Data/testsuite/TestSuite_x64_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Windows + Console MachineX64 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Windows + Console MachineX64 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX64 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Windows + Console MachineX64 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -325,7 +317,7 @@ - + diff --git a/Foundation/testsuite/TestSuite_vs120.vcxproj b/Foundation/testsuite/TestSuite_vs120.vcxproj index 5172ac550..5aaf9f870 100644 --- a/Foundation/testsuite/TestSuite_vs120.vcxproj +++ b/Foundation/testsuite/TestSuite_vs120.vcxproj @@ -212,7 +212,7 @@ /FS - CppUnitmd.lib;PocoFoundationmd.lib;WinTestRunner.res;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;PocoFoundationmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false @@ -245,7 +245,7 @@ /FS - CppUnitmdd.lib;PocoFoundationmdd.lib;WinTestRunner.res;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;PocoFoundationmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true @@ -275,10 +275,10 @@ /FS - CppUnitmtd.lib;PocoFoundationmtd.lib;WinTestRunner.res;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;PocoFoundationmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) + %(IgnoreSpecificDefaultLibraries) true bin\static_mt\TestSuited.pdb Console @@ -312,10 +312,10 @@ /FS - CppUnitmt.lib;PocoFoundationmt.lib;WinTestRunner.res;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;PocoFoundationmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) + %(IgnoreSpecificDefaultLibraries) false diff --git a/Foundation/testsuite/TestSuite_x64_vs120.vcxproj b/Foundation/testsuite/TestSuite_x64_vs120.vcxproj index 2b66791e3..14a296c9c 100644 --- a/Foundation/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Foundation/testsuite/TestSuite_x64_vs120.vcxproj @@ -204,7 +204,7 @@ /FS - CppUnitmd.lib;PocoFoundationmd.lib;WinTestRunner.res;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmd.lib;PocoFoundationmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false @@ -235,7 +235,7 @@ /FS - CppUnitmdd.lib;PocoFoundationmdd.lib;WinTestRunner.res;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + CppUnitmdd.lib;PocoFoundationmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true @@ -263,10 +263,10 @@ /FS - CppUnitmtd.lib;PocoFoundationmtd.lib;WinTestRunner.res;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + CppUnitmtd.lib;PocoFoundationmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) + %(IgnoreSpecificDefaultLibraries) true bin64\static_mt\TestSuited.pdb Console @@ -298,10 +298,10 @@ /FS - CppUnitmt.lib;PocoFoundationmt.lib;WinTestRunner.res;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies) + CppUnitmt.lib;PocoFoundationmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) + %(IgnoreSpecificDefaultLibraries) false diff --git a/JSON/testsuite/TestSuite_vs120.vcxproj b/JSON/testsuite/TestSuite_vs120.vcxproj index b9d1c7679..757bbabb6 100644 --- a/JSON/testsuite/TestSuite_vs120.vcxproj +++ b/JSON/testsuite/TestSuite_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Windows + Console MachineX86 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Windows + Console MachineX86 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX86 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Windows + Console MachineX86 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -314,7 +306,7 @@ - + diff --git a/JSON/testsuite/TestSuite_x64_vs120.vcxproj b/JSON/testsuite/TestSuite_x64_vs120.vcxproj index dc6d5f3b7..d2219216e 100644 --- a/JSON/testsuite/TestSuite_x64_vs120.vcxproj +++ b/JSON/testsuite/TestSuite_x64_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Windows + Console MachineX64 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Windows + Console MachineX64 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX64 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Windows + Console MachineX64 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -314,7 +306,7 @@ - + diff --git a/MongoDB/testsuite/TestSuite_vs120.vcxproj b/MongoDB/testsuite/TestSuite_vs120.vcxproj index 1916f1e9d..387190c85 100644 --- a/MongoDB/testsuite/TestSuite_vs120.vcxproj +++ b/MongoDB/testsuite/TestSuite_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Windows + Console MachineX86 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Windows + Console MachineX86 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX86 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Windows + Console MachineX86 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -314,7 +306,7 @@ - + diff --git a/MongoDB/testsuite/TestSuite_x64_vs120.vcxproj b/MongoDB/testsuite/TestSuite_x64_vs120.vcxproj index e43374e23..2925bb2a9 100644 --- a/MongoDB/testsuite/TestSuite_x64_vs120.vcxproj +++ b/MongoDB/testsuite/TestSuite_x64_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Windows + Console MachineX64 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Windows + Console MachineX64 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX64 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Windows + Console MachineX64 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -314,7 +306,7 @@ - + diff --git a/Net/testsuite/TestSuite_vs120.vcxproj b/Net/testsuite/TestSuite_vs120.vcxproj index 4346656ab..75db1c628 100644 --- a/Net/testsuite/TestSuite_vs120.vcxproj +++ b/Net/testsuite/TestSuite_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Windows + Console MachineX86 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnit.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Windows + Console MachineX86 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX86 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Windows + Console MachineX86 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -377,7 +369,7 @@ - + diff --git a/Net/testsuite/TestSuite_x64_vs120.vcxproj b/Net/testsuite/TestSuite_x64_vs120.vcxproj index f7a61c390..6e6c59f24 100644 --- a/Net/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Net/testsuite/TestSuite_x64_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitd.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Windows + Console MachineX64 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnit.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Windows + Console MachineX64 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX64 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Windows + Console MachineX64 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -377,7 +369,7 @@ - + diff --git a/NetSSL_OpenSSL/testsuite/TestSuite_vs120.vcxproj b/NetSSL_OpenSSL/testsuite/TestSuite_vs120.vcxproj index f43136db3..9208aeb6e 100644 --- a/NetSSL_OpenSSL/testsuite/TestSuite_vs120.vcxproj +++ b/NetSSL_OpenSSL/testsuite/TestSuite_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitd.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Windows + Console MachineX86 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnit.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Windows + Console MachineX86 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX86 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Windows + Console MachineX86 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -325,7 +317,7 @@ - + diff --git a/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs120.vcxproj b/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs120.vcxproj index 9f2f6cc90..da2453a3a 100644 --- a/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs120.vcxproj +++ b/NetSSL_OpenSSL/testsuite/TestSuite_x64_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitd.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Windows + Console MachineX64 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnit.lib;libeay32.lib;ssleay32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;libeay32mtd.lib;ssleay32mtd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Windows + Console MachineX64 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;libeay32mt.lib;ssleay32mt.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX64 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;libeay32mdd.lib;ssleay32mdd.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Windows + Console MachineX64 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;libeay32md.lib;ssleay32md.lib;Crypt32.lib;ws2_32.lib;iphlpapi.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -325,7 +317,7 @@ - + diff --git a/PDF/testsuite/TestSuite_vs120.vcxproj b/PDF/testsuite/TestSuite_vs120.vcxproj index 7f75c5fc5..bcaac8f56 100644 --- a/PDF/testsuite/TestSuite_vs120.vcxproj +++ b/PDF/testsuite/TestSuite_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Windows + Console MachineX86 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Windows + Console MachineX86 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX86 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Windows + Console MachineX86 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -318,7 +310,7 @@ - + diff --git a/PDF/testsuite/TestSuite_x64_vs120.vcxproj b/PDF/testsuite/TestSuite_x64_vs120.vcxproj index 62b0cd4d1..fefac3cef 100644 --- a/PDF/testsuite/TestSuite_x64_vs120.vcxproj +++ b/PDF/testsuite/TestSuite_x64_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Windows + Console MachineX64 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Windows + Console MachineX64 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX64 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Windows + Console MachineX64 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -318,7 +310,7 @@ - + diff --git a/Util/testsuite/TestSuite_vs120.vcxproj b/Util/testsuite/TestSuite_vs120.vcxproj index 9e4765dff..fbfeebe95 100644 --- a/Util/testsuite/TestSuite_vs120.vcxproj +++ b/Util/testsuite/TestSuite_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Windows + Console MachineX86 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Windows + Console MachineX86 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX86 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Windows + Console MachineX86 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -340,7 +332,7 @@ - + diff --git a/Util/testsuite/TestSuite_x64_vs120.vcxproj b/Util/testsuite/TestSuite_x64_vs120.vcxproj index a3e6de6ee..682e5b846 100644 --- a/Util/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Util/testsuite/TestSuite_x64_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Windows + Console MachineX64 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Windows + Console MachineX64 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX64 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Windows + Console MachineX64 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -340,7 +332,7 @@ - + diff --git a/XML/testsuite/TestSuite_vs120.vcxproj b/XML/testsuite/TestSuite_vs120.vcxproj index f40095a53..ce7603900 100644 --- a/XML/testsuite/TestSuite_vs120.vcxproj +++ b/XML/testsuite/TestSuite_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Windows + Console MachineX86 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Windows + Console MachineX86 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX86 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Windows + Console MachineX86 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -354,7 +346,7 @@ - + diff --git a/XML/testsuite/TestSuite_x64_vs120.vcxproj b/XML/testsuite/TestSuite_x64_vs120.vcxproj index 24c2c5956..72abb10d7 100644 --- a/XML/testsuite/TestSuite_x64_vs120.vcxproj +++ b/XML/testsuite/TestSuite_x64_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Windows + Console MachineX64 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Windows + Console MachineX64 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX64 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Windows + Console MachineX64 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -354,7 +346,7 @@ - + diff --git a/Zip/testsuite/TestSuite_vs120.vcxproj b/Zip/testsuite/TestSuite_vs120.vcxproj index 845eedfe8..6b882796e 100644 --- a/Zip/testsuite/TestSuite_vs120.vcxproj +++ b/Zip/testsuite/TestSuite_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\TestSuited.pdb - Windows + Console MachineX86 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin\static_mt\TestSuited.pdb - Windows + Console MachineX86 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_mt\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX86 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuited.exe ..\..\lib;%(AdditionalLibraryDirectories) true true bin\static_md\TestSuited.pdb - Windows + Console MachineX86 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin\static_md\TestSuite.exe ..\..\lib;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX86 @@ -322,7 +314,7 @@ - + diff --git a/Zip/testsuite/TestSuite_x64_vs120.vcxproj b/Zip/testsuite/TestSuite_x64_vs120.vcxproj index c6a89dedc..6f7139488 100644 --- a/Zip/testsuite/TestSuite_x64_vs120.vcxproj +++ b/Zip/testsuite/TestSuite_x64_vs120.vcxproj @@ -35,37 +35,31 @@ Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 Application - Static MultiByte v120 Application - Static MultiByte v120 Application - Dynamic MultiByte v120 Application - Dynamic MultiByte v120 @@ -148,13 +142,13 @@ Default - CppUnitd.lib;WinTestRunnerd.lib;%(AdditionalDependencies) + CppUnitd.lib;%(AdditionalDependencies) bin64\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\TestSuited.pdb - Windows + Console MachineX64 @@ -179,11 +173,11 @@ Default - CppUnit.lib;WinTestRunner.lib;%(AdditionalDependencies) + CppUnit.lib;%(AdditionalDependencies) bin64\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -208,14 +202,13 @@ Default - CppUnitmtd.lib;WinTestRunnermtd.lib;iphlpapi.lib;winmm.lib;nafxcwd.lib;libcmtd.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmtd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) true true bin64\static_mt\TestSuited.pdb - Windows + Console MachineX64 @@ -240,12 +233,11 @@ Default - CppUnitmt.lib;WinTestRunnermt.lib;iphlpapi.lib;winmm.lib;nafxcw.lib;libcmt.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmt.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_mt\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) - nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) false - Windows + Console true true MachineX64 @@ -270,13 +262,13 @@ Default - CppUnitmdd.lib;WinTestRunnermdd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmdd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuited.exe ..\..\lib64;%(AdditionalLibraryDirectories) true true bin64\static_md\TestSuited.pdb - Windows + Console MachineX64 @@ -301,11 +293,11 @@ Default - CppUnitmd.lib;WinTestRunnermd.lib;iphlpapi.lib;winmm.lib;WinTestRunner.res;%(AdditionalDependencies) + CppUnitmd.lib;iphlpapi.lib;winmm.lib;%(AdditionalDependencies) bin64\static_md\TestSuite.exe ..\..\lib64;%(AdditionalLibraryDirectories) false - Windows + Console true true MachineX64 @@ -322,7 +314,7 @@ - + From 063a642957f7341b524ac5d02e5ba9f460b7cfdd Mon Sep 17 00:00:00 2001 From: fbraem Date: Tue, 22 Apr 2014 20:21:17 +0200 Subject: [PATCH 33/52] Solve collection name problem in ensureIndex --- MongoDB/src/Database.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MongoDB/src/Database.cpp b/MongoDB/src/Database.cpp index c51c1114f..1647f3cb7 100644 --- a/MongoDB/src/Database.cpp +++ b/MongoDB/src/Database.cpp @@ -72,7 +72,7 @@ double Database::count(Connection& connection, const std::string& collectionName Poco::MongoDB::Document::Ptr Database::ensureIndex(Connection& connection, const std::string& collection, const std::string& indexName, Poco::MongoDB::Document::Ptr keys, bool unique, bool background, int version, int ttl) { Poco::MongoDB::Document::Ptr index = new Poco::MongoDB::Document(); - index->add("ns", _dbname + ".players"); + index->add("ns", _dbname + "." + collection); index->add("name", indexName); index->add("key", keys); From f8169eabac9be882143c68f04bbee029f0610301 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Wed, 23 Apr 2014 13:30:27 +0200 Subject: [PATCH 34/52] updated SDK in WEC2013 project files --- CppUnit/CppUnit_WEC2013_vs110.sln | 36 +- CppUnit/CppUnit_WEC2013_vs110.vcxproj | 102 +- Data/Data_WEC2013_vs110.sln | 84 +- Data/Data_WEC2013_vs110.vcxproj | 86 +- Data/SQLite/SQLite_WEC2013_vs110.sln | 84 +- Data/SQLite/SQLite_WEC2013_vs110.vcxproj | 86 +- .../testsuite/TestSuite_WEC2013_vs110.vcxproj | 86 +- .../Binding/Binding_WEC2013_vs110.vcxproj | 86 +- .../RecordSet/RecordSet_WEC2013_vs110.vcxproj | 86 +- .../RowFormatter_WEC2013_vs110.vcxproj | 86 +- .../samples/Tuple/Tuple_WEC2013_vs110.vcxproj | 86 +- .../TypeHandler_WEC2013_vs110.vcxproj | 86 +- .../WebNotifier_WEC2013_vs110.vcxproj | 86 +- Data/samples/samples_WEC2013_vs110.sln | 192 ++-- .../testsuite/TestSuite_WEC2013_vs110.vcxproj | 86 +- Foundation/Foundation_WEC2013_vs110.sln | 134 +-- Foundation/Foundation_WEC2013_vs110.vcxproj | 950 +++++++++--------- .../ActiveMethod_WEC2013_vs110.vcxproj | 86 +- .../Activity/Activity_WEC2013_vs110.vcxproj | 86 +- .../BinaryReaderWriter_WEC2013_vs110.vcxproj | 86 +- .../DateTime/DateTime_WEC2013_vs110.vcxproj | 86 +- .../LogRotation_WEC2013_vs110.vcxproj | 86 +- .../Logger/Logger_WEC2013_vs110.vcxproj | 86 +- .../NotificationQueue_WEC2013_vs110.vcxproj | 86 +- .../StringTokenizer_WEC2013_vs110.vcxproj | 86 +- .../samples/Timer/Timer_WEC2013_vs110.vcxproj | 86 +- .../samples/URI/URI_WEC2013_vs110.vcxproj | 86 +- .../base64decode_WEC2013_vs110.vcxproj | 86 +- .../base64encode_WEC2013_vs110.vcxproj | 86 +- .../deflate/deflate_WEC2013_vs110.vcxproj | 86 +- .../samples/dir/dir_WEC2013_vs110.vcxproj | 86 +- .../samples/grep/grep_WEC2013_vs110.vcxproj | 86 +- .../hmacmd5/hmacmd5_WEC2013_vs110.vcxproj | 86 +- .../inflate/inflate_WEC2013_vs110.vcxproj | 86 +- .../samples/md5/md5_WEC2013_vs110.vcxproj | 86 +- Foundation/samples/samples_WEC2013_vs110.sln | 696 ++++++------- .../uuidgen/uuidgen_WEC2013_vs110.vcxproj | 86 +- .../testsuite/TestApp_WEC2013_vs110.vcxproj | 110 +- .../TestLibrary_WEC2013_vs110.vcxproj | 42 +- .../testsuite/TestSuite_WEC2013_vs110.vcxproj | 110 +- JSON/JSON_WEC2013_vs110.sln | 84 +- JSON/JSON_WEC2013_vs110.vcxproj | 86 +- .../Benchmark/Benchmark_WEC2013_vs110.vcxproj | 86 +- JSON/samples/samples_WEC2013_vs110.sln | 48 +- .../testsuite/TestSuite_WEC2013_vs110.vcxproj | 86 +- Net/Net_WEC2013_vs110.sln | 84 +- Net/Net_WEC2013_vs110.vcxproj | 98 +- .../EchoServer_WEC2013_vs110.vcxproj | 86 +- .../HTTPFormServer_WEC2013_vs110.vcxproj | 86 +- .../HTTPLoadTest_WEC2013_vs110.vcxproj | 86 +- .../HTTPTimeServer_WEC2013_vs110.vcxproj | 86 +- Net/samples/Mail/Mail_WEC2013_vs110.vcxproj | 86 +- Net/samples/Ping/Ping_WEC2013_vs110.vcxproj | 86 +- .../SMTPLogger_WEC2013_vs110.vcxproj | 86 +- .../TimeServer_WEC2013_vs110.vcxproj | 86 +- .../TwitterClient_WEC2013_vs110.vcxproj | 86 +- .../WebSocketServer_WEC2013_vs110.vcxproj | 86 +- Net/samples/dict/dict_WEC2013_vs110.vcxproj | 86 +- .../download/download_WEC2013_vs110.vcxproj | 86 +- .../httpget/httpget_WEC2013_vs110.vcxproj | 86 +- .../ifconfig/ifconfig_WEC2013_vs110.vcxproj | 86 +- Net/samples/samples_WEC2013_vs110.sln | 480 ++++----- Net/testsuite/TestSuite_WEC2013_vs110.vcxproj | 86 +- SevenZip/SevenZip_WEC2013_vs110.sln | 48 +- SevenZip/SevenZip_WEC2013_vs110.vcxproj | 98 +- SevenZip/samples/samples_WEC2013_vs110.sln | 48 +- .../un7zip/un7zip_WEC2013_vs110.vcxproj | 86 +- Util/Util_WEC2013_vs110.sln | 84 +- Util/Util_WEC2013_vs110.vcxproj | 98 +- .../SampleApp/SampleApp_WEC2013_vs110.vcxproj | 86 +- .../SampleServer_WEC2013_vs110.vcxproj | 86 +- .../samples/Units/Units_WEC2013_vs110.vcxproj | 86 +- .../samples/pkill/pkill_WEC2013_vs110.vcxproj | 86 +- Util/samples/samples_WEC2013_vs110.sln | 156 +-- .../testsuite/TestSuite_WEC2013_vs110.vcxproj | 86 +- XML/XML_WEC2013_vs110.sln | 84 +- XML/XML_WEC2013_vs110.vcxproj | 118 +-- .../DOMParser/DOMParser_WEC2013_vs110.vcxproj | 86 +- .../DOMWriter/DOMWriter_WEC2013_vs110.vcxproj | 86 +- .../PrettyPrint_WEC2013_vs110.vcxproj | 86 +- .../SAXParser/SAXParser_WEC2013_vs110.vcxproj | 86 +- XML/samples/samples_WEC2013_vs110.sln | 156 +-- XML/testsuite/TestSuite_WEC2013_vs110.vcxproj | 86 +- Zip/Zip_WEC2013_vs110.sln | 84 +- Zip/Zip_WEC2013_vs110.vcxproj | 94 +- Zip/samples/samples_WEC2013_vs110.sln | 84 +- Zip/samples/unzip/unzip_WEC2013_vs110.vcxproj | 86 +- Zip/samples/zip/zip_WEC2013_vs110.vcxproj | 86 +- Zip/testsuite/TestSuite_WEC2013_vs110.vcxproj | 86 +- 89 files changed, 4866 insertions(+), 4866 deletions(-) diff --git a/CppUnit/CppUnit_WEC2013_vs110.sln b/CppUnit/CppUnit_WEC2013_vs110.sln index f13a62cfd..9baef8709 100644 --- a/CppUnit/CppUnit_WEC2013_vs110.sln +++ b/CppUnit/CppUnit_WEC2013_vs110.sln @@ -5,26 +5,26 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CppUnit", "CppUnit_WEC2013_ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {138BB448-808A-4FE5-A66D-78D1F8770F59}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {138BB448-808A-4FE5-A66D-78D1F8770F59}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {138BB448-808A-4FE5-A66D-78D1F8770F59}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {138BB448-808A-4FE5-A66D-78D1F8770F59}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {138BB448-808A-4FE5-A66D-78D1F8770F59}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {138BB448-808A-4FE5-A66D-78D1F8770F59}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {138BB448-808A-4FE5-A66D-78D1F8770F59}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {138BB448-808A-4FE5-A66D-78D1F8770F59}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {138BB448-808A-4FE5-A66D-78D1F8770F59}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {138BB448-808A-4FE5-A66D-78D1F8770F59}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {138BB448-808A-4FE5-A66D-78D1F8770F59}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {138BB448-808A-4FE5-A66D-78D1F8770F59}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 + {138BB448-808A-4FE5-A66D-78D1F8770F59}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {138BB448-808A-4FE5-A66D-78D1F8770F59}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {138BB448-808A-4FE5-A66D-78D1F8770F59}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {138BB448-808A-4FE5-A66D-78D1F8770F59}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {138BB448-808A-4FE5-A66D-78D1F8770F59}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {138BB448-808A-4FE5-A66D-78D1F8770F59}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {138BB448-808A-4FE5-A66D-78D1F8770F59}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {138BB448-808A-4FE5-A66D-78D1F8770F59}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {138BB448-808A-4FE5-A66D-78D1F8770F59}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {138BB448-808A-4FE5-A66D-78D1F8770F59}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {138BB448-808A-4FE5-A66D-78D1F8770F59}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {138BB448-808A-4FE5-A66D-78D1F8770F59}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/CppUnit/CppUnit_WEC2013_vs110.vcxproj b/CppUnit/CppUnit_WEC2013_vs110.vcxproj index cf057e66f..09cf6789f 100644 --- a/CppUnit/CppUnit_WEC2013_vs110.vcxproj +++ b/CppUnit/CppUnit_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@  - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -33,41 +33,41 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + StaticLibrary false MultiByte CE800 - + StaticLibrary false MultiByte CE800 - + StaticLibrary false MultiByte CE800 - + StaticLibrary false MultiByte CE800 - + DynamicLibrary false MultiByte CE800 - + DynamicLibrary false MultiByte @@ -76,49 +76,49 @@ - + - + - + - + - + - + <_ProjectFileVersion>10.0.30319.1 - ..\bin\$(Platform)\ - obj\$(Platform)\$(Configuration)\ - true - ..\bin\$(Platform)\ - obj\$(Platform)\$(Configuration)\ - false - ..\lib\$(Platform)\ - obj\$(Platform)\$(Configuration)\ - ..\lib\$(Platform)\ - obj\$(Platform)\$(Configuration)\ - ..\lib\$(Platform)\ - obj\$(Platform)\$(Configuration)\ - ..\lib\$(Platform)\ - obj\$(Platform)\$(Configuration)\ - CppUnitd - CppUnit - CppUnitmdd - CppUnitmtd - CppUnitmd - CppUnitmt + ..\bin\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + true + ..\bin\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + false + ..\lib\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + ..\lib\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + ..\lib\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + ..\lib\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + CppUnitd + CppUnit + CppUnitmdd + CppUnitmtd + CppUnitmd + CppUnitmt - + Disabled Default @@ -157,7 +157,7 @@ ..\lib\$(Platform)\CppUnitd.lib - + Disabled OnlyExplicitInline @@ -195,7 +195,7 @@ ..\lib\$(Platform)\CppUnit.lib - + Disabled Default @@ -228,7 +228,7 @@ ..\lib\$(Platform)\CppUnitmdd.lib - + Disabled OnlyExplicitInline @@ -261,7 +261,7 @@ ..\lib\$(Platform)\CppUnitmd.lib - + Disabled Default @@ -294,7 +294,7 @@ ..\lib\$(Platform)\CppUnitmtd.lib - + Disabled OnlyExplicitInline diff --git a/Data/Data_WEC2013_vs110.sln b/Data/Data_WEC2013_vs110.sln index 9c32c59e8..3d69ca6fe 100644 --- a/Data/Data_WEC2013_vs110.sln +++ b/Data/Data_WEC2013_vs110.sln @@ -9,50 +9,50 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\Test EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {240E83C3-368D-11DB-9FBC-00123FC423B5}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {1813A463-E349-4FEA-8A8E-4A41E41C0DC7}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Data/Data_WEC2013_vs110.vcxproj b/Data/Data_WEC2013_vs110.vcxproj index 9df38027f..3d100cbcc 100644 --- a/Data/Data_WEC2013_vs110.vcxproj +++ b/Data/Data_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,99 +32,99 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - PocoDatad - PocoDatamdd - PocoDatamtd - PocoData - PocoDatamd - PocoDatamt + PocoDatad + PocoDatamdd + PocoDatamtd + PocoData + PocoDatamd + PocoDatamt - + ..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ true true - + ..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ false true - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -148,7 +148,7 @@ WindowsCE - + Disabled true @@ -174,7 +174,7 @@ WindowsCE - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -194,7 +194,7 @@ ..\lib\$(Platform)\PocoDatamtd.lib - + Disabled true @@ -215,7 +215,7 @@ ..\lib\$(Platform)\PocoDatamt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -235,7 +235,7 @@ ..\lib\$(Platform)\PocoDatamdd.lib - + Disabled true diff --git a/Data/SQLite/SQLite_WEC2013_vs110.sln b/Data/SQLite/SQLite_WEC2013_vs110.sln index 3b965f785..06a15e16c 100644 --- a/Data/SQLite/SQLite_WEC2013_vs110.sln +++ b/Data/SQLite/SQLite_WEC2013_vs110.sln @@ -9,50 +9,50 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\Test EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {5B889CE7-AD42-4CFE-BBC3-532B61F8329E}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {45528A81-2523-48DD-AEB3-6B6BD73A2C5D}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Data/SQLite/SQLite_WEC2013_vs110.vcxproj b/Data/SQLite/SQLite_WEC2013_vs110.vcxproj index 46a915612..554bce7eb 100644 --- a/Data/SQLite/SQLite_WEC2013_vs110.vcxproj +++ b/Data/SQLite/SQLite_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,99 +32,99 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - PocoDataSQLited - PocoDataSQLitemdd - PocoDataSQLitemtd - PocoDataSQLite - PocoDataSQLitemd - PocoDataSQLitemt + PocoDataSQLited + PocoDataSQLitemdd + PocoDataSQLitemtd + PocoDataSQLite + PocoDataSQLitemd + PocoDataSQLitemt - + ..\..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ true true - + ..\..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ false true - + ..\..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -149,7 +149,7 @@ WindowsCE - + Disabled true @@ -176,7 +176,7 @@ WindowsCE - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ ..\..\lib\$(Platform)\PocoDataSQLitemtd.lib - + Disabled true @@ -219,7 +219,7 @@ ..\..\lib\$(Platform)\PocoDataSQLitemt.lib - + Disabled .\include;..\..\Foundation\include;..\..\Data\include;%(AdditionalIncludeDirectories) @@ -240,7 +240,7 @@ ..\..\lib\$(Platform)\PocoDataSQLitemdd.lib - + Disabled true diff --git a/Data/SQLite/testsuite/TestSuite_WEC2013_vs110.vcxproj b/Data/SQLite/testsuite/TestSuite_WEC2013_vs110.vcxproj index 293050c06..88ff9d4d6 100644 --- a/Data/SQLite/testsuite/TestSuite_WEC2013_vs110.vcxproj +++ b/Data/SQLite/testsuite/TestSuite_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Win32 @@ -154,7 +154,7 @@ WindowsCE - + Win32 @@ -184,7 +184,7 @@ WindowsCE - + Win32 @@ -212,7 +212,7 @@ WindowsCE - + Win32 @@ -245,7 +245,7 @@ WindowsCE - + Win32 @@ -273,7 +273,7 @@ WindowsCE - + Win32 diff --git a/Data/samples/Binding/Binding_WEC2013_vs110.vcxproj b/Data/samples/Binding/Binding_WEC2013_vs110.vcxproj index deccf50f6..7ea64d53e 100644 --- a/Data/samples/Binding/Binding_WEC2013_vs110.vcxproj +++ b/Data/samples/Binding/Binding_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - Bindingd - Bindingd - Bindingd - Binding - Binding - Binding + Bindingd + Bindingd + Bindingd + Binding + Binding + Binding - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Data/samples/RecordSet/RecordSet_WEC2013_vs110.vcxproj b/Data/samples/RecordSet/RecordSet_WEC2013_vs110.vcxproj index b12a3649f..da9b410c3 100644 --- a/Data/samples/RecordSet/RecordSet_WEC2013_vs110.vcxproj +++ b/Data/samples/RecordSet/RecordSet_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - RecordSetd - RecordSetd - RecordSetd - RecordSet - RecordSet - RecordSet + RecordSetd + RecordSetd + RecordSetd + RecordSet + RecordSet + RecordSet - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Data/samples/RowFormatter/RowFormatter_WEC2013_vs110.vcxproj b/Data/samples/RowFormatter/RowFormatter_WEC2013_vs110.vcxproj index 36c87e08e..39ee80476 100644 --- a/Data/samples/RowFormatter/RowFormatter_WEC2013_vs110.vcxproj +++ b/Data/samples/RowFormatter/RowFormatter_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - RowFormatterd - RowFormatterd - RowFormatterd - RowFormatter - RowFormatter - RowFormatter + RowFormatterd + RowFormatterd + RowFormatterd + RowFormatter + RowFormatter + RowFormatter - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Data/samples/Tuple/Tuple_WEC2013_vs110.vcxproj b/Data/samples/Tuple/Tuple_WEC2013_vs110.vcxproj index 0abfe77b2..cb24ddf69 100644 --- a/Data/samples/Tuple/Tuple_WEC2013_vs110.vcxproj +++ b/Data/samples/Tuple/Tuple_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - Tupled - Tupled - Tupled - Tuple - Tuple - Tuple + Tupled + Tupled + Tupled + Tuple + Tuple + Tuple - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Data/samples/TypeHandler/TypeHandler_WEC2013_vs110.vcxproj b/Data/samples/TypeHandler/TypeHandler_WEC2013_vs110.vcxproj index 3a85203e8..71d30e1a8 100644 --- a/Data/samples/TypeHandler/TypeHandler_WEC2013_vs110.vcxproj +++ b/Data/samples/TypeHandler/TypeHandler_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - TypeHandlerd - TypeHandlerd - TypeHandlerd - TypeHandler - TypeHandler - TypeHandler + TypeHandlerd + TypeHandlerd + TypeHandlerd + TypeHandler + TypeHandler + TypeHandler - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Data/samples/WebNotifier/WebNotifier_WEC2013_vs110.vcxproj b/Data/samples/WebNotifier/WebNotifier_WEC2013_vs110.vcxproj index e1b0a235d..89f58eabb 100644 --- a/Data/samples/WebNotifier/WebNotifier_WEC2013_vs110.vcxproj +++ b/Data/samples/WebNotifier/WebNotifier_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - WebNotifierd - WebNotifierd - WebNotifierd - WebNotifier - WebNotifier - WebNotifier + WebNotifierd + WebNotifierd + WebNotifierd + WebNotifier + WebNotifier + WebNotifier - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\Data\include;..\..\..\Data\SQLite\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Data/samples/samples_WEC2013_vs110.sln b/Data/samples/samples_WEC2013_vs110.sln index 24cc6a0ea..115dfdaf2 100644 --- a/Data/samples/samples_WEC2013_vs110.sln +++ b/Data/samples/samples_WEC2013_vs110.sln @@ -12,104 +12,104 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TypeHandler", "TypeHandler\ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {0F0DF069-83D1-378D-A949-8DF9A883B627}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {FEE20DCE-B9E3-30AB-A40C-B6A324997328}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {133C62C7-3301-3F43-9ABF-14DF094A042F}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {F143DA5A-221A-3737-BCBA-F5BFD977038F}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {65A12348-CA20-324E-9F5E-7F82753C2C65}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Data/testsuite/TestSuite_WEC2013_vs110.vcxproj b/Data/testsuite/TestSuite_WEC2013_vs110.vcxproj index d35841ded..d99bcacfa 100644 --- a/Data/testsuite/TestSuite_WEC2013_vs110.vcxproj +++ b/Data/testsuite/TestSuite_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Win32 @@ -154,7 +154,7 @@ WindowsCE - + Win32 @@ -184,7 +184,7 @@ WindowsCE - + Win32 @@ -212,7 +212,7 @@ WindowsCE - + Win32 @@ -245,7 +245,7 @@ WindowsCE - + Win32 @@ -273,7 +273,7 @@ WindowsCE - + Win32 diff --git a/Foundation/Foundation_WEC2013_vs110.sln b/Foundation/Foundation_WEC2013_vs110.sln index 13de99f83..7c9cea195 100644 --- a/Foundation/Foundation_WEC2013_vs110.sln +++ b/Foundation/Foundation_WEC2013_vs110.sln @@ -17,75 +17,75 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestLibrary", "testsuite\Te EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {8164D41D-B053-405B-826C-CF37AC0EF176}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {8164D41D-B053-405B-826C-CF37AC0EF176}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {8164D41D-B053-405B-826C-CF37AC0EF176}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {8164D41D-B053-405B-826C-CF37AC0EF176}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {8164D41D-B053-405B-826C-CF37AC0EF176}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {8164D41D-B053-405B-826C-CF37AC0EF176}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {8164D41D-B053-405B-826C-CF37AC0EF176}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {8164D41D-B053-405B-826C-CF37AC0EF176}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {8164D41D-B053-405B-826C-CF37AC0EF176}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {8164D41D-B053-405B-826C-CF37AC0EF176}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {8164D41D-B053-405B-826C-CF37AC0EF176}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {8164D41D-B053-405B-826C-CF37AC0EF176}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {0955EB03-544B-4BD4-9C10-89CF38078F5F}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {0955EB03-544B-4BD4-9C10-89CF38078F5F}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {0955EB03-544B-4BD4-9C10-89CF38078F5F}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {0955EB03-544B-4BD4-9C10-89CF38078F5F}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {0955EB03-544B-4BD4-9C10-89CF38078F5F}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {0955EB03-544B-4BD4-9C10-89CF38078F5F}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {0955EB03-544B-4BD4-9C10-89CF38078F5F}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {0955EB03-544B-4BD4-9C10-89CF38078F5F}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {0955EB03-544B-4BD4-9C10-89CF38078F5F}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {0955EB03-544B-4BD4-9C10-89CF38078F5F}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {0955EB03-544B-4BD4-9C10-89CF38078F5F}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {0955EB03-544B-4BD4-9C10-89CF38078F5F}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {0955EB03-544B-4BD4-9C10-89CF38078F5F}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 + {8164D41D-B053-405B-826C-CF37AC0EF176}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {8164D41D-B053-405B-826C-CF37AC0EF176}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {8164D41D-B053-405B-826C-CF37AC0EF176}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {8164D41D-B053-405B-826C-CF37AC0EF176}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {8164D41D-B053-405B-826C-CF37AC0EF176}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {8164D41D-B053-405B-826C-CF37AC0EF176}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {8164D41D-B053-405B-826C-CF37AC0EF176}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {8164D41D-B053-405B-826C-CF37AC0EF176}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {8164D41D-B053-405B-826C-CF37AC0EF176}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {8164D41D-B053-405B-826C-CF37AC0EF176}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {8164D41D-B053-405B-826C-CF37AC0EF176}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {8164D41D-B053-405B-826C-CF37AC0EF176}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F1EE93DF-347F-4CB3-B191-C4E63F38E972}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6C41E55D-C0FC-4E01-AA8D-B7DA40E31D3A}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0955EB03-544B-4BD4-9C10-89CF38078F5F}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0955EB03-544B-4BD4-9C10-89CF38078F5F}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0955EB03-544B-4BD4-9C10-89CF38078F5F}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0955EB03-544B-4BD4-9C10-89CF38078F5F}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0955EB03-544B-4BD4-9C10-89CF38078F5F}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0955EB03-544B-4BD4-9C10-89CF38078F5F}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0955EB03-544B-4BD4-9C10-89CF38078F5F}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0955EB03-544B-4BD4-9C10-89CF38078F5F}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0955EB03-544B-4BD4-9C10-89CF38078F5F}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0955EB03-544B-4BD4-9C10-89CF38078F5F}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0955EB03-544B-4BD4-9C10-89CF38078F5F}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0955EB03-544B-4BD4-9C10-89CF38078F5F}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0955EB03-544B-4BD4-9C10-89CF38078F5F}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Foundation/Foundation_WEC2013_vs110.vcxproj b/Foundation/Foundation_WEC2013_vs110.vcxproj index c9afa0cb1..1583bbaef 100644 --- a/Foundation/Foundation_WEC2013_vs110.vcxproj +++ b/Foundation/Foundation_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@  - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,36 +32,36 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 @@ -69,49 +69,49 @@ - + - + - + - + - + - + <_ProjectFileVersion>10.0.30319.1 - ..\bin\$(Platform)\ - obj\$(Platform)\$(Configuration)\ - true - ..\bin\$(Platform)\ - obj\$(Platform)\$(Configuration)\ - false - ..\lib\$(Platform)\ - obj\$(Platform)\$(Configuration)\ - ..\lib\$(Platform)\ - obj\$(Platform)\$(Configuration)\ - ..\lib\$(Platform)\ - obj\$(Platform)\$(Configuration)\ - ..\lib\$(Platform)\ - obj\$(Platform)\$(Configuration)\ - PocoFoundationd - PocoFoundationmdd - PocoFoundationmtd - PocoFoundation - PocoFoundationmd - PocoFoundationmt + ..\bin\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + true + ..\bin\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + false + ..\lib\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + ..\lib\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + ..\lib\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + ..\lib\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + PocoFoundationd + PocoFoundationmdd + PocoFoundationmtd + PocoFoundation + PocoFoundationmd + PocoFoundationmt - + Disabled .\include;%(AdditionalIncludeDirectories) @@ -139,7 +139,7 @@ ..\lib\$(Platform)\$(TargetName).lib - + Disabled OnlyExplicitInline @@ -175,7 +175,7 @@ ..\lib\$(Platform)\$(TargetName).lib - + Disabled OnlyExplicitInline @@ -202,7 +202,7 @@ ..\lib\$(Platform)\$(TargetName).lib - + Disabled .\include;%(AdditionalIncludeDirectories) @@ -224,7 +224,7 @@ ..\lib\$(Platform)\$(TargetName).lib - + Disabled .\include;%(AdditionalIncludeDirectories) @@ -246,7 +246,7 @@ ..\lib\$(Platform)\$(TargetName).lib - + Disabled OnlyExplicitInline @@ -283,36 +283,36 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true @@ -320,44 +320,44 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true @@ -365,12 +365,12 @@ - true - true - true - true - true - true + true + true + true + true + true + true @@ -379,12 +379,12 @@ - true - true - true - true - true - true + true + true + true + true + true + true @@ -401,20 +401,20 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true @@ -443,91 +443,91 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true @@ -543,44 +543,44 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true @@ -603,48 +603,48 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true @@ -653,12 +653,12 @@ - true - true - true - true - true - true + true + true + true + true + true + true @@ -667,20 +667,20 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true @@ -690,255 +690,255 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true @@ -953,20 +953,20 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true @@ -1327,31 +1327,31 @@ Document - mc -h "%(RootDir)%(Directory)." -r "%(RootDir)%(Directory)." "%(FullPath) - %(RootDir)%(Directory)\pocomsg.rc;%(RootDir)%(Directory)\pocomsg.h;%(Outputs) - mc -h "%(RootDir)%(Directory)." -r "%(RootDir)%(Directory)." "%(FullPath) + mc -h "%(RootDir)%(Directory)." -r "%(RootDir)%(Directory)." "%(FullPath) + %(RootDir)%(Directory)\pocomsg.rc;%(RootDir)%(Directory)\pocomsg.h;%(Outputs) + mc -h "%(RootDir)%(Directory)." -r "%(RootDir)%(Directory)." "%(FullPath) - %(RootDir)%(Directory)\pocomsg.rc;%(RootDir)%(Directory)\pocomsg.h;%(Outputs) - mc -h "%(RootDir)%(Directory)." -r "%(RootDir)%(Directory)." "%(FullPath) + %(RootDir)%(Directory)\pocomsg.rc;%(RootDir)%(Directory)\pocomsg.h;%(Outputs) + mc -h "%(RootDir)%(Directory)." -r "%(RootDir)%(Directory)." "%(FullPath) - %(RootDir)%(Directory)\pocomsg.rc;%(RootDir)%(Directory)\pocomsg.h;%(Outputs) - mc -h "%(RootDir)%(Directory)." -r "%(RootDir)%(Directory)." "%(FullPath) + %(RootDir)%(Directory)\pocomsg.rc;%(RootDir)%(Directory)\pocomsg.h;%(Outputs) + mc -h "%(RootDir)%(Directory)." -r "%(RootDir)%(Directory)." "%(FullPath) - %(RootDir)%(Directory)\pocomsg.rc;%(RootDir)%(Directory)\pocomsg.h;%(Outputs) - mc -h "%(RootDir)%(Directory)." -r "%(RootDir)%(Directory)." "%(FullPath) + %(RootDir)%(Directory)\pocomsg.rc;%(RootDir)%(Directory)\pocomsg.h;%(Outputs) + mc -h "%(RootDir)%(Directory)." -r "%(RootDir)%(Directory)." "%(FullPath) - %(RootDir)%(Directory)\pocomsg.rc;%(RootDir)%(Directory)\pocomsg.h;%(Outputs) - mc -h "%(RootDir)%(Directory)." -r "%(RootDir)%(Directory)." "%(FullPath) + %(RootDir)%(Directory)\pocomsg.rc;%(RootDir)%(Directory)\pocomsg.h;%(Outputs) + mc -h "%(RootDir)%(Directory)." -r "%(RootDir)%(Directory)." "%(FullPath) - %(RootDir)%(Directory)\pocomsg.rc;%(RootDir)%(Directory)\pocomsg.h;%(Outputs) + %(RootDir)%(Directory)\pocomsg.rc;%(RootDir)%(Directory)\pocomsg.h;%(Outputs) - true - true - true - true + true + true + true + true diff --git a/Foundation/samples/ActiveMethod/ActiveMethod_WEC2013_vs110.vcxproj b/Foundation/samples/ActiveMethod/ActiveMethod_WEC2013_vs110.vcxproj index 1712c668e..403e9aa27 100644 --- a/Foundation/samples/ActiveMethod/ActiveMethod_WEC2013_vs110.vcxproj +++ b/Foundation/samples/ActiveMethod/ActiveMethod_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - ActiveMethodd - ActiveMethodd - ActiveMethodd - ActiveMethod - ActiveMethod - ActiveMethod + ActiveMethodd + ActiveMethodd + ActiveMethodd + ActiveMethod + ActiveMethod + ActiveMethod - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/Activity/Activity_WEC2013_vs110.vcxproj b/Foundation/samples/Activity/Activity_WEC2013_vs110.vcxproj index dd0460e5d..931d4a6e5 100644 --- a/Foundation/samples/Activity/Activity_WEC2013_vs110.vcxproj +++ b/Foundation/samples/Activity/Activity_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - Activityd - Activityd - Activityd - Activity - Activity - Activity + Activityd + Activityd + Activityd + Activity + Activity + Activity - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_WEC2013_vs110.vcxproj b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_WEC2013_vs110.vcxproj index 17386e8f6..2262ba2d6 100644 --- a/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_WEC2013_vs110.vcxproj +++ b/Foundation/samples/BinaryReaderWriter/BinaryReaderWriter_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - BinaryReaderWriterd - BinaryReaderWriterd - BinaryReaderWriterd - BinaryReaderWriter - BinaryReaderWriter - BinaryReaderWriter + BinaryReaderWriterd + BinaryReaderWriterd + BinaryReaderWriterd + BinaryReaderWriter + BinaryReaderWriter + BinaryReaderWriter - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/DateTime/DateTime_WEC2013_vs110.vcxproj b/Foundation/samples/DateTime/DateTime_WEC2013_vs110.vcxproj index 8a549b70d..e45508cd8 100644 --- a/Foundation/samples/DateTime/DateTime_WEC2013_vs110.vcxproj +++ b/Foundation/samples/DateTime/DateTime_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - DateTimed - DateTimed - DateTimed - DateTime - DateTime - DateTime + DateTimed + DateTimed + DateTimed + DateTime + DateTime + DateTime - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/LogRotation/LogRotation_WEC2013_vs110.vcxproj b/Foundation/samples/LogRotation/LogRotation_WEC2013_vs110.vcxproj index 8bd544797..3ebf5f4bd 100644 --- a/Foundation/samples/LogRotation/LogRotation_WEC2013_vs110.vcxproj +++ b/Foundation/samples/LogRotation/LogRotation_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - LogRotationd - LogRotationd - LogRotationd - LogRotation - LogRotation - LogRotation + LogRotationd + LogRotationd + LogRotationd + LogRotation + LogRotation + LogRotation - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/Logger/Logger_WEC2013_vs110.vcxproj b/Foundation/samples/Logger/Logger_WEC2013_vs110.vcxproj index da8680a64..ec0242352 100644 --- a/Foundation/samples/Logger/Logger_WEC2013_vs110.vcxproj +++ b/Foundation/samples/Logger/Logger_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - Loggerd - Loggerd - Loggerd - Logger - Logger - Logger + Loggerd + Loggerd + Loggerd + Logger + Logger + Logger - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/NotificationQueue/NotificationQueue_WEC2013_vs110.vcxproj b/Foundation/samples/NotificationQueue/NotificationQueue_WEC2013_vs110.vcxproj index a19626eaf..26b125ee8 100644 --- a/Foundation/samples/NotificationQueue/NotificationQueue_WEC2013_vs110.vcxproj +++ b/Foundation/samples/NotificationQueue/NotificationQueue_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - NotificationQueued - NotificationQueued - NotificationQueued - NotificationQueue - NotificationQueue - NotificationQueue + NotificationQueued + NotificationQueued + NotificationQueued + NotificationQueue + NotificationQueue + NotificationQueue - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/StringTokenizer/StringTokenizer_WEC2013_vs110.vcxproj b/Foundation/samples/StringTokenizer/StringTokenizer_WEC2013_vs110.vcxproj index a8e81f7c7..7a9cc60b6 100644 --- a/Foundation/samples/StringTokenizer/StringTokenizer_WEC2013_vs110.vcxproj +++ b/Foundation/samples/StringTokenizer/StringTokenizer_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - StringTokenizerd - StringTokenizerd - StringTokenizerd - StringTokenizer - StringTokenizer - StringTokenizer + StringTokenizerd + StringTokenizerd + StringTokenizerd + StringTokenizer + StringTokenizer + StringTokenizer - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/Timer/Timer_WEC2013_vs110.vcxproj b/Foundation/samples/Timer/Timer_WEC2013_vs110.vcxproj index d9937a21e..5acb28ec2 100644 --- a/Foundation/samples/Timer/Timer_WEC2013_vs110.vcxproj +++ b/Foundation/samples/Timer/Timer_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - Timerd - Timerd - Timerd - Timer - Timer - Timer + Timerd + Timerd + Timerd + Timer + Timer + Timer - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/URI/URI_WEC2013_vs110.vcxproj b/Foundation/samples/URI/URI_WEC2013_vs110.vcxproj index 1f6bc72a5..62109af5e 100644 --- a/Foundation/samples/URI/URI_WEC2013_vs110.vcxproj +++ b/Foundation/samples/URI/URI_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - URId - URId - URId - URI - URI - URI + URId + URId + URId + URI + URI + URI - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/base64decode/base64decode_WEC2013_vs110.vcxproj b/Foundation/samples/base64decode/base64decode_WEC2013_vs110.vcxproj index abcc94c84..f2e7a44e6 100644 --- a/Foundation/samples/base64decode/base64decode_WEC2013_vs110.vcxproj +++ b/Foundation/samples/base64decode/base64decode_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - base64decoded - base64decoded - base64decoded - base64decode - base64decode - base64decode + base64decoded + base64decoded + base64decoded + base64decode + base64decode + base64decode - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/base64encode/base64encode_WEC2013_vs110.vcxproj b/Foundation/samples/base64encode/base64encode_WEC2013_vs110.vcxproj index 3d6913d93..2b05ca619 100644 --- a/Foundation/samples/base64encode/base64encode_WEC2013_vs110.vcxproj +++ b/Foundation/samples/base64encode/base64encode_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - base64encoded - base64encoded - base64encoded - base64encode - base64encode - base64encode + base64encoded + base64encoded + base64encoded + base64encode + base64encode + base64encode - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/deflate/deflate_WEC2013_vs110.vcxproj b/Foundation/samples/deflate/deflate_WEC2013_vs110.vcxproj index 505dce62a..b856c19f6 100644 --- a/Foundation/samples/deflate/deflate_WEC2013_vs110.vcxproj +++ b/Foundation/samples/deflate/deflate_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - deflated - deflated - deflated - deflate - deflate - deflate + deflated + deflated + deflated + deflate + deflate + deflate - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/dir/dir_WEC2013_vs110.vcxproj b/Foundation/samples/dir/dir_WEC2013_vs110.vcxproj index 9289149fe..da528acb9 100644 --- a/Foundation/samples/dir/dir_WEC2013_vs110.vcxproj +++ b/Foundation/samples/dir/dir_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - dird - dird - dird - dir - dir - dir + dird + dird + dird + dir + dir + dir - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/grep/grep_WEC2013_vs110.vcxproj b/Foundation/samples/grep/grep_WEC2013_vs110.vcxproj index a9eed0b69..9b6c87000 100644 --- a/Foundation/samples/grep/grep_WEC2013_vs110.vcxproj +++ b/Foundation/samples/grep/grep_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - grepd - grepd - grepd - grep - grep - grep + grepd + grepd + grepd + grep + grep + grep - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/hmacmd5/hmacmd5_WEC2013_vs110.vcxproj b/Foundation/samples/hmacmd5/hmacmd5_WEC2013_vs110.vcxproj index 16d24986c..62a030b92 100644 --- a/Foundation/samples/hmacmd5/hmacmd5_WEC2013_vs110.vcxproj +++ b/Foundation/samples/hmacmd5/hmacmd5_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - hmacmd5d - hmacmd5d - hmacmd5d - hmacmd5 - hmacmd5 - hmacmd5 + hmacmd5d + hmacmd5d + hmacmd5d + hmacmd5 + hmacmd5 + hmacmd5 - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/inflate/inflate_WEC2013_vs110.vcxproj b/Foundation/samples/inflate/inflate_WEC2013_vs110.vcxproj index f7c042b45..856e5f120 100644 --- a/Foundation/samples/inflate/inflate_WEC2013_vs110.vcxproj +++ b/Foundation/samples/inflate/inflate_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - inflated - inflated - inflated - inflate - inflate - inflate + inflated + inflated + inflated + inflate + inflate + inflate - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/md5/md5_WEC2013_vs110.vcxproj b/Foundation/samples/md5/md5_WEC2013_vs110.vcxproj index 58e237321..3217ef571 100644 --- a/Foundation/samples/md5/md5_WEC2013_vs110.vcxproj +++ b/Foundation/samples/md5/md5_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - md5d - md5d - md5d - md5 - md5 - md5 + md5d + md5d + md5d + md5 + md5 + md5 - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/samples/samples_WEC2013_vs110.sln b/Foundation/samples/samples_WEC2013_vs110.sln index fa968cc90..1a85b2322 100644 --- a/Foundation/samples/samples_WEC2013_vs110.sln +++ b/Foundation/samples/samples_WEC2013_vs110.sln @@ -40,356 +40,356 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "uuidgen", "uuidgen\uuidgen_ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {F8B51F16-52AE-3D43-B55B-BD62ED422C2F}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {479B938E-57EA-3332-AFD3-E7285DE4EB28}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {A1623462-1A5C-3CC2-8DCB-7E85D4EA56E8}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {6CCDAF5F-4AD1-3F87-8052-B99952B203E0}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {A5639B95-211B-36F1-994E-F05361C18EBF}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {9549D36E-CB01-3BA4-916D-0BCEA078A8AF}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {6D323430-D9E1-3173-A087-7A6E084B63CD}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {39E0E21B-10A6-3D5A-9B68-70F20C05D80A}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {C743C479-4D47-37FE-A2EB-59CDD7A627FE}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {0CC4CA42-4EEF-36C8-A426-5A047C1A2359}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {9F489D6A-175F-3754-B4E4-2B0E795D2857}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {49C1FE51-9FDB-3FA3-864F-BBE3A171BE59}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {0382A4E1-4461-391B-A8D6-A35251CD7464}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {2B9717FB-D1A8-39C2-9699-6BEF37D7DA9C}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {4238E8B1-08D7-3469-8896-2A643B585A2D}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {1F31BE50-3475-372C-ADE3-D1B97D9BA7BE}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {84150D4A-0A5A-30D5-8140-24B0F61CAF9B}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {7D649DAD-3849-3E23-9BB4-802AC60E4E98}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {5E26603C-CAE2-3AA1-8DBD-AA70BB88A862}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Foundation/samples/uuidgen/uuidgen_WEC2013_vs110.vcxproj b/Foundation/samples/uuidgen/uuidgen_WEC2013_vs110.vcxproj index 3786c7b90..9e0437dec 100644 --- a/Foundation/samples/uuidgen/uuidgen_WEC2013_vs110.vcxproj +++ b/Foundation/samples/uuidgen/uuidgen_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - uuidgend - uuidgend - uuidgend - uuidgen - uuidgen - uuidgen + uuidgend + uuidgend + uuidgend + uuidgen + uuidgen + uuidgen - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Foundation/testsuite/TestApp_WEC2013_vs110.vcxproj b/Foundation/testsuite/TestApp_WEC2013_vs110.vcxproj index af64957bb..98f617d3b 100644 --- a/Foundation/testsuite/TestApp_WEC2013_vs110.vcxproj +++ b/Foundation/testsuite/TestApp_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@  - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,36 +32,36 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 @@ -69,53 +69,53 @@ - + - + - + - + - + - + <_ProjectFileVersion>10.0.30319.1 - bin\TestApp\$(Platform)\ - obj\TestApp\$(Platform)\$(Configuration)\ - true - bin\TestApp\$(Platform)\ - obj\TestApp\$(Platform)\$(Configuration)\ - false - bin\TestApp\$(Platform)\static_md\ - obj\TestApp\$(Platform)\$(Configuration)\ - false - bin\TestApp\$(Platform)\static_md\ - obj\TestApp\$(Platform)\$(Configuration)\ - true - bin\TestApp\$(Platform)\static_mt\ - obj\TestApp\$(Platform)\$(Configuration)\ - true - bin\TestApp\$(Platform)\static_mt\ - obj\TestApp\$(Platform)\$(Configuration)\ - false - TestApp - TestAppd - TestAppd - TestAppd - TestApp - TestApp + bin\TestApp\$(Platform)\ + obj\TestApp\$(Platform)\$(Configuration)\ + true + bin\TestApp\$(Platform)\ + obj\TestApp\$(Platform)\$(Configuration)\ + false + bin\TestApp\$(Platform)\static_md\ + obj\TestApp\$(Platform)\$(Configuration)\ + false + bin\TestApp\$(Platform)\static_md\ + obj\TestApp\$(Platform)\$(Configuration)\ + true + bin\TestApp\$(Platform)\static_mt\ + obj\TestApp\$(Platform)\$(Configuration)\ + true + bin\TestApp\$(Platform)\static_mt\ + obj\TestApp\$(Platform)\$(Configuration)\ + false + TestApp + TestAppd + TestAppd + TestAppd + TestApp + TestApp - + Disabled %(AdditionalIncludeDirectories) @@ -139,7 +139,7 @@ wmainCRTStartup - + Disabled OnlyExplicitInline @@ -167,7 +167,7 @@ wmainCRTStartup - + Disabled OnlyExplicitInline @@ -195,7 +195,7 @@ wmainCRTStartup - + Disabled %(AdditionalIncludeDirectories) @@ -219,7 +219,7 @@ wmainCRTStartup - + Disabled %(AdditionalIncludeDirectories) @@ -243,7 +243,7 @@ wmainCRTStartup - + Disabled OnlyExplicitInline diff --git a/Foundation/testsuite/TestLibrary_WEC2013_vs110.vcxproj b/Foundation/testsuite/TestLibrary_WEC2013_vs110.vcxproj index 97420f74d..a8bb0d80c 100644 --- a/Foundation/testsuite/TestLibrary_WEC2013_vs110.vcxproj +++ b/Foundation/testsuite/TestLibrary_WEC2013_vs110.vcxproj @@ -1,13 +1,13 @@  - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -16,16 +16,16 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + DynamicLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 @@ -33,27 +33,27 @@ - + - + <_ProjectFileVersion>10.0.30319.1 - bin\TestLibrary\$(Platform)\ - obj\TestLibrary\$(Platform)\$(Configuration)\ - true - true - bin\TestLibrary\$(Platform)\ - obj\TestLibrary\$(Platform)\$(Configuration)\ - true - false - TestLibrary - TestLibraryd + bin\TestLibrary\$(Platform)\ + obj\TestLibrary\$(Platform)\$(Configuration)\ + true + true + bin\TestLibrary\$(Platform)\ + obj\TestLibrary\$(Platform)\$(Configuration)\ + true + false + TestLibrary + TestLibraryd - + Disabled ..\include;%(AdditionalIncludeDirectories) @@ -78,7 +78,7 @@ bin\$(Platform)\$(TargetName).pdb - + Disabled OnlyExplicitInline diff --git a/Foundation/testsuite/TestSuite_WEC2013_vs110.vcxproj b/Foundation/testsuite/TestSuite_WEC2013_vs110.vcxproj index 154211319..b6ca7b339 100644 --- a/Foundation/testsuite/TestSuite_WEC2013_vs110.vcxproj +++ b/Foundation/testsuite/TestSuite_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@  - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,36 +32,36 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 @@ -69,53 +69,53 @@ - + - + - + - + - + - + <_ProjectFileVersion>10.0.30319.1 - bin\$(Platform)\ - obj\$(Platform)\$(Configuration)\ - true - bin\$(Platform)\ - obj\$(Platform)\$(Configuration)\ - false - bin\$(Platform)\static_md\ - obj\$(Platform)\$(Configuration)\ - false - bin\$(Platform)\static_md\ - obj\$(Platform)\$(Configuration)\ - true - bin\$(Platform)\static_mt\ - obj\$(Platform)\$(Configuration)\ - true - bin\$(Platform)\static_mt\ - obj\$(Platform)\$(Configuration)\ - false - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + bin\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + true + bin\$(Platform)\ + obj\$(Platform)\$(Configuration)\ + false + bin\$(Platform)\static_md\ + obj\$(Platform)\$(Configuration)\ + false + bin\$(Platform)\static_md\ + obj\$(Platform)\$(Configuration)\ + true + bin\$(Platform)\static_mt\ + obj\$(Platform)\$(Configuration)\ + true + bin\$(Platform)\static_mt\ + obj\$(Platform)\$(Configuration)\ + false + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + Disabled ..\include;..\..\CppUnit\include;%(AdditionalIncludeDirectories) @@ -140,7 +140,7 @@ wmainCRTStartup - + Disabled OnlyExplicitInline @@ -168,7 +168,7 @@ wmainCRTStartup - + Disabled OnlyExplicitInline @@ -199,7 +199,7 @@ wmainCRTStartup - + Disabled ..\include;..\..\CppUnit\include;%(AdditionalIncludeDirectories) @@ -224,7 +224,7 @@ wmainCRTStartup - + Disabled ..\include;..\..\CppUnit\include;%(AdditionalIncludeDirectories) @@ -249,7 +249,7 @@ wmainCRTStartup - + Disabled OnlyExplicitInline diff --git a/JSON/JSON_WEC2013_vs110.sln b/JSON/JSON_WEC2013_vs110.sln index dc158a0e9..5dcbd3ca1 100644 --- a/JSON/JSON_WEC2013_vs110.sln +++ b/JSON/JSON_WEC2013_vs110.sln @@ -9,50 +9,50 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\Test EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {0E7FE914-0690-3EB4-9119-93A97CC97741}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {96CF3103-E49E-3F5E-A11D-6DBCDA043053}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/JSON/JSON_WEC2013_vs110.vcxproj b/JSON/JSON_WEC2013_vs110.vcxproj index 95fcd41ca..b0fc31494 100644 --- a/JSON/JSON_WEC2013_vs110.vcxproj +++ b/JSON/JSON_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,99 +32,99 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - PocoJSONd - PocoJSONmdd - PocoJSONmtd - PocoJSON - PocoJSONmd - PocoJSONmt + PocoJSONd + PocoJSONmdd + PocoJSONmtd + PocoJSON + PocoJSONmd + PocoJSONmt - + ..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ true true - + ..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ false true - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -148,7 +148,7 @@ WindowsCE - + Disabled true @@ -174,7 +174,7 @@ WindowsCE - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -194,7 +194,7 @@ ..\lib\$(Platform)\PocoJSONmtd.lib - + Disabled true @@ -215,7 +215,7 @@ ..\lib\$(Platform)\PocoJSONmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -235,7 +235,7 @@ ..\lib\$(Platform)\PocoJSONmdd.lib - + Disabled true diff --git a/JSON/samples/Benchmark/Benchmark_WEC2013_vs110.vcxproj b/JSON/samples/Benchmark/Benchmark_WEC2013_vs110.vcxproj index 6ca760f00..9e99eb999 100644 --- a/JSON/samples/Benchmark/Benchmark_WEC2013_vs110.vcxproj +++ b/JSON/samples/Benchmark/Benchmark_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - Benchmarkd - Benchmarkd - Benchmarkd - Benchmark - Benchmark - Benchmark + Benchmarkd + Benchmarkd + Benchmarkd + Benchmark + Benchmark + Benchmark - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\JSON\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/JSON/samples/samples_WEC2013_vs110.sln b/JSON/samples/samples_WEC2013_vs110.sln index f94018832..aec665c10 100644 --- a/JSON/samples/samples_WEC2013_vs110.sln +++ b/JSON/samples/samples_WEC2013_vs110.sln @@ -4,32 +4,32 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Benchmark", "Benchmark\Benc EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {D0381ECF-E750-32DA-8EEF-92D56B172D15}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/JSON/testsuite/TestSuite_WEC2013_vs110.vcxproj b/JSON/testsuite/TestSuite_WEC2013_vs110.vcxproj index 336a135fd..b8c2ea137 100644 --- a/JSON/testsuite/TestSuite_WEC2013_vs110.vcxproj +++ b/JSON/testsuite/TestSuite_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Win32 @@ -154,7 +154,7 @@ WindowsCE - + Win32 @@ -184,7 +184,7 @@ WindowsCE - + Win32 @@ -212,7 +212,7 @@ WindowsCE - + Win32 @@ -245,7 +245,7 @@ WindowsCE - + Win32 @@ -273,7 +273,7 @@ WindowsCE - + Win32 diff --git a/Net/Net_WEC2013_vs110.sln b/Net/Net_WEC2013_vs110.sln index 78ee05012..e4cc9b8b3 100644 --- a/Net/Net_WEC2013_vs110.sln +++ b/Net/Net_WEC2013_vs110.sln @@ -9,50 +9,50 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\Test EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {B057A1FE-09F7-465E-B8B5-E1B659051D76}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {D5EFBF27-B934-4B8D-8AE5-6EC00374819C}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Net/Net_WEC2013_vs110.vcxproj b/Net/Net_WEC2013_vs110.vcxproj index 049c2a84c..2d6032a67 100644 --- a/Net/Net_WEC2013_vs110.vcxproj +++ b/Net/Net_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,99 +32,99 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - PocoNetd - PocoNetmdd - PocoNetmtd - PocoNet - PocoNetmd - PocoNetmt + PocoNetd + PocoNetmdd + PocoNetmtd + PocoNet + PocoNetmd + PocoNetmt - + ..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ true true - + ..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ false true - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -149,7 +149,7 @@ WindowsCE - + Disabled true @@ -176,7 +176,7 @@ WindowsCE - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -196,7 +196,7 @@ ..\lib\$(Platform)\PocoNetmtd.lib - + Disabled true @@ -217,7 +217,7 @@ ..\lib\$(Platform)\PocoNetmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -237,7 +237,7 @@ ..\lib\$(Platform)\PocoNetmdd.lib - + Disabled true @@ -464,12 +464,12 @@ - true - true - true - true - true - true + true + true + true + true + true + true diff --git a/Net/samples/EchoServer/EchoServer_WEC2013_vs110.vcxproj b/Net/samples/EchoServer/EchoServer_WEC2013_vs110.vcxproj index 13ddc9906..e420963d7 100644 --- a/Net/samples/EchoServer/EchoServer_WEC2013_vs110.vcxproj +++ b/Net/samples/EchoServer/EchoServer_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - EchoServerd - EchoServerd - EchoServerd - EchoServer - EchoServer - EchoServer + EchoServerd + EchoServerd + EchoServerd + EchoServer + EchoServer + EchoServer - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Net/samples/HTTPFormServer/HTTPFormServer_WEC2013_vs110.vcxproj b/Net/samples/HTTPFormServer/HTTPFormServer_WEC2013_vs110.vcxproj index abb63e59b..916c7dabc 100644 --- a/Net/samples/HTTPFormServer/HTTPFormServer_WEC2013_vs110.vcxproj +++ b/Net/samples/HTTPFormServer/HTTPFormServer_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - HTTPFormServerd - HTTPFormServerd - HTTPFormServerd - HTTPFormServer - HTTPFormServer - HTTPFormServer + HTTPFormServerd + HTTPFormServerd + HTTPFormServerd + HTTPFormServer + HTTPFormServer + HTTPFormServer - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Net/samples/HTTPLoadTest/HTTPLoadTest_WEC2013_vs110.vcxproj b/Net/samples/HTTPLoadTest/HTTPLoadTest_WEC2013_vs110.vcxproj index 2cb213863..25a4b3ba5 100644 --- a/Net/samples/HTTPLoadTest/HTTPLoadTest_WEC2013_vs110.vcxproj +++ b/Net/samples/HTTPLoadTest/HTTPLoadTest_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - HTTPLoadTestd - HTTPLoadTestd - HTTPLoadTestd - HTTPLoadTest - HTTPLoadTest - HTTPLoadTest + HTTPLoadTestd + HTTPLoadTestd + HTTPLoadTestd + HTTPLoadTest + HTTPLoadTest + HTTPLoadTest - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Net/samples/HTTPTimeServer/HTTPTimeServer_WEC2013_vs110.vcxproj b/Net/samples/HTTPTimeServer/HTTPTimeServer_WEC2013_vs110.vcxproj index add6c152e..7fc50f61c 100644 --- a/Net/samples/HTTPTimeServer/HTTPTimeServer_WEC2013_vs110.vcxproj +++ b/Net/samples/HTTPTimeServer/HTTPTimeServer_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServerd - HTTPTimeServer - HTTPTimeServer - HTTPTimeServer + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServerd + HTTPTimeServer + HTTPTimeServer + HTTPTimeServer - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Net/samples/Mail/Mail_WEC2013_vs110.vcxproj b/Net/samples/Mail/Mail_WEC2013_vs110.vcxproj index 4914fb4cc..98543fc39 100644 --- a/Net/samples/Mail/Mail_WEC2013_vs110.vcxproj +++ b/Net/samples/Mail/Mail_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - Maild - Maild - Maild - Mail - Mail - Mail + Maild + Maild + Maild + Mail + Mail + Mail - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Net/samples/Ping/Ping_WEC2013_vs110.vcxproj b/Net/samples/Ping/Ping_WEC2013_vs110.vcxproj index 993d38f4d..386f86ca4 100644 --- a/Net/samples/Ping/Ping_WEC2013_vs110.vcxproj +++ b/Net/samples/Ping/Ping_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - Pingd - Pingd - Pingd - Ping - Ping - Ping + Pingd + Pingd + Pingd + Ping + Ping + Ping - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Net/samples/SMTPLogger/SMTPLogger_WEC2013_vs110.vcxproj b/Net/samples/SMTPLogger/SMTPLogger_WEC2013_vs110.vcxproj index 93a62b952..1e7593bea 100644 --- a/Net/samples/SMTPLogger/SMTPLogger_WEC2013_vs110.vcxproj +++ b/Net/samples/SMTPLogger/SMTPLogger_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - SMTPLoggerd - SMTPLoggerd - SMTPLoggerd - SMTPLogger - SMTPLogger - SMTPLogger + SMTPLoggerd + SMTPLoggerd + SMTPLoggerd + SMTPLogger + SMTPLogger + SMTPLogger - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Net/samples/TimeServer/TimeServer_WEC2013_vs110.vcxproj b/Net/samples/TimeServer/TimeServer_WEC2013_vs110.vcxproj index 4e735844a..47c4fc69a 100644 --- a/Net/samples/TimeServer/TimeServer_WEC2013_vs110.vcxproj +++ b/Net/samples/TimeServer/TimeServer_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - TimeServerd - TimeServerd - TimeServerd - TimeServer - TimeServer - TimeServer + TimeServerd + TimeServerd + TimeServerd + TimeServer + TimeServer + TimeServer - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Net/samples/TwitterClient/TwitterClient_WEC2013_vs110.vcxproj b/Net/samples/TwitterClient/TwitterClient_WEC2013_vs110.vcxproj index 0e201d4f5..e390691cc 100644 --- a/Net/samples/TwitterClient/TwitterClient_WEC2013_vs110.vcxproj +++ b/Net/samples/TwitterClient/TwitterClient_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - TwitterClientd - TwitterClientd - TwitterClientd - TwitterClient - TwitterClient - TwitterClient + TwitterClientd + TwitterClientd + TwitterClientd + TwitterClient + TwitterClient + TwitterClient - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ wmainCRTStartup - + Disabled true @@ -178,7 +178,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ wmainCRTStartup - + Disabled Default @@ -233,7 +233,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\JSON\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ wmainCRTStartup - + Disabled Default diff --git a/Net/samples/WebSocketServer/WebSocketServer_WEC2013_vs110.vcxproj b/Net/samples/WebSocketServer/WebSocketServer_WEC2013_vs110.vcxproj index bd97f4886..5ac135a06 100644 --- a/Net/samples/WebSocketServer/WebSocketServer_WEC2013_vs110.vcxproj +++ b/Net/samples/WebSocketServer/WebSocketServer_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - WebSocketServerd - WebSocketServerd - WebSocketServerd - WebSocketServer - WebSocketServer - WebSocketServer + WebSocketServerd + WebSocketServerd + WebSocketServerd + WebSocketServer + WebSocketServer + WebSocketServer - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ wmainCRTStartup - + Disabled true @@ -178,7 +178,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ wmainCRTStartup - + Disabled Default @@ -233,7 +233,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ wmainCRTStartup - + Disabled Default diff --git a/Net/samples/dict/dict_WEC2013_vs110.vcxproj b/Net/samples/dict/dict_WEC2013_vs110.vcxproj index 70a727590..3ec1cfc27 100644 --- a/Net/samples/dict/dict_WEC2013_vs110.vcxproj +++ b/Net/samples/dict/dict_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - dictd - dictd - dictd - dict - dict - dict + dictd + dictd + dictd + dict + dict + dict - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Net/samples/download/download_WEC2013_vs110.vcxproj b/Net/samples/download/download_WEC2013_vs110.vcxproj index 49a8dc216..725cf623e 100644 --- a/Net/samples/download/download_WEC2013_vs110.vcxproj +++ b/Net/samples/download/download_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - downloadd - downloadd - downloadd - download - download - download + downloadd + downloadd + downloadd + download + download + download - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Net/samples/httpget/httpget_WEC2013_vs110.vcxproj b/Net/samples/httpget/httpget_WEC2013_vs110.vcxproj index 2fc11d02e..9c98dcf6d 100644 --- a/Net/samples/httpget/httpget_WEC2013_vs110.vcxproj +++ b/Net/samples/httpget/httpget_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - httpgetd - httpgetd - httpgetd - httpget - httpget - httpget + httpgetd + httpgetd + httpgetd + httpget + httpget + httpget - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Net/samples/ifconfig/ifconfig_WEC2013_vs110.vcxproj b/Net/samples/ifconfig/ifconfig_WEC2013_vs110.vcxproj index 20f1d6073..88a996420 100644 --- a/Net/samples/ifconfig/ifconfig_WEC2013_vs110.vcxproj +++ b/Net/samples/ifconfig/ifconfig_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - ifconfigd - ifconfigd - ifconfigd - ifconfig - ifconfig - ifconfig + ifconfigd + ifconfigd + ifconfigd + ifconfig + ifconfig + ifconfig - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Net\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/Net/samples/samples_WEC2013_vs110.sln b/Net/samples/samples_WEC2013_vs110.sln index 0cb160e94..06ed4669b 100644 --- a/Net/samples/samples_WEC2013_vs110.sln +++ b/Net/samples/samples_WEC2013_vs110.sln @@ -28,248 +28,248 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SMTPLogger", "SMTPLogger\SM EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {90F24341-F59F-385F-A8D6-66AB377FF033}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {D853F3D6-0D6F-3E8E-82C7-4216D7A21C4D}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {5074CE3E-05F5-31BA-BA79-1AD54C3416F7}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {19B162EB-DDAA-37BA-AE93-7FDED89274DE}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {5A299876-BF4E-37B9-922D-4E6FC1FA9520}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {A140D236-D64B-370A-A7E7-3000725D9869}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {18A0143A-444A-38E3-838C-1ACFBE4EE18C}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {BF75C029-EFC9-3A0F-A8F2-8001C11D1FBA}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {154EC2E2-A1CC-3F3E-9BAA-8134DF82B0B5}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {59EDFD20-9968-30F7-9532-44C08DA58C6E}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {CCDD82BC-680D-39C0-AE25-1FBC5B615F7E}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {0DC40FE3-6C42-365E-8DAB-899C50ECFB1C}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {83E96E4E-A7E8-340B-B6D2-31B4D40D99AF}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Net/testsuite/TestSuite_WEC2013_vs110.vcxproj b/Net/testsuite/TestSuite_WEC2013_vs110.vcxproj index af3110cb1..47a8a4d29 100644 --- a/Net/testsuite/TestSuite_WEC2013_vs110.vcxproj +++ b/Net/testsuite/TestSuite_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Win32 @@ -154,7 +154,7 @@ WindowsCE - + Win32 @@ -184,7 +184,7 @@ WindowsCE - + Win32 @@ -212,7 +212,7 @@ WindowsCE - + Win32 @@ -245,7 +245,7 @@ WindowsCE - + Win32 @@ -273,7 +273,7 @@ WindowsCE - + Win32 diff --git a/SevenZip/SevenZip_WEC2013_vs110.sln b/SevenZip/SevenZip_WEC2013_vs110.sln index cd2a050a2..cae6889e9 100644 --- a/SevenZip/SevenZip_WEC2013_vs110.sln +++ b/SevenZip/SevenZip_WEC2013_vs110.sln @@ -4,32 +4,32 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SevenZip", "SevenZip_WEC201 EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/SevenZip/SevenZip_WEC2013_vs110.vcxproj b/SevenZip/SevenZip_WEC2013_vs110.vcxproj index 24f6cce2a..416ce9bb4 100644 --- a/SevenZip/SevenZip_WEC2013_vs110.vcxproj +++ b/SevenZip/SevenZip_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,99 +32,99 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - PocoSevenZipd - PocoSevenZipmdd - PocoSevenZipmtd - PocoSevenZip - PocoSevenZipmd - PocoSevenZipmt + PocoSevenZipd + PocoSevenZipmdd + PocoSevenZipmtd + PocoSevenZip + PocoSevenZipmd + PocoSevenZipmt - + ..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ true true - + ..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ false true - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -149,7 +149,7 @@ WindowsCE - + Disabled true @@ -176,7 +176,7 @@ WindowsCE - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -197,7 +197,7 @@ ..\lib\$(Platform)\PocoSevenZipmtd.lib - + Disabled true @@ -219,7 +219,7 @@ ..\lib\$(Platform)\PocoSevenZipmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -240,7 +240,7 @@ ..\lib\$(Platform)\PocoSevenZipmdd.lib - + Disabled true @@ -302,12 +302,12 @@ - true - true - true - true - true - true + true + true + true + true + true + true diff --git a/SevenZip/samples/samples_WEC2013_vs110.sln b/SevenZip/samples/samples_WEC2013_vs110.sln index bd872c3c6..5362b2af0 100644 --- a/SevenZip/samples/samples_WEC2013_vs110.sln +++ b/SevenZip/samples/samples_WEC2013_vs110.sln @@ -4,32 +4,32 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "un7zip", "un7zip\un7zip_WEC EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj b/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj index db530019b..20b3fdf7b 100644 --- a/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj +++ b/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - un7zipd - un7zipd - un7zipd - un7zip - un7zip - un7zip + un7zipd + un7zipd + un7zipd + un7zip + un7zip + un7zip - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) @@ -150,7 +150,7 @@ wmainCRTStartup - + Disabled true @@ -176,7 +176,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) @@ -201,7 +201,7 @@ wmainCRTStartup - + Disabled Default @@ -231,7 +231,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) @@ -256,7 +256,7 @@ wmainCRTStartup - + Disabled Default diff --git a/Util/Util_WEC2013_vs110.sln b/Util/Util_WEC2013_vs110.sln index 53b6fd2be..671143a37 100644 --- a/Util/Util_WEC2013_vs110.sln +++ b/Util/Util_WEC2013_vs110.sln @@ -9,50 +9,50 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\Test EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {6FF56CDB-787A-4714-A28C-919003F9FA6C}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {E40E738C-447B-40F4-A878-EBA9A2459270}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Util/Util_WEC2013_vs110.vcxproj b/Util/Util_WEC2013_vs110.vcxproj index ea07d9e75..cf6c2ecff 100644 --- a/Util/Util_WEC2013_vs110.vcxproj +++ b/Util/Util_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,99 +32,99 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - PocoUtild - PocoUtilmdd - PocoUtilmtd - PocoUtil - PocoUtilmd - PocoUtilmt + PocoUtild + PocoUtilmdd + PocoUtilmtd + PocoUtil + PocoUtilmd + PocoUtilmt - + ..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ true true - + ..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ false true - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + Disabled .\include;..\Foundation\include;..\XML\include;..\JSON\include;%(AdditionalIncludeDirectories) @@ -148,7 +148,7 @@ WindowsCE - + Disabled true @@ -174,7 +174,7 @@ WindowsCE - + Disabled .\include;..\Foundation\include;..\XML\include;..\JSON\include;%(AdditionalIncludeDirectories) @@ -194,7 +194,7 @@ ..\lib\$(Platform)\PocoUtilmtd.lib - + Disabled true @@ -215,7 +215,7 @@ ..\lib\$(Platform)\PocoUtilmt.lib - + Disabled .\include;..\Foundation\include;..\XML\include;..\JSON\include;%(AdditionalIncludeDirectories) @@ -235,7 +235,7 @@ ..\lib\$(Platform)\PocoUtilmdd.lib - + Disabled true @@ -324,12 +324,12 @@ - true - true - true - true - true - true + true + true + true + true + true + true diff --git a/Util/samples/SampleApp/SampleApp_WEC2013_vs110.vcxproj b/Util/samples/SampleApp/SampleApp_WEC2013_vs110.vcxproj index bd344a749..4f69552f1 100644 --- a/Util/samples/SampleApp/SampleApp_WEC2013_vs110.vcxproj +++ b/Util/samples/SampleApp/SampleApp_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - SampleAppd - SampleAppd - SampleAppd - SampleApp - SampleApp - SampleApp + SampleAppd + SampleAppd + SampleAppd + SampleApp + SampleApp + SampleApp - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ wmainCRTStartup - + Disabled true @@ -178,7 +178,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ wmainCRTStartup - + Disabled Default @@ -233,7 +233,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ wmainCRTStartup - + Disabled Default diff --git a/Util/samples/SampleServer/SampleServer_WEC2013_vs110.vcxproj b/Util/samples/SampleServer/SampleServer_WEC2013_vs110.vcxproj index 18c41f297..c4bb3b55d 100644 --- a/Util/samples/SampleServer/SampleServer_WEC2013_vs110.vcxproj +++ b/Util/samples/SampleServer/SampleServer_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - SampleServerd - SampleServerd - SampleServerd - SampleServer - SampleServer - SampleServer + SampleServerd + SampleServerd + SampleServerd + SampleServer + SampleServer + SampleServer - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ wmainCRTStartup - + Disabled true @@ -178,7 +178,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ wmainCRTStartup - + Disabled Default @@ -233,7 +233,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ wmainCRTStartup - + Disabled Default diff --git a/Util/samples/Units/Units_WEC2013_vs110.vcxproj b/Util/samples/Units/Units_WEC2013_vs110.vcxproj index 81c845836..c5b130ff2 100644 --- a/Util/samples/Units/Units_WEC2013_vs110.vcxproj +++ b/Util/samples/Units/Units_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - Unitsd - Unitsd - Unitsd - Units - Units - Units + Unitsd + Unitsd + Unitsd + Units + Units + Units - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -150,7 +150,7 @@ WindowsCE - + Disabled true @@ -176,7 +176,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -201,7 +201,7 @@ WindowsCE - + Disabled Default @@ -231,7 +231,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -256,7 +256,7 @@ WindowsCE - + Disabled Default diff --git a/Util/samples/pkill/pkill_WEC2013_vs110.vcxproj b/Util/samples/pkill/pkill_WEC2013_vs110.vcxproj index fe4b77272..5bcde6d17 100644 --- a/Util/samples/pkill/pkill_WEC2013_vs110.vcxproj +++ b/Util/samples/pkill/pkill_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - pkilld - pkilld - pkilld - pkill - pkill - pkill + pkilld + pkilld + pkilld + pkill + pkill + pkill - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ wmainCRTStartup - + Disabled true @@ -178,7 +178,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ wmainCRTStartup - + Disabled Default @@ -233,7 +233,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ wmainCRTStartup - + Disabled Default diff --git a/Util/samples/samples_WEC2013_vs110.sln b/Util/samples/samples_WEC2013_vs110.sln index c2886b61f..b2d77575f 100644 --- a/Util/samples/samples_WEC2013_vs110.sln +++ b/Util/samples/samples_WEC2013_vs110.sln @@ -10,86 +10,86 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Units", "Units\Units_WEC201 EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {63EDD785-29E1-3073-87EB-3CE788A4A1DE}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {C3F12C11-469F-3FB6-8C95-8638F78FF7C0}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {F475C5DD-0558-37AF-870B-666DE931B7BA}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {A6800637-61D5-39A3-86AA-E180C73D3120}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Util/testsuite/TestSuite_WEC2013_vs110.vcxproj b/Util/testsuite/TestSuite_WEC2013_vs110.vcxproj index 323888e7c..1a7c5407f 100644 --- a/Util/testsuite/TestSuite_WEC2013_vs110.vcxproj +++ b/Util/testsuite/TestSuite_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Win32 @@ -154,7 +154,7 @@ WindowsCE - + Win32 @@ -184,7 +184,7 @@ WindowsCE - + Win32 @@ -212,7 +212,7 @@ WindowsCE - + Win32 @@ -245,7 +245,7 @@ WindowsCE - + Win32 @@ -273,7 +273,7 @@ WindowsCE - + Win32 diff --git a/XML/XML_WEC2013_vs110.sln b/XML/XML_WEC2013_vs110.sln index f4f0613c0..e87d22b81 100644 --- a/XML/XML_WEC2013_vs110.sln +++ b/XML/XML_WEC2013_vs110.sln @@ -9,50 +9,50 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\Test EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {9E211743-85FE-4977-82F3-4F04B40C912D}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {C9ACF028-17A1-44C2-8C09-DFD3BD9E7D45}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/XML/XML_WEC2013_vs110.vcxproj b/XML/XML_WEC2013_vs110.vcxproj index 6ecd28755..f8e6c3985 100644 --- a/XML/XML_WEC2013_vs110.vcxproj +++ b/XML/XML_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,99 +32,99 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - PocoXMLd - PocoXMLmdd - PocoXMLmtd - PocoXML - PocoXMLmd - PocoXMLmt + PocoXMLd + PocoXMLmdd + PocoXMLmtd + PocoXML + PocoXMLmd + PocoXMLmt - + ..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ true true - + ..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ false true - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -148,7 +148,7 @@ WindowsCE - + Disabled true @@ -174,7 +174,7 @@ WindowsCE - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -194,7 +194,7 @@ ..\lib\$(Platform)\PocoXMLmtd.lib - + Disabled true @@ -215,7 +215,7 @@ ..\lib\$(Platform)\PocoXMLmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -235,7 +235,7 @@ ..\lib\$(Platform)\PocoXMLmdd.lib - + Disabled true @@ -413,28 +413,28 @@ - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true - true - true + true + true + true + true + true + true - true - true - true - true + true + true + true + true diff --git a/XML/samples/DOMParser/DOMParser_WEC2013_vs110.vcxproj b/XML/samples/DOMParser/DOMParser_WEC2013_vs110.vcxproj index 8ca99e46d..1a4ad56e6 100644 --- a/XML/samples/DOMParser/DOMParser_WEC2013_vs110.vcxproj +++ b/XML/samples/DOMParser/DOMParser_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - DOMParserd - DOMParserd - DOMParserd - DOMParser - DOMParser - DOMParser + DOMParserd + DOMParserd + DOMParserd + DOMParser + DOMParser + DOMParser - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/XML/samples/DOMWriter/DOMWriter_WEC2013_vs110.vcxproj b/XML/samples/DOMWriter/DOMWriter_WEC2013_vs110.vcxproj index f73c7cc35..7fcead181 100644 --- a/XML/samples/DOMWriter/DOMWriter_WEC2013_vs110.vcxproj +++ b/XML/samples/DOMWriter/DOMWriter_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - DOMWriterd - DOMWriterd - DOMWriterd - DOMWriter - DOMWriter - DOMWriter + DOMWriterd + DOMWriterd + DOMWriterd + DOMWriter + DOMWriter + DOMWriter - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/XML/samples/PrettyPrint/PrettyPrint_WEC2013_vs110.vcxproj b/XML/samples/PrettyPrint/PrettyPrint_WEC2013_vs110.vcxproj index bb4838b35..a8a3bde00 100644 --- a/XML/samples/PrettyPrint/PrettyPrint_WEC2013_vs110.vcxproj +++ b/XML/samples/PrettyPrint/PrettyPrint_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - PrettyPrintd - PrettyPrintd - PrettyPrintd - PrettyPrint - PrettyPrint - PrettyPrint + PrettyPrintd + PrettyPrintd + PrettyPrintd + PrettyPrint + PrettyPrint + PrettyPrint - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/XML/samples/SAXParser/SAXParser_WEC2013_vs110.vcxproj b/XML/samples/SAXParser/SAXParser_WEC2013_vs110.vcxproj index 58a4a0383..16370215c 100644 --- a/XML/samples/SAXParser/SAXParser_WEC2013_vs110.vcxproj +++ b/XML/samples/SAXParser/SAXParser_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - SAXParserd - SAXParserd - SAXParserd - SAXParser - SAXParser - SAXParser + SAXParserd + SAXParserd + SAXParserd + SAXParser + SAXParser + SAXParser - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ WindowsCE - + Disabled Default @@ -233,7 +233,7 @@ WindowsCE - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ WindowsCE - + Disabled Default diff --git a/XML/samples/samples_WEC2013_vs110.sln b/XML/samples/samples_WEC2013_vs110.sln index 6c0841245..bb5b7922d 100644 --- a/XML/samples/samples_WEC2013_vs110.sln +++ b/XML/samples/samples_WEC2013_vs110.sln @@ -10,86 +10,86 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SAXParser", "SAXParser\SAXP EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {70F2F655-67D5-32A1-A99B-D4903547DB3E}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {A3CBDFA6-6261-3C04-B1FD-51AA20763BB8}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {DFA97011-8DD4-3A84-A0C9-EB2101BD6082}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {2A54653D-9F55-348B-8F79-A3E454563AE3}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/XML/testsuite/TestSuite_WEC2013_vs110.vcxproj b/XML/testsuite/TestSuite_WEC2013_vs110.vcxproj index 407d3a45d..f450b78fe 100644 --- a/XML/testsuite/TestSuite_WEC2013_vs110.vcxproj +++ b/XML/testsuite/TestSuite_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Win32 @@ -154,7 +154,7 @@ WindowsCE - + Win32 @@ -184,7 +184,7 @@ WindowsCE - + Win32 @@ -212,7 +212,7 @@ WindowsCE - + Win32 @@ -245,7 +245,7 @@ WindowsCE - + Win32 @@ -273,7 +273,7 @@ WindowsCE - + Win32 diff --git a/Zip/Zip_WEC2013_vs110.sln b/Zip/Zip_WEC2013_vs110.sln index b9c2f3b6b..0732ed603 100644 --- a/Zip/Zip_WEC2013_vs110.sln +++ b/Zip/Zip_WEC2013_vs110.sln @@ -9,50 +9,50 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSuite", "testsuite\Test EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {4AC75EAD-BFCF-41E6-AB1F-0DA203CC7C61}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {9665FC3C-DB71-4C6C-AAEE-AAFD73CB31E7}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Zip/Zip_WEC2013_vs110.vcxproj b/Zip/Zip_WEC2013_vs110.vcxproj index 12b073578..285861a63 100644 --- a/Zip/Zip_WEC2013_vs110.vcxproj +++ b/Zip/Zip_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,99 +32,99 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + StaticLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + DynamicLibrary Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - PocoZipd - PocoZipmdd - PocoZipmtd - PocoZip - PocoZipmd - PocoZipmt + PocoZipd + PocoZipmdd + PocoZipmtd + PocoZip + PocoZipmd + PocoZipmt - + ..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ true true - + ..\bin\$(Platform)\ obj\$(Platform)\$(Configuration)\ false true - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + ..\lib\$(Platform)\ obj\$(Platform)\$(Configuration)\ - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -150,7 +150,7 @@ WindowsCE - + Disabled true @@ -178,7 +178,7 @@ WindowsCE - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -199,7 +199,7 @@ ..\lib\$(Platform)\PocoZipmtd.lib - + Disabled true @@ -221,7 +221,7 @@ ..\lib\$(Platform)\PocoZipmt.lib - + Disabled .\include;..\Foundation\include;%(AdditionalIncludeDirectories) @@ -242,7 +242,7 @@ ..\lib\$(Platform)\PocoZipmdd.lib - + Disabled true @@ -315,10 +315,10 @@ - true - true - true - true + true + true + true + true diff --git a/Zip/samples/samples_WEC2013_vs110.sln b/Zip/samples/samples_WEC2013_vs110.sln index 92d088beb..293ff868f 100644 --- a/Zip/samples/samples_WEC2013_vs110.sln +++ b/Zip/samples/samples_WEC2013_vs110.sln @@ -6,50 +6,50 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unzip", "unzip\unzip_WEC201 EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 - release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 - debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 - release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 - debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 - release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + debug_shared|SDK_AM335X_SK_WEC2013_V300 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + release_shared|SDK_AM335X_SK_WEC2013_V300 = release_shared|SDK_AM335X_SK_WEC2013_V300 + debug_static_mt|SDK_AM335X_SK_WEC2013_V300 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + release_static_mt|SDK_AM335X_SK_WEC2013_V300 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + debug_static_md|SDK_AM335X_SK_WEC2013_V300 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + release_static_md|SDK_AM335X_SK_WEC2013_V300 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 - {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {7F3AD0E5-A150-3AE7-9041-9086C45020C0}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_shared|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_shared|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_shared|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_mt|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_md|SDK_AM335X_SK_WEC2013_V300.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_md|SDK_AM335X_SK_WEC2013_V300.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013_V300 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Zip/samples/unzip/unzip_WEC2013_vs110.vcxproj b/Zip/samples/unzip/unzip_WEC2013_vs110.vcxproj index 26ade6028..8bfad8713 100644 --- a/Zip/samples/unzip/unzip_WEC2013_vs110.vcxproj +++ b/Zip/samples/unzip/unzip_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - unzipd - unzipd - unzipd - unzip - unzip - unzip + unzipd + unzipd + unzipd + unzip + unzip + unzip - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ wmainCRTStartup - + Disabled true @@ -178,7 +178,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ wmainCRTStartup - + Disabled Default @@ -233,7 +233,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ wmainCRTStartup - + Disabled Default diff --git a/Zip/samples/zip/zip_WEC2013_vs110.vcxproj b/Zip/samples/zip/zip_WEC2013_vs110.vcxproj index 0512f3805..ad0d84e2d 100644 --- a/Zip/samples/zip/zip_WEC2013_vs110.vcxproj +++ b/Zip/samples/zip/zip_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - zipd - zipd - zipd - zip - zip - zip + zipd + zipd + zipd + zip + zip + zip - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -151,7 +151,7 @@ wmainCRTStartup - + Disabled true @@ -178,7 +178,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -203,7 +203,7 @@ wmainCRTStartup - + Disabled Default @@ -233,7 +233,7 @@ wmainCRTStartup - + Disabled ..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\Zip\include;%(AdditionalIncludeDirectories) @@ -258,7 +258,7 @@ wmainCRTStartup - + Disabled Default diff --git a/Zip/testsuite/TestSuite_WEC2013_vs110.vcxproj b/Zip/testsuite/TestSuite_WEC2013_vs110.vcxproj index b7fb4d727..ab90d06c3 100644 --- a/Zip/testsuite/TestSuite_WEC2013_vs110.vcxproj +++ b/Zip/testsuite/TestSuite_WEC2013_vs110.vcxproj @@ -1,29 +1,29 @@ - + debug_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + debug_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_shared - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_md - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 - + release_static_mt - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 @@ -32,101 +32,101 @@ en-US 11.0 true - SDK_AM335X_SK_WEC2013 + SDK_AM335X_SK_WEC2013_V300 CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + Application Unicode CE800 - + - + - + - + - + - + <_ProjectFileVersion>11.0.61030.0 - TestSuited - TestSuited - TestSuited - TestSuite - TestSuite - TestSuite + TestSuited + TestSuited + TestSuited + TestSuite + TestSuite + TestSuite - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\shared\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_mt\ obj\$(Platform)\$(Configuration)\ false - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ true - + bin\$(Platform)\static_md\ obj\$(Platform)\$(Configuration)\ false - + Win32 @@ -154,7 +154,7 @@ WindowsCE - + Win32 @@ -184,7 +184,7 @@ WindowsCE - + Win32 @@ -212,7 +212,7 @@ WindowsCE - + Win32 @@ -245,7 +245,7 @@ WindowsCE - + Win32 @@ -273,7 +273,7 @@ WindowsCE - + Win32 From 89fc4631860be05fc69cfefcbf4af24ab7dfa73f Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Thu, 24 Apr 2014 21:15:54 -0500 Subject: [PATCH 35/52] tidied up build script (added pause/ctrl-c, straightened OpenSSL and MySQL environment generation, added msbuild useenv switch) --- buildwin.ps1 | 102 ++++++++++++++++++++++++++++----------------------- 1 file changed, 56 insertions(+), 46 deletions(-) diff --git a/buildwin.ps1 b/buildwin.ps1 index ab6fd3dc8..ac690826f 100644 --- a/buildwin.ps1 +++ b/buildwin.ps1 @@ -60,6 +60,15 @@ Param ) +function Add-Env-Var([string] $lib, [string] $var) +{ + if ((${Env:$var} -eq $null) -or (-not ${Env:$var}.Contains(${Env:$lib_$var"}))) + { + ${Env:$var} = ${Env:$lib_$var;$Env:$var} + } +} + + function Set-Environment { if ($poco_base -eq '') { $script:poco_base = Get-Location } @@ -79,53 +88,51 @@ function Set-Environment } } - if ($Env:POCO_BUILD_ENVIRONMENT_SET -ne "TRUE") + if ($openssl_base -eq '') { + if ($platform -eq 'x64') { $script:openssl_base = 'C:\OpenSSL-Win64' } + else { $script:openssl_base = 'C:\OpenSSL-Win32' } + } - if ($openssl_base -eq '') - { - if ($platform -eq 'x64') { $openssl_base = 'C:\OpenSSL-Win64' } - else { $openssl_base = 'C:\OpenSSL-Win32' } - } - - $Env:OPENSSL_DIR = "$openssl_base" - $Env:OPENSSL_INCLUDE = "$Env:OPENSSL_DIR\include" - $Env:OPENSSL_LIB = "$Env:OPENSSL_DIR\lib;$Env:OPENSSL_DIR\lib\VC" - $Env:INCLUDE = "$Env:INCLUDE;$Env:OPENSSL_INCLUDE" - $Env:LIB = "$Env:LIB;$Env:OPENSSL_LIB" + $Env:OPENSSL_DIR = "$openssl_base" + $Env:OPENSSL_INCLUDE = "$Env:OPENSSL_DIR\include" + $Env:OPENSSL_LIB = "$Env:OPENSSL_DIR\lib;$Env:OPENSSL_DIR\lib\VC" + Add-Env-Var "OPENSSL", "INCLUDE" + Add-Env-Var "OPENSSL", "LIB" + if ($mysql_base -ne '') + { $Env:MYSQL_DIR = "$mysql_base" $Env:MYSQL_INCLUDE = "$Env:MYSQL_DIR\include" $Env:MYSQL_LIB = "$Env:MYSQL_DIR\lib" - $Env:INCLUDE = "$Env:INCLUDE;$Env:MYSQL_INCLUDE" - $Env:LIB = "$Env:LIB;$Env:MYSQL_LIB" - - $Env:PATH = "$Env:POCO_BASE\bin64;$Env:POCO_BASE\bin;$Env:PATH" - - $vsct = "VS$($vs_version)COMNTOOLS" - $vsdir = (Get-Item Env:$vsct).Value - $Command = '' - if ($platform -eq 'x64') - { - $Command = "$($vsdir)..\..\VC\bin\x86_amd64\vcvarsx86_amd64.bat" - } - else - { - $Command = "$($vsdir)vsvars32.bat" - } - - $tempFile = [IO.Path]::GetTempFileName() - cmd /c " `"$Command`" && set > `"$tempFile`" " - Get-Content $tempFile | Foreach-Object { - if($_ -match "^(.*?)=(.*)$") - { - Set-Content "Env:$($matches[1])" $matches[2] - } - } - Remove-Item $tempFile - - $Env:POCO_BUILD_ENVIRONMENT_SET = "TRUE" + Add-Env-Var "MYSQL", "INCLUDE" + Add-Env-Var "MYSQL", "LIB" } + + if (-Not $Env:PATH.Contains("$Env:POCO_BASE\bin64;$Env:POCO_BASE\bin;")) + { $Env:PATH = "$Env:POCO_BASE\bin64;$Env:POCO_BASE\bin;$Env:PATH" } + + $vsct = "VS$($vs_version)COMNTOOLS" + $vsdir = (Get-Item Env:$vsct).Value + $Command = '' + if ($platform -eq 'x64') + { + $Command = "$($vsdir)..\..\VC\bin\x86_amd64\vcvarsx86_amd64.bat" + } + else + { + $Command = "$($vsdir)vsvars32.bat" + } + + $tempFile = [IO.Path]::GetTempFileName() + cmd /c " `"$Command`" && set > `"$tempFile`" " + Get-Content $tempFile | Foreach-Object { + if($_ -match "^(.*?)=(.*)$") + { + Set-Content "Env:$($matches[1])" $matches[2] + } + } + Remove-Item $tempFile } @@ -154,8 +161,8 @@ function Process-Input { Set-Environment - Write-Host "Building:" - Write-Host "------" + Write-Host "Build configuration:" + Write-Host "--------------------" Write-Host "Poco Base: $poco_base" Write-Host "Version: $vs_version" Write-Host "Action: $action" @@ -181,6 +188,9 @@ function Process-Input Write-Host "MySQL: $mysql_base" } + # NB: this won't work in PowerShell ISE + Write-Host "Press Ctrl-C to exit or any other key to continue ..." + $x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyUp") } } @@ -201,14 +211,14 @@ function Build-MSBuild([string] $vsProject) { $projectConfig = "$cfg" $projectConfig += "_$mode" - Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig /p:Platform=$platform" + Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig /p:Platform=$platform /p:useenv=true" } } else #config { $projectConfig = "$config" $projectConfig += "_$mode" - Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig /p:Platform=$platform" + Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig /p:Platform=$platform /p:useenv=true" } } } @@ -221,14 +231,14 @@ function Build-MSBuild([string] $vsProject) { $projectConfig = "$cfg" $projectConfig += "_$mode" - Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig /p:Platform=$platform" + Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig /p:Platform=$platform /p:useenv=true" } } else #config { $projectConfig = "$config" $projectConfig += "_$linkmode" - Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig /p:Platform=$platform" + Invoke-Expression "msbuild $vsProject /t:$action /p:Configuration=$projectConfig /p:Platform=$platform /p:useenv=true" } } } From 46b5785d98ea1b23a9135897ff1a9b73f9a10bcb Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Fri, 25 Apr 2014 23:22:54 -0500 Subject: [PATCH 36/52] - fixed PS build script environment vars generation - fixed MongoDB 64-bit std::size_t warnings - added Thread::trySleep()/wakeUp() and tests --- Foundation/include/Poco/Runnable.h | 5 +++ Foundation/include/Poco/Thread.h | 19 +++++++++ Foundation/src/Runnable.cpp | 13 ++++++ Foundation/src/Thread.cpp | 14 +++++++ Foundation/testsuite/src/ThreadTest.cpp | 55 +++++++++++++++++++++++++ Foundation/testsuite/src/ThreadTest.h | 1 + MongoDB/include/Poco/MongoDB/Message.h | 5 ++- MongoDB/src/RequestMessage.cpp | 2 +- buildwin.ps1 | 18 ++++---- 9 files changed, 122 insertions(+), 10 deletions(-) diff --git a/Foundation/include/Poco/Runnable.h b/Foundation/include/Poco/Runnable.h index 17c78b0f1..bfe78d9a7 100644 --- a/Foundation/include/Poco/Runnable.h +++ b/Foundation/include/Poco/Runnable.h @@ -58,6 +58,11 @@ public: virtual void run() = 0; /// Do whatever the thread needs to do. Must /// be overridden by subclasses. + +protected: + void sleep(long milliseconds); + + void trySleep(long milliseconds); }; diff --git a/Foundation/include/Poco/Thread.h b/Foundation/include/Poco/Thread.h index 6ddbcda00..7b5c4aeb5 100644 --- a/Foundation/include/Poco/Thread.h +++ b/Foundation/include/Poco/Thread.h @@ -41,6 +41,7 @@ #include "Poco/Foundation.h" +#include "Poco/Event.h" #include "Poco/Mutex.h" @@ -186,6 +187,23 @@ public: bool isRunning() const; /// Returns true if the thread is running. + void trySleep(long milliseconds); + /// Starts an interruptible sleep. Thread will remain suspended + /// until (a) the timeout expires or (b) wakeUp() is called. + /// The trySleep()/wakeUp() pair of fnctions should be used with + /// understanding that this suspended state is not a true sleep, + /// but rather a state of waiting for an event, with timeout + /// expiration. This in essence means that calling wakeUp() + /// before calling trySleep() will prevent the next trySleep() + /// call to actually suspend the thread (which, in some scenarios, + /// may be desirable behavior). + + void wakeUp(); + /// Wakes up the thread which is in the state of interruptible + /// sleep. For threads that are not suspended, calling this + /// function has the effect of preventing the subsequent + /// trySleep() call to put thread in a suspended state. + static void sleep(long milliseconds); /// Suspends the current thread for the specified /// amount of time. @@ -220,6 +238,7 @@ private: int _id; std::string _name; ThreadLocalStorage* _pTLS; + Event _event; mutable FastMutex _mutex; friend class ThreadLocalStorage; diff --git a/Foundation/src/Runnable.cpp b/Foundation/src/Runnable.cpp index 7b64be628..f3822ca4d 100644 --- a/Foundation/src/Runnable.cpp +++ b/Foundation/src/Runnable.cpp @@ -35,6 +35,7 @@ #include "Poco/Runnable.h" +#include "Poco/Thread.h" namespace Poco { @@ -50,4 +51,16 @@ Runnable::~Runnable() } +void Runnable::sleep(long milliseconds) +{ + Thread::sleep(milliseconds); +} + + +void Runnable::trySleep(long milliseconds) +{ + Thread::current()->trySleep(milliseconds); +} + + } // namespace Poco diff --git a/Foundation/src/Thread.cpp b/Foundation/src/Thread.cpp index d28cae59a..530feb19b 100644 --- a/Foundation/src/Thread.cpp +++ b/Foundation/src/Thread.cpp @@ -62,6 +62,7 @@ Thread::Thread(): _name(makeName()), _pTLS(0) { + _event.reset(); } @@ -70,6 +71,7 @@ Thread::Thread(const std::string& name): _name(name), _pTLS(0) { + _event.reset(); } @@ -122,6 +124,18 @@ bool Thread::tryJoin(long milliseconds) } +void Thread::trySleep(long milliseconds) +{ + _event.tryWait(milliseconds); + _event.reset(); +} + +void Thread::wakeUp() +{ + _event.set(); +} + + ThreadLocalStorage& Thread::tls() { if (!_pTLS) diff --git a/Foundation/testsuite/src/ThreadTest.cpp b/Foundation/testsuite/src/ThreadTest.cpp index 9dd20962c..7cf58cf6f 100644 --- a/Foundation/testsuite/src/ThreadTest.cpp +++ b/Foundation/testsuite/src/ThreadTest.cpp @@ -134,6 +134,33 @@ private: }; +class TrySleepRunnable : public Runnable +{ +public: + TrySleepRunnable() : _counter(0) + { + } + + void run() + { + trySleep(300000); + ++_counter; + trySleep(300000); + ++_counter; + trySleep(10); + ++_counter; + } + + int counter() const + { + return _counter; + } + +private: + int _counter; +}; + + ThreadTest::ThreadTest(const std::string& name): CppUnit::TestCase(name) { } @@ -264,6 +291,33 @@ void ThreadTest::testNotJoin() } +void ThreadTest::testTrySleep() +{ + Thread thread; + TrySleepRunnable r; + assert(!thread.isRunning()); + assert(r.counter() == 0); + thread.start(r); + assert(thread.isRunning()); + assert(r.counter() == 0); + Thread::sleep(100); + assert(r.counter() == 0); + thread.wakeUp(); + Thread::sleep(10); + assert(r.counter() == 1); + Thread::sleep(100); + assert(r.counter() == 1); + thread.wakeUp(); + Thread::sleep(10); + assert(r.counter() == 2); + Thread::sleep(100); + assert(r.counter() == 3); + assert(!thread.isRunning()); + thread.wakeUp(); + assert(!thread.isRunning()); +} + + void ThreadTest::testNotRun() { Thread thread; @@ -389,6 +443,7 @@ CppUnit::Test* ThreadTest::suite() CppUnit_addTest(pSuite, ThreadTest, testNotJoin); CppUnit_addTest(pSuite, ThreadTest, testNotRun); CppUnit_addTest(pSuite, ThreadTest, testNotRunJoin); + CppUnit_addTest(pSuite, ThreadTest, testTrySleep); CppUnit_addTest(pSuite, ThreadTest, testThreadTarget); CppUnit_addTest(pSuite, ThreadTest, testThreadFunction); CppUnit_addTest(pSuite, ThreadTest, testThreadStackSize); diff --git a/Foundation/testsuite/src/ThreadTest.h b/Foundation/testsuite/src/ThreadTest.h index a4dd3655b..159adad23 100644 --- a/Foundation/testsuite/src/ThreadTest.h +++ b/Foundation/testsuite/src/ThreadTest.h @@ -54,6 +54,7 @@ public: void testNotJoin(); void testNotRun(); void testNotRunJoin(); + void testTrySleep(); void testThreadTarget(); void testThreadFunction(); void testThreadStackSize(); diff --git a/MongoDB/include/Poco/MongoDB/Message.h b/MongoDB/include/Poco/MongoDB/Message.h index 67a67b2b7..78aa5f83a 100644 --- a/MongoDB/include/Poco/MongoDB/Message.h +++ b/MongoDB/include/Poco/MongoDB/Message.h @@ -68,7 +68,7 @@ public: protected: MessageHeader _header; - void messageLength(std::size_t length); + void messageLength(Poco::Int32 length); /// Sets the message length in the message header }; @@ -79,8 +79,9 @@ inline MessageHeader& Message::header() } -inline void Message::messageLength(std::size_t length) +inline void Message::messageLength(Poco::Int32 length) { + poco_assert(length > 0); _header.setMessageLength(length); } diff --git a/MongoDB/src/RequestMessage.cpp b/MongoDB/src/RequestMessage.cpp index 2f86a8d9f..9d78b259d 100644 --- a/MongoDB/src/RequestMessage.cpp +++ b/MongoDB/src/RequestMessage.cpp @@ -62,7 +62,7 @@ void RequestMessage::send(std::ostream& ostr) buildRequest(requestWriter); requestWriter.flush(); - messageLength(static_cast(ss.tellp())); + messageLength(static_cast(ss.tellp())); BinaryWriter socketWriter(ostr, BinaryWriter::LITTLE_ENDIAN_BYTE_ORDER); _header.write(socketWriter); diff --git a/buildwin.ps1 b/buildwin.ps1 index ac690826f..9f4a97ea6 100644 --- a/buildwin.ps1 +++ b/buildwin.ps1 @@ -64,8 +64,12 @@ function Add-Env-Var([string] $lib, [string] $var) { if ((${Env:$var} -eq $null) -or (-not ${Env:$var}.Contains(${Env:$lib_$var"}))) { - ${Env:$var} = ${Env:$lib_$var;$Env:$var} + $libvar = "$lib" + "_" + "$var" + $envvar = [Environment]::GetEnvironmentVariable($libvar, "Process") + [Environment]::SetEnvironmentVariable($var, $envvar, "Process") + $envvar = [Environment]::GetEnvironmentVariable($var, "Process") } + } @@ -88,17 +92,20 @@ function Set-Environment } } + if (-Not $Env:PATH.Contains("$Env:POCO_BASE\bin64;$Env:POCO_BASE\bin;")) + { $Env:PATH = "$Env:POCO_BASE\bin64;$Env:POCO_BASE\bin;$Env:PATH" } + if ($openssl_base -eq '') { if ($platform -eq 'x64') { $script:openssl_base = 'C:\OpenSSL-Win64' } else { $script:openssl_base = 'C:\OpenSSL-Win32' } } - + $Env:OPENSSL_DIR = "$openssl_base" $Env:OPENSSL_INCLUDE = "$Env:OPENSSL_DIR\include" $Env:OPENSSL_LIB = "$Env:OPENSSL_DIR\lib;$Env:OPENSSL_DIR\lib\VC" - Add-Env-Var "OPENSSL", "INCLUDE" - Add-Env-Var "OPENSSL", "LIB" + Add-Env-Var "OPENSSL" "INCLUDE" + Add-Env-Var "OPENSSL" "LIB" if ($mysql_base -ne '') { @@ -109,9 +116,6 @@ function Set-Environment Add-Env-Var "MYSQL", "LIB" } - if (-Not $Env:PATH.Contains("$Env:POCO_BASE\bin64;$Env:POCO_BASE\bin;")) - { $Env:PATH = "$Env:POCO_BASE\bin64;$Env:POCO_BASE\bin;$Env:PATH" } - $vsct = "VS$($vs_version)COMNTOOLS" $vsdir = (Get-Item Env:$vsct).Value $Command = '' From 0d58de8bc8e65f7874065af22ba5ae2c5ae208ec Mon Sep 17 00:00:00 2001 From: Aleksandar Fabijanic Date: Fri, 25 Apr 2014 23:54:59 -0500 Subject: [PATCH 37/52] spelling fix --- Foundation/include/Poco/Thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/include/Poco/Thread.h b/Foundation/include/Poco/Thread.h index 7b5c4aeb5..852cf77ed 100644 --- a/Foundation/include/Poco/Thread.h +++ b/Foundation/include/Poco/Thread.h @@ -190,7 +190,7 @@ public: void trySleep(long milliseconds); /// Starts an interruptible sleep. Thread will remain suspended /// until (a) the timeout expires or (b) wakeUp() is called. - /// The trySleep()/wakeUp() pair of fnctions should be used with + /// The trySleep()/wakeUp() pair of functions should be used with /// understanding that this suspended state is not a true sleep, /// but rather a state of waiting for an event, with timeout /// expiration. This in essence means that calling wakeUp() From 63850e8778be65631080c07a424be5cc2ef99719 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Sat, 26 Apr 2014 09:51:57 -0500 Subject: [PATCH 38/52] - return bool from Thread::trySleep() - updated documentiation - amended tests - updated CHANGELOG --- CHANGELOG | 19 +++++++++++++++- Foundation/include/Poco/Runnable.h | 2 +- Foundation/include/Poco/Thread.h | 29 +++++++++++++++++-------- Foundation/src/Runnable.cpp | 4 ++-- Foundation/src/Thread.cpp | 13 +++++------ Foundation/testsuite/src/ThreadTest.cpp | 26 +++++++++++++++------- 6 files changed, 65 insertions(+), 28 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index ad60900ca..f11e5c2c2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -33,10 +33,27 @@ Release 1.5.3 (2014-05-xx) - fixed GH #380: SecureSocket+DialogSocket crashes with SIGSEGV when timeout occours - Improve RSADigestEngine, using Poco::Crypto::DigestEngine to calculate hash before signing - added Poco::PBKDF2Engine +- Fixed GH #380: SecureSocket+DialogSocket crashes with SIGSEGV when timeout occours - added support for a 'Priority' attribute on cookies. - GH #386: fixed bug in MailMessage without content-transfer-encoding header - GH #384: ew hash algorithms support for RSADigestEngine - +- fixed Clock overflow bug on Windows +- Poco::ByteOrder now uses intrinsics, if available +- CMake: added /bigobj option for msvc +- Fix typo to restore Net/TestSuite_x64_vs120 build +- correct path for CONFIGURE_FILE in CMakeLists.txt +- Building Poco 1.5.2 for Synology RS812+ (Intel Atom) (honor POCO_NO_INOTIFY) +- added WEC2013 support to buildwin.cmd and buildwin.ps1 +- HTMLForm: in URL encoding, percent-encode more characters +- Fixed #include conflict with other libraries +- Poco::Net::X509Certificate::verify() no longer uses DNS reverse lookups to validate host names +- cert hostname validation is case insensitive and stricter for wildcard certificates +- TCPServer: do not reduce the capacity of the default ThreadPool +- added POCO_LOG_DEBUG flag +- Zip: fixed a crash caused by an I/O error +- added runtest script for windows +- added SQlite Full Text Search support +- added Thread::trySleep() and Thread::wakeUp() Release 1.5.2 (2013-09-16) ========================== diff --git a/Foundation/include/Poco/Runnable.h b/Foundation/include/Poco/Runnable.h index bfe78d9a7..9b2ca7da5 100644 --- a/Foundation/include/Poco/Runnable.h +++ b/Foundation/include/Poco/Runnable.h @@ -62,7 +62,7 @@ public: protected: void sleep(long milliseconds); - void trySleep(long milliseconds); + bool trySleep(long milliseconds); }; diff --git a/Foundation/include/Poco/Thread.h b/Foundation/include/Poco/Thread.h index 852cf77ed..9643022da 100644 --- a/Foundation/include/Poco/Thread.h +++ b/Foundation/include/Poco/Thread.h @@ -187,16 +187,27 @@ public: bool isRunning() const; /// Returns true if the thread is running. - void trySleep(long milliseconds); - /// Starts an interruptible sleep. Thread will remain suspended - /// until (a) the timeout expires or (b) wakeUp() is called. - /// The trySleep()/wakeUp() pair of functions should be used with - /// understanding that this suspended state is not a true sleep, + bool trySleep(long milliseconds); + /// Starts an interruptible sleep. When trySleep() is called, + /// the thread will remain suspended until: + /// - the timeout expires or + /// - wakeUp() is called + /// + /// Function returns true if sleep attempt was completed, false + /// if sleep was interrupted by a wakeUp() call. + /// A frequent scenario where trySleep()/wakeUp() pair of functions + /// is useful is with threads spending most of the time idle, + /// with periodic activity between the idle times; trying to sleep + /// (as opposed to sleeping) allows immediate ending of idle thread + /// from the outside. + /// + /// The trySleep() and wakeUp() calls should be used with + /// understanding that the suspended state is not a true sleep, /// but rather a state of waiting for an event, with timeout - /// expiration. This in essence means that calling wakeUp() - /// before calling trySleep() will prevent the next trySleep() - /// call to actually suspend the thread (which, in some scenarios, - /// may be desirable behavior). + /// expiration. This makes order of calls significantant; calling + /// wakeUp() before calling trySleep() will prevent the next + /// trySleep() call to actually suspend the thread (which, in + /// some scenarios, may be desirable behavior). void wakeUp(); /// Wakes up the thread which is in the state of interruptible diff --git a/Foundation/src/Runnable.cpp b/Foundation/src/Runnable.cpp index f3822ca4d..3d595f4af 100644 --- a/Foundation/src/Runnable.cpp +++ b/Foundation/src/Runnable.cpp @@ -57,9 +57,9 @@ void Runnable::sleep(long milliseconds) } -void Runnable::trySleep(long milliseconds) +bool Runnable::trySleep(long milliseconds) { - Thread::current()->trySleep(milliseconds); + return Thread::current()->trySleep(milliseconds); } diff --git a/Foundation/src/Thread.cpp b/Foundation/src/Thread.cpp index 530feb19b..0a46fde8f 100644 --- a/Foundation/src/Thread.cpp +++ b/Foundation/src/Thread.cpp @@ -60,18 +60,18 @@ namespace Poco { Thread::Thread(): _id(uniqueId()), _name(makeName()), - _pTLS(0) + _pTLS(0), + _event(true) { - _event.reset(); } Thread::Thread(const std::string& name): _id(uniqueId()), _name(name), - _pTLS(0) + _pTLS(0), + _event(true) { - _event.reset(); } @@ -124,10 +124,9 @@ bool Thread::tryJoin(long milliseconds) } -void Thread::trySleep(long milliseconds) +bool Thread::trySleep(long milliseconds) { - _event.tryWait(milliseconds); - _event.reset(); + return !_event.tryWait(milliseconds); } void Thread::wakeUp() diff --git a/Foundation/testsuite/src/ThreadTest.cpp b/Foundation/testsuite/src/ThreadTest.cpp index 7cf58cf6f..1d7e2d7dd 100644 --- a/Foundation/testsuite/src/ThreadTest.cpp +++ b/Foundation/testsuite/src/ThreadTest.cpp @@ -137,17 +137,17 @@ private: class TrySleepRunnable : public Runnable { public: - TrySleepRunnable() : _counter(0) + TrySleepRunnable() : _counter(0), _sleepy(true) { } void run() { - trySleep(300000); + _sleepy = !trySleep(300000); ++_counter; - trySleep(300000); + _sleepy = !trySleep(300000); ++_counter; - trySleep(10); + _sleepy = !trySleep(10); ++_counter; } @@ -156,8 +156,14 @@ public: return _counter; } + bool isSleepy() const + { + return _sleepy; + } + private: int _counter; + bool _sleepy; }; @@ -295,23 +301,27 @@ void ThreadTest::testTrySleep() { Thread thread; TrySleepRunnable r; + assert(r.isSleepy()); assert(!thread.isRunning()); assert(r.counter() == 0); thread.start(r); assert(thread.isRunning()); assert(r.counter() == 0); + assert(r.isSleepy()); Thread::sleep(100); assert(r.counter() == 0); - thread.wakeUp(); - Thread::sleep(10); + assert(r.isSleepy()); + thread.wakeUp(); Thread::sleep(10); assert(r.counter() == 1); + assert(r.isSleepy()); Thread::sleep(100); assert(r.counter() == 1); - thread.wakeUp(); - Thread::sleep(10); + thread.wakeUp(); Thread::sleep(10); assert(r.counter() == 2); + assert(r.isSleepy()); Thread::sleep(100); assert(r.counter() == 3); + assert(!r.isSleepy()); assert(!thread.isRunning()); thread.wakeUp(); assert(!thread.isRunning()); From 695ba1b0ee64ac8292227f551a46af73ac065fc1 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Sat, 26 Apr 2014 16:04:17 -0500 Subject: [PATCH 39/52] remove sleep calls from Runnable --- Foundation/include/Poco/Runnable.h | 5 ----- Foundation/include/Poco/Thread.h | 2 +- Foundation/src/Runnable.cpp | 12 ------------ Foundation/src/Thread.cpp | 5 ++++- Foundation/testsuite/src/ThreadTest.cpp | 6 +++--- 5 files changed, 8 insertions(+), 22 deletions(-) diff --git a/Foundation/include/Poco/Runnable.h b/Foundation/include/Poco/Runnable.h index 9b2ca7da5..17c78b0f1 100644 --- a/Foundation/include/Poco/Runnable.h +++ b/Foundation/include/Poco/Runnable.h @@ -58,11 +58,6 @@ public: virtual void run() = 0; /// Do whatever the thread needs to do. Must /// be overridden by subclasses. - -protected: - void sleep(long milliseconds); - - bool trySleep(long milliseconds); }; diff --git a/Foundation/include/Poco/Thread.h b/Foundation/include/Poco/Thread.h index 9643022da..6a552e6c0 100644 --- a/Foundation/include/Poco/Thread.h +++ b/Foundation/include/Poco/Thread.h @@ -187,7 +187,7 @@ public: bool isRunning() const; /// Returns true if the thread is running. - bool trySleep(long milliseconds); + static bool trySleep(long milliseconds); /// Starts an interruptible sleep. When trySleep() is called, /// the thread will remain suspended until: /// - the timeout expires or diff --git a/Foundation/src/Runnable.cpp b/Foundation/src/Runnable.cpp index 3d595f4af..2643b1738 100644 --- a/Foundation/src/Runnable.cpp +++ b/Foundation/src/Runnable.cpp @@ -51,16 +51,4 @@ Runnable::~Runnable() } -void Runnable::sleep(long milliseconds) -{ - Thread::sleep(milliseconds); -} - - -bool Runnable::trySleep(long milliseconds) -{ - return Thread::current()->trySleep(milliseconds); -} - - } // namespace Poco diff --git a/Foundation/src/Thread.cpp b/Foundation/src/Thread.cpp index 0a46fde8f..5f2c077cb 100644 --- a/Foundation/src/Thread.cpp +++ b/Foundation/src/Thread.cpp @@ -126,9 +126,12 @@ bool Thread::tryJoin(long milliseconds) bool Thread::trySleep(long milliseconds) { - return !_event.tryWait(milliseconds); + Thread* pT = Thread::current(); + poco_check_ptr(pT); + return !(pT->_event.tryWait(milliseconds)); } + void Thread::wakeUp() { _event.set(); diff --git a/Foundation/testsuite/src/ThreadTest.cpp b/Foundation/testsuite/src/ThreadTest.cpp index 1d7e2d7dd..a75e50909 100644 --- a/Foundation/testsuite/src/ThreadTest.cpp +++ b/Foundation/testsuite/src/ThreadTest.cpp @@ -143,11 +143,11 @@ public: void run() { - _sleepy = !trySleep(300000); + _sleepy = !Thread::trySleep(300000); ++_counter; - _sleepy = !trySleep(300000); + _sleepy = !Thread::trySleep(300000); ++_counter; - _sleepy = !trySleep(10); + _sleepy = !Thread::trySleep(10); ++_counter; } From d9a594e1845060cc3143f22f45f10a86e5b52094 Mon Sep 17 00:00:00 2001 From: Pascal Bach Date: Mon, 28 Apr 2014 16:14:17 +0200 Subject: [PATCH 40/52] NumberParser::parseUnsigned should not parse negative numbers The function should abort if a negative number (e.g. "-123") is passed as input --- Foundation/include/Poco/NumericString.h | 2 ++ Foundation/testsuite/src/NumberParserTest.cpp | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/Foundation/include/Poco/NumericString.h b/Foundation/include/Poco/NumericString.h index 8dc18abdb..4bb7dca35 100644 --- a/Foundation/include/Poco/NumericString.h +++ b/Foundation/include/Poco/NumericString.h @@ -110,6 +110,8 @@ bool strToInt(const char* pStr, I& result, short base, char thSep = ',') char sign = 1; if ((base == 10) && (*pStr == '-')) { + // Unsigned types can't be negative so abort parsing + if (std::numeric_limits::min() >= 0) return false; sign = -1; ++pStr; } diff --git a/Foundation/testsuite/src/NumberParserTest.cpp b/Foundation/testsuite/src/NumberParserTest.cpp index 967236263..7ee05e693 100644 --- a/Foundation/testsuite/src/NumberParserTest.cpp +++ b/Foundation/testsuite/src/NumberParserTest.cpp @@ -272,6 +272,12 @@ void NumberParserTest::testParseError() failmsg("must throw SyntaxException"); } catch (SyntaxException&) { } + try + { + NumberParser::parseUnsigned("-123"); + failmsg("must throw SyntaxException"); + } catch (SyntaxException&) { } + try { NumberParser::parseHex("z23"); From 4d366250e1f027444fb1a3a0f451041ab052c6db Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Mon, 28 Apr 2014 21:43:57 -0500 Subject: [PATCH 41/52] fixed GH #410: Bug in JSON::Object.stringify() in 1.5.2 --- CHANGELOG | 1 + JSON/include/Poco/JSON/Object.h | 2 +- JSON/src/Object.cpp | 2 +- JSON/testsuite/src/JSONTest.cpp | 21 +++++++++++++++------ 4 files changed, 18 insertions(+), 8 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index f11e5c2c2..ac4833ac7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -54,6 +54,7 @@ Release 1.5.3 (2014-05-xx) - added runtest script for windows - added SQlite Full Text Search support - added Thread::trySleep() and Thread::wakeUp() +- fixed GH #410: Bug in JSON::Object.stringify() in 1.5.2 Release 1.5.2 (2013-09-16) ========================== diff --git a/JSON/include/Poco/JSON/Object.h b/JSON/include/Poco/JSON/Object.h index 9588da40d..4e3abd2fd 100644 --- a/JSON/include/Poco/JSON/Object.h +++ b/JSON/include/Poco/JSON/Object.h @@ -246,7 +246,7 @@ private: Stringifier::stringify(getValue(it), out, indent + step, step); - if ( ++it != container.end() ) out << ','; + if (++it != container.end()) out << ','; if (step > 0) out << std::endl; } diff --git a/JSON/src/Object.cpp b/JSON/src/Object.cpp index a89e164c4..adbd77548 100644 --- a/JSON/src/Object.cpp +++ b/JSON/src/Object.cpp @@ -127,7 +127,7 @@ const std::string& Object::getKey(KeyPtrList::const_iterator& iter) const ValueMap::const_iterator end = _values.end(); for (; it != end; ++it) { - if (it->second == **iter) return it->first; + if (&it->second == *iter) return it->first; } throw NotFoundException((*iter)->convert()); diff --git a/JSON/testsuite/src/JSONTest.cpp b/JSON/testsuite/src/JSONTest.cpp index 13effb91e..db572644a 100644 --- a/JSON/testsuite/src/JSONTest.cpp +++ b/JSON/testsuite/src/JSONTest.cpp @@ -1215,12 +1215,13 @@ void JSONTest::testPrintHandler() void JSONTest::testStringify() { - Poco::JSON::Object obj; - obj.set("one","two"); - obj.stringify(std::cout,4); //this works - obj.stringify(std::cout,1); //this never returns - std::cout << std::endl; - + Object jObj(false); + jObj.set("foo", 0); + jObj.set("bar", 0); + jObj.set("baz", 0); + std::stringstream ss; + jObj.stringify(ss); + assert(ss.str() == "{\"bar\":0,\"baz\":0,\"foo\":0}"); std::string json = "{ \"Simpsons\" : { \"husband\" : { \"name\" : \"Homer\" , \"age\" : 38 }, \"wife\" : { \"name\" : \"Marge\", \"age\" : 36 }, " "\"children\" : [ \"Bart\", \"Lisa\", \"Maggie\" ], " @@ -1348,6 +1349,14 @@ void JSONTest::testStringify() void JSONTest::testStringifyPreserveOrder() { + Object jObj(true); + jObj.set("foo", 0); + jObj.set("bar", 0); + jObj.set("baz", 0); + std::stringstream ss; + jObj.stringify(ss); + assert(ss.str() == "{\"foo\":0,\"bar\":0,\"baz\":0}"); + std::string json = "{ \"Simpsons\" : { \"husband\" : { \"name\" : \"Homer\" , \"age\" : 38 }, \"wife\" : { \"name\" : \"Marge\", \"age\" : 36 }, " "\"children\" : [ \"Bart\", \"Lisa\", \"Maggie\" ], " "\"address\" : { \"number\" : 742, \"street\" : \"Evergreen Terrace\", \"town\" : \"Springfield\" } } }"; From 8c14ffe335ea2aaf0205c02fc2f734ec608a8a7b Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Tue, 29 Apr 2014 13:25:38 +0200 Subject: [PATCH 42/52] make trySleep test a bit more stable --- Foundation/testsuite/src/ThreadTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Foundation/testsuite/src/ThreadTest.cpp b/Foundation/testsuite/src/ThreadTest.cpp index a75e50909..9ae109653 100644 --- a/Foundation/testsuite/src/ThreadTest.cpp +++ b/Foundation/testsuite/src/ThreadTest.cpp @@ -147,7 +147,7 @@ public: ++_counter; _sleepy = !Thread::trySleep(300000); ++_counter; - _sleepy = !Thread::trySleep(10); + _sleepy = !Thread::trySleep(100); ++_counter; } @@ -319,7 +319,7 @@ void ThreadTest::testTrySleep() thread.wakeUp(); Thread::sleep(10); assert(r.counter() == 2); assert(r.isSleepy()); - Thread::sleep(100); + Thread::sleep(200); assert(r.counter() == 3); assert(!r.isSleepy()); assert(!thread.isRunning()); From e523441a7abeebcc59b2f940c58140d3c3262f4b Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Tue, 29 Apr 2014 11:36:26 -0700 Subject: [PATCH 43/52] cmake: added missing sources to CMakeLists.txt - fixes missing symbol errors --- Foundation/CMakeLists.txt | 1 + Foundation/testsuite/CMakeLists.txt | 1 + Net/CMakeLists.txt | 1 + 3 files changed, 3 insertions(+) diff --git a/Foundation/CMakeLists.txt b/Foundation/CMakeLists.txt index 0f6b3f69a..b41968af0 100644 --- a/Foundation/CMakeLists.txt +++ b/Foundation/CMakeLists.txt @@ -52,6 +52,7 @@ set( BASE_SRCS src/DigestEngine.cpp src/DigestStream.cpp src/DirectoryIterator.cpp + src/DirectoryIteratorStrategy.cpp src/DirectoryWatcher.cpp src/Environment.cpp src/Error.cpp diff --git a/Foundation/testsuite/CMakeLists.txt b/Foundation/testsuite/CMakeLists.txt index 3385d124a..ac354d955 100644 --- a/Foundation/testsuite/CMakeLists.txt +++ b/Foundation/testsuite/CMakeLists.txt @@ -52,6 +52,7 @@ src/HexBinaryTest.cpp src/LRUCacheTest.cpp src/LineEndingConverterTest.cpp src/LinearHashTableTest.cpp +src/ListMapTest.cpp src/LocalDateTimeTest.cpp src/LogStreamTest.cpp src/LoggerTest.cpp diff --git a/Net/CMakeLists.txt b/Net/CMakeLists.txt index 0c0e619b6..b5edd8a5a 100644 --- a/Net/CMakeLists.txt +++ b/Net/CMakeLists.txt @@ -65,6 +65,7 @@ set( BASE_SRCS src/NullPartHandler.cpp src/PartHandler.cpp src/PartSource.cpp + src/PartStore.cpp src/POP3ClientSession.cpp src/QuotedPrintableDecoder.cpp src/QuotedPrintableEncoder.cpp From 8a9e7792d943763289a0d7e08017843e89d166e3 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Tue, 29 Apr 2014 21:25:30 -0500 Subject: [PATCH 44/52] - fixed GH #362: Defect in Var::parseString when there is no space between value and newline - fixed GH #314: JSON parsing bug - added GH #313: MetaColumn additions for Data::ODBC and Data::SQLite --- CHANGELOG | 3 +++ Data/ODBC/src/ODBCMetaColumn.cpp | 1 + Data/SQLite/src/Utility.cpp | 3 +++ .../SQLite/testsuite/TestSuite_vs120.vcxproj.filters | 2 +- Foundation/src/Var.cpp | 2 +- Foundation/testsuite/src/VarTest.cpp | 12 ++++++++++-- JSON/src/ParseHandler.cpp | 4 ++-- .../data/invalid/double-closing-brace/input | 1 + .../data/invalid/double-closing-bracket/input | 1 + 9 files changed, 23 insertions(+), 6 deletions(-) create mode 100644 JSON/testsuite/data/invalid/double-closing-brace/input create mode 100644 JSON/testsuite/data/invalid/double-closing-bracket/input diff --git a/CHANGELOG b/CHANGELOG index ac4833ac7..d4c27962e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -55,6 +55,9 @@ Release 1.5.3 (2014-05-xx) - added SQlite Full Text Search support - added Thread::trySleep() and Thread::wakeUp() - fixed GH #410: Bug in JSON::Object.stringify() in 1.5.2 +- fixed GH #362: Defect in Var::parseString when there is no space between value and newline +- fixed GH #314: JSON parsing bug +- added GH #313: MetaColumn additions for Data::ODBC and Data::SQLite Release 1.5.2 (2013-09-16) ========================== diff --git a/Data/ODBC/src/ODBCMetaColumn.cpp b/Data/ODBC/src/ODBCMetaColumn.cpp index 52b0f35ec..91189b070 100644 --- a/Data/ODBC/src/ODBCMetaColumn.cpp +++ b/Data/ODBC/src/ODBCMetaColumn.cpp @@ -107,6 +107,7 @@ void ODBCMetaColumn::init() case SQL_CHAR: case SQL_VARCHAR: case SQL_LONGVARCHAR: + case -8:// PostgreSQL CHAR (with size specified - psqlODBC) case -9:// SQL Server NVARCHAR case -10:// PostgreSQL VARCHAR (without size specified) setType(MetaColumn::FDT_STRING); break; diff --git a/Data/SQLite/src/Utility.cpp b/Data/SQLite/src/Utility.cpp index 762eb3a15..01c1d8398 100644 --- a/Data/SQLite/src/Utility.cpp +++ b/Data/SQLite/src/Utility.cpp @@ -110,6 +110,9 @@ Utility::Utility() _types.insert(TypeMap::value_type("INT64", MetaColumn::FDT_INT64)); _types.insert(TypeMap::value_type("LONG", MetaColumn::FDT_INT64)); _types.insert(TypeMap::value_type("INTEGER64", MetaColumn::FDT_INT64)); + _types.insert(TypeMap::value_type("TINYINT", MetaColumn::FDT_INT8)); + _types.insert(TypeMap::value_type("SMALLINT", MetaColumn::FDT_INT16)); + _types.insert(TypeMap::value_type("BIGINT", MetaColumn::FDT_INT64)); _types.insert(TypeMap::value_type("COUNTER", MetaColumn::FDT_UINT64)); _types.insert(TypeMap::value_type("AUTOINCREMENT", MetaColumn::FDT_UINT64)); _types.insert(TypeMap::value_type("REAL", MetaColumn::FDT_DOUBLE)); diff --git a/Data/SQLite/testsuite/TestSuite_vs120.vcxproj.filters b/Data/SQLite/testsuite/TestSuite_vs120.vcxproj.filters index 27c99ed45..b5cea0b33 100644 --- a/Data/SQLite/testsuite/TestSuite_vs120.vcxproj.filters +++ b/Data/SQLite/testsuite/TestSuite_vs120.vcxproj.filters @@ -41,7 +41,7 @@ _Suite\Source Files - + _Driver\Source Files diff --git a/Foundation/src/Var.cpp b/Foundation/src/Var.cpp index ad90e08d3..1ba53baef 100644 --- a/Foundation/src/Var.cpp +++ b/Foundation/src/Var.cpp @@ -485,7 +485,7 @@ Var Var::parseArray(const std::string& val, std::string::size_type& pos) std::string Var::parseString(const std::string& val, std::string::size_type& pos) { static const std::string STR_STOP("\""); - static const std::string OTHER_STOP(" ,]}"); // we stop at space, ',', ']' or '}' + static const std::string OTHER_STOP("\n ,]}"); bool inString = false; //skip optional ' " diff --git a/Foundation/testsuite/src/VarTest.cpp b/Foundation/testsuite/src/VarTest.cpp index 5ffcd4a4f..e08a46c13 100644 --- a/Foundation/testsuite/src/VarTest.cpp +++ b/Foundation/testsuite/src/VarTest.cpp @@ -2192,10 +2192,18 @@ void VarTest::testJSONDeserializeString() assert (b.convert() == "test"); Var c('c'); - std::string tst2 = Var::toString(c); - Var b2 = Var::parse(tst2); + tst = Var::toString(c); + Var b2 = Var::parse(tst); char cc = b2.convert(); assert (cc == 'c'); + + tst = "{ \"a\" : 1, \"b\" : 2 \n}"; + a = Var::parse(tst); + assert(a.toString() == "{ \"a\" : \"1\", \"b\" : \"2\" }"); + + tst = "{ \"a\" : 1, \"b\" : 2\n}"; + a = Var::parse(tst); + assert(a.toString() == "{ \"a\" : \"1\", \"b\" : \"2\" }"); } diff --git a/JSON/src/ParseHandler.cpp b/JSON/src/ParseHandler.cpp index 5b015d90c..65ca24d72 100644 --- a/JSON/src/ParseHandler.cpp +++ b/JSON/src/ParseHandler.cpp @@ -96,7 +96,7 @@ void ParseHandler::startObject() void ParseHandler::endObject() { - _stack.pop(); + if (!_stack.empty()) _stack.pop(); } @@ -132,7 +132,7 @@ void ParseHandler::startArray() void ParseHandler::endArray() { - _stack.pop(); + if (!_stack.empty()) _stack.pop(); } diff --git a/JSON/testsuite/data/invalid/double-closing-brace/input b/JSON/testsuite/data/invalid/double-closing-brace/input new file mode 100644 index 000000000..7c65fb555 --- /dev/null +++ b/JSON/testsuite/data/invalid/double-closing-brace/input @@ -0,0 +1 @@ +{"data":"10"}} diff --git a/JSON/testsuite/data/invalid/double-closing-bracket/input b/JSON/testsuite/data/invalid/double-closing-bracket/input new file mode 100644 index 000000000..060514027 --- /dev/null +++ b/JSON/testsuite/data/invalid/double-closing-bracket/input @@ -0,0 +1 @@ +[1,2,3]] From 9553d1d2ecc2a564c11b2cfe345da0af57c1ff45 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Tue, 29 Apr 2014 22:03:52 -0500 Subject: [PATCH 45/52] GH #416: PDF::Page::createTextAnnotation bad comparison --- PDF/src/Document.cpp | 6 +++--- PDF/src/Page.cpp | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/PDF/src/Document.cpp b/PDF/src/Document.cpp index 5c9c50486..3aa2e1de2 100644 --- a/PDF/src/Document.cpp +++ b/PDF/src/Document.cpp @@ -170,9 +170,9 @@ const Font& Document::loadFont(const std::string& name, const std::string& encod const Font& Document::font(const std::string& name, const std::string& encoding) { FontContainer::iterator it = _fonts.find(name); - if (_fonts.end() == it) return loadFont(name, encoding); - - throw IllegalStateException("Could not create font."); + if (_fonts.end() != it) return it->second; + + return loadFont(name, encoding); } diff --git a/PDF/src/Page.cpp b/PDF/src/Page.cpp index 5c96c46e0..30b32148c 100644 --- a/PDF/src/Page.cpp +++ b/PDF/src/Page.cpp @@ -131,7 +131,7 @@ void Page::setRotation(int angle) const Destination& Page::createDestination(const std::string& name) { DestinationContainer::iterator it = _destinations.find(name); - if (_destinations.end() == it) + if (_destinations.end() != it) throw InvalidArgumentException("Destination already exists."); Destination dest(_pPDF, HPDF_Page_CreateDestination(_page), name); @@ -150,7 +150,7 @@ const TextAnnotation& Page::createTextAnnotation(const std::string& name, const Encoder& encoder) { TextAnnotationContainer::iterator it = _textAnnotations.find(name); - if (_textAnnotations.end() == it) + if (_textAnnotations.end() != it) throw InvalidArgumentException("Annotation already exists."); TextAnnotation ann(_pPDF, @@ -171,7 +171,7 @@ const LinkAnnotation& Page::createLinkAnnotation(const std::string& name, const Destination& dest) { LinkAnnotationContainer::iterator it = _linkAnnotations.find(name); - if (_linkAnnotations.end() == it) + if (_linkAnnotations.end() != it) throw InvalidArgumentException("Annotation already exists."); LinkAnnotation ann(_pPDF, @@ -191,7 +191,7 @@ const LinkAnnotation& Page::createURILinkAnnotation(const std::string& name, const std::string& uri) { LinkAnnotationContainer::iterator it = _linkAnnotations.find(name); - if (_linkAnnotations.end() == it) + if (_linkAnnotations.end() != it) throw InvalidArgumentException("Annotation already exists."); LinkAnnotation ann(_pPDF, From 6ec4986fb1c57573b1430e1684c2c060598c214e Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Tue, 29 Apr 2014 22:26:30 -0500 Subject: [PATCH 46/52] GH #379: Remove unnecessary null pointer checks --- Foundation/include/Poco/HashTable.h | 3 +-- JSON/src/Template.cpp | 5 +---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Foundation/include/Poco/HashTable.h b/Foundation/include/Poco/HashTable.h index 6b537062e..872e3fcbb 100644 --- a/Foundation/include/Poco/HashTable.h +++ b/Foundation/include/Poco/HashTable.h @@ -130,8 +130,7 @@ public: return; for (UInt32 i = 0; i < _maxCapacity; ++i) { - if (_entries[i]) - delete _entries[i]; + delete _entries[i]; } delete[] _entries; _entries = 0; diff --git a/JSON/src/Template.cpp b/JSON/src/Template.cpp index e24abeb3e..8884769ca 100644 --- a/JSON/src/Template.cpp +++ b/JSON/src/Template.cpp @@ -384,10 +384,7 @@ Template::Template() Template::~Template() { - if ( _parts != NULL ) - { - delete _parts; - } + delete _parts; } From 794ee36b3d16f35826cbe97ae6672ef6501d585a Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Tue, 29 Apr 2014 22:39:30 -0500 Subject: [PATCH 47/52] GH #346: Make Poco::Data::Date and Poco::Data::Time compare functions const. --- CHANGELOG | 1 + Data/include/Poco/Data/Date.h | 14 +++++++------- Data/include/Poco/Data/Time.h | 14 +++++++------- Data/src/Date.cpp | 2 +- Data/src/Time.cpp | 2 +- 5 files changed, 17 insertions(+), 16 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index d4c27962e..9a0b7f63b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -58,6 +58,7 @@ Release 1.5.3 (2014-05-xx) - fixed GH #362: Defect in Var::parseString when there is no space between value and newline - fixed GH #314: JSON parsing bug - added GH #313: MetaColumn additions for Data::ODBC and Data::SQLite +- fixed GH #346: Make Poco::Data::Date and Poco::Data::Time compare functions const. Release 1.5.2 (2013-09-16) ========================== diff --git a/Data/include/Poco/Data/Date.h b/Data/include/Poco/Data/Date.h index 876c70555..5b433892b 100644 --- a/Data/include/Poco/Data/Date.h +++ b/Data/include/Poco/Data/Date.h @@ -99,16 +99,16 @@ public: Date& operator = (const Poco::Dynamic::Var& var); /// Assignment operator for Var. - bool operator == (const Date& date); + bool operator == (const Date& date) const; /// Equality operator. - bool operator != (const Date& date); + bool operator != (const Date& date) const; /// Inequality operator. - bool operator < (const Date& date); + bool operator < (const Date& date) const; /// Less then operator. - bool operator > (const Date& date); + bool operator > (const Date& date) const; /// Greater then operator. private: @@ -153,7 +153,7 @@ inline Date& Date::operator = (const DateTime& dt) } -inline bool Date::operator == (const Date& date) +inline bool Date::operator == (const Date& date) const { return _year == date.year() && _month == date.month() && @@ -161,13 +161,13 @@ inline bool Date::operator == (const Date& date) } -inline bool Date::operator != (const Date& date) +inline bool Date::operator != (const Date& date) const { return !(*this == date); } -inline bool Date::operator > (const Date& date) +inline bool Date::operator > (const Date& date) const { return !(*this == date) && !(*this < date); } diff --git a/Data/include/Poco/Data/Time.h b/Data/include/Poco/Data/Time.h index 758e7cf94..b96d57d09 100644 --- a/Data/include/Poco/Data/Time.h +++ b/Data/include/Poco/Data/Time.h @@ -99,16 +99,16 @@ public: Time& operator = (const Poco::Dynamic::Var& var); /// Assignment operator for Var. - bool operator == (const Time& time); + bool operator == (const Time& time) const; /// Equality operator. - bool operator != (const Time& time); + bool operator != (const Time& time) const; /// Inequality operator. - bool operator < (const Time& time); + bool operator < (const Time& time) const; /// Less then operator. - bool operator > (const Time& time); + bool operator > (const Time& time) const; /// Greater then operator. private: @@ -153,7 +153,7 @@ inline Time& Time::operator = (const DateTime& dt) } -inline bool Time::operator == (const Time& time) +inline bool Time::operator == (const Time& time) const { return _hour == time.hour() && _minute == time.minute() && @@ -161,13 +161,13 @@ inline bool Time::operator == (const Time& time) } -inline bool Time::operator != (const Time& time) +inline bool Time::operator != (const Time& time) const { return !(*this == time); } -inline bool Time::operator > (const Time& time) +inline bool Time::operator > (const Time& time) const { return !(*this == time) && !(*this < time); } diff --git a/Data/src/Date.cpp b/Data/src/Date.cpp index b371e5dfe..c4d014753 100644 --- a/Data/src/Date.cpp +++ b/Data/src/Date.cpp @@ -92,7 +92,7 @@ void Date::assign(int year, int month, int day) } -bool Date::operator < (const Date& date) +bool Date::operator < (const Date& date) const { int year = date.year(); diff --git a/Data/src/Time.cpp b/Data/src/Time.cpp index e9d01082f..bd8adc247 100644 --- a/Data/src/Time.cpp +++ b/Data/src/Time.cpp @@ -89,7 +89,7 @@ void Time::assign(int hour, int minute, int second) } -bool Time::operator < (const Time& time) +bool Time::operator < (const Time& time) const { int hour = time.hour(); From ba3a8b08c5b463007f5bfeca38b61c7c1b70ee36 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Tue, 29 Apr 2014 23:06:01 -0500 Subject: [PATCH 48/52] GH #341: Compiling poco-1.5.2 for Cygwin --- CHANGELOG | 1 + Data/ODBC/ODBC.make | 15 ++++----------- Net/testsuite/src/DatagramSocketTest.cpp | 10 ++++++---- build/rules/lib | 4 ---- 4 files changed, 11 insertions(+), 19 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 9a0b7f63b..78714c032 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -59,6 +59,7 @@ Release 1.5.3 (2014-05-xx) - fixed GH #314: JSON parsing bug - added GH #313: MetaColumn additions for Data::ODBC and Data::SQLite - fixed GH #346: Make Poco::Data::Date and Poco::Data::Time compare functions const. +- fixed GH #341: Compiling poco-1.5.2 for Cygwin Release 1.5.2 (2013-09-16) ========================== diff --git a/Data/ODBC/ODBC.make b/Data/ODBC/ODBC.make index bc24f7937..81805dab1 100644 --- a/Data/ODBC/ODBC.make +++ b/Data/ODBC/ODBC.make @@ -37,21 +37,14 @@ ifeq ($(POCO_CONFIG),MinGW) # -DNOMINMAX : MIN/MAX macros defined in windows conflict with libstdc++ CXXFLAGS += -DODBCVER=0x0300 -DNOMINMAX -## -## Cygwin -## -else ifeq ($(POCO_CONFIG),CYGWIN) -# -DODBCVER=0x0300: SQLHandle declaration issue -# -DNOMINMAX : MIN/MAX macros defined in windows conflict with libstdc++ -CXXFLAGS += -DODBCVER=0x0300 -DNOMINMAX -# CYGWIN platform has its own ODBC library in /lib/w32api -SYSLIBS += -L/lib/w32api -lodbc32 -lodbccp32 - ## ## unixODBC ## else ifeq (0, $(shell test -e $(POCO_ODBC_LIB)/libodbc$(LIBLINKEXT); echo $$?)) -SYSLIBS += -lodbc -lodbcinst +SYSLIBS += -lodbc +ifeq (0, $(shell test -e $(POCO_ODBC_LIB)/libodbcinst$(LIBLINKEXT); echo $$?)) +SYSLIBS += -lodbcinst +endif COMMONFLAGS += -DPOCO_UNIXODBC ## diff --git a/Net/testsuite/src/DatagramSocketTest.cpp b/Net/testsuite/src/DatagramSocketTest.cpp index 4710f4e92..e39a322eb 100644 --- a/Net/testsuite/src/DatagramSocketTest.cpp +++ b/Net/testsuite/src/DatagramSocketTest.cpp @@ -46,7 +46,9 @@ using Poco::Net::Socket; using Poco::Net::DatagramSocket; using Poco::Net::SocketAddress; using Poco::Net::IPAddress; -using Poco::Net::NetworkInterface; +#ifdef POCO_NET_HAS_INTERFACE + using Poco::Net::NetworkInterface; +#endif using Poco::Timespan; using Poco::Stopwatch; using Poco::TimeoutException; @@ -101,11 +103,11 @@ void DatagramSocketTest::testBroadcast() UDPEchoServer echoServer; DatagramSocket ss(IPAddress::IPv4); -#if (POCO_OS != POCO_OS_FREE_BSD) - SocketAddress sa("255.255.255.255", echoServer.port()); -#else +#if defined(POCO_NET_HAS_INTERFACE) && (POCO_OS == POCO_OS_FREE_BSD) NetworkInterface ni = NetworkInterface::forName("em0"); SocketAddress sa(ni.broadcastAddress(1), echoServer.port()); +#else + SocketAddress sa("255.255.255.255", echoServer.port()); #endif // not all socket implementations fail if broadcast option is not set /* diff --git a/build/rules/lib b/build/rules/lib index d9d872940..8126f4af3 100644 --- a/build/rules/lib +++ b/build/rules/lib @@ -9,15 +9,11 @@ # # Target names # -ifeq ($(OSNAME),CYGWIN) -SHL_EXT = $(SHAREDLIBLINKEXT) -else ifdef target_version SHL_EXT = $(SHAREDLIBEXT) else SHL_EXT = $(SHAREDLIBLINKEXT) endif -endif LIB_RELEASE_STATIC = $(LIBPATH)/$(LIBPREFIX)$(target)$(OSARCH_POSTFIX).a LIB_DEBUG_STATIC = $(LIBPATH)/$(LIBPREFIX)$(target)d$(OSARCH_POSTFIX).a From 68044fdae02b44aa4f4cf5570ae7d363cf484b19 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Wed, 30 Apr 2014 22:41:05 -0500 Subject: [PATCH 49/52] GH #305: There are bugs in Buffer.h --- CHANGELOG | 1 + Foundation/include/Poco/Buffer.h | 13 ++++++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 78714c032..4d2f3850b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -60,6 +60,7 @@ Release 1.5.3 (2014-05-xx) - added GH #313: MetaColumn additions for Data::ODBC and Data::SQLite - fixed GH #346: Make Poco::Data::Date and Poco::Data::Time compare functions const. - fixed GH #341: Compiling poco-1.5.2 for Cygwin +- fixed GH #305: There are bugs in Buffer.h Release 1.5.2 (2013-09-16) ========================== diff --git a/Foundation/include/Poco/Buffer.h b/Foundation/include/Poco/Buffer.h index a3fab13d6..bc3680574 100644 --- a/Foundation/include/Poco/Buffer.h +++ b/Foundation/include/Poco/Buffer.h @@ -142,7 +142,7 @@ public: { T* ptr = new T[newCapacity]; if (preserveContent) - std::memcpy(ptr, _ptr, _used); + std::memcpy(ptr, _ptr, _used * sizeof(T)); delete [] _ptr; _ptr = ptr; @@ -171,7 +171,10 @@ public: { T* ptr = new T[newCapacity]; if (preserveContent) - std::memcpy(ptr, _ptr, _used < newCapacity ? _used : newCapacity); + { + std::size_t newSz = _used < newCapacity ? _used : newCapacity; + std::memcpy(ptr, _ptr, newSz * sizeof(T)); + } delete [] _ptr; _ptr = ptr; @@ -187,7 +190,7 @@ public: { if (0 == sz) return; if (sz > _capacity) resize(sz, false); - std::memcpy(_ptr, buf, sz); + std::memcpy(_ptr, buf, sz * sizeof(T)); _used = sz; } @@ -196,7 +199,7 @@ public: { if (0 == sz) return; resize(_used + sz, true); - std::memcpy(_ptr + _used - sz, buf, sz); + std::memcpy(_ptr + _used - sz, buf, sz * sizeof(T)); } void append(T val) @@ -241,7 +244,7 @@ public: { if (_used == other._used) { - if (std::memcmp(_ptr, other._ptr, _used) == 0) + if (std::memcmp(_ptr, other._ptr, _used * sizeof(T)) == 0) { return true; } From f9057157e861d7bf6e5bd561a0964e76ec1fe5a4 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Wed, 30 Apr 2014 22:58:28 -0500 Subject: [PATCH 50/52] GH #321: trivial build fixes (BB QNX build) --- CHANGELOG | 1 + Foundation/include/Poco/FileStream.h | 4 ++-- Foundation/include/Poco/Platform_POSIX.h | 8 ++++++++ Foundation/include/Poco/UnicodeConverter.h | 2 +- Foundation/src/LoggingFactory.cpp | 2 +- Foundation/src/RegularExpression.cpp | 1 + Foundation/src/UnicodeConverter.cpp | 4 ++-- 7 files changed, 16 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 4d2f3850b..60daef91f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -61,6 +61,7 @@ Release 1.5.3 (2014-05-xx) - fixed GH #346: Make Poco::Data::Date and Poco::Data::Time compare functions const. - fixed GH #341: Compiling poco-1.5.2 for Cygwin - fixed GH #305: There are bugs in Buffer.h +- fixed GH #321: trivial build fixes (BB QNX build) Release 1.5.2 (2013-09-16) ========================== diff --git a/Foundation/include/Poco/FileStream.h b/Foundation/include/Poco/FileStream.h index cc8638e31..3ccde04c4 100644 --- a/Foundation/include/Poco/FileStream.h +++ b/Foundation/include/Poco/FileStream.h @@ -42,9 +42,9 @@ #include "Poco/Foundation.h" #if defined(POCO_OS_FAMILY_WINDOWS) -#include "FileStream_WIN32.h" +#include "Poco/FileStream_WIN32.h" #else -#include "FileStream_POSIX.h" +#include "Poco/FileStream_POSIX.h" #endif #include #include diff --git a/Foundation/include/Poco/Platform_POSIX.h b/Foundation/include/Poco/Platform_POSIX.h index 3ebeba761..b17f040e7 100644 --- a/Foundation/include/Poco/Platform_POSIX.h +++ b/Foundation/include/Poco/Platform_POSIX.h @@ -109,4 +109,12 @@ #endif // __GNUC__ +// +// No syslog.h on QNX/BB10 +// +#if defined(__QNXNTO__) + #define POCO_NO_SYSLOGCHANNEL +#endif + + #endif // Foundation_Platform_POSIX_INCLUDED diff --git a/Foundation/include/Poco/UnicodeConverter.h b/Foundation/include/Poco/UnicodeConverter.h index dc0e43c33..71925bc49 100644 --- a/Foundation/include/Poco/UnicodeConverter.h +++ b/Foundation/include/Poco/UnicodeConverter.h @@ -129,7 +129,7 @@ public: } template - static size_t UTFStrlen(const T* ptr) + static std::size_t UTFStrlen(const T* ptr) /// Returns the length (in characters) of a zero-terminated UTF string. { if (ptr == 0) return 0; diff --git a/Foundation/src/LoggingFactory.cpp b/Foundation/src/LoggingFactory.cpp index 7c42a88ba..f2947125f 100644 --- a/Foundation/src/LoggingFactory.cpp +++ b/Foundation/src/LoggingFactory.cpp @@ -42,7 +42,7 @@ #include "Poco/FormattingChannel.h" #include "Poco/SplitterChannel.h" #include "Poco/NullChannel.h" -#if defined(POCO_OS_FAMILY_UNIX) +#if defined(POCO_OS_FAMILY_UNIX) && !defined(POCO_NO_SYSLOGCHANNEL) #include "Poco/SyslogChannel.h" #endif #if defined(POCO_OS_FAMILY_VMS) diff --git a/Foundation/src/RegularExpression.cpp b/Foundation/src/RegularExpression.cpp index ad9da8994..1ffa9e829 100644 --- a/Foundation/src/RegularExpression.cpp +++ b/Foundation/src/RegularExpression.cpp @@ -40,6 +40,7 @@ #if defined(POCO_UNBUNDLED) #include #else +#include "pcre_config.h" #include "pcre.h" #endif diff --git a/Foundation/src/UnicodeConverter.cpp b/Foundation/src/UnicodeConverter.cpp index ee5eba541..7f2b44b59 100644 --- a/Foundation/src/UnicodeConverter.cpp +++ b/Foundation/src/UnicodeConverter.cpp @@ -78,7 +78,7 @@ void UnicodeConverter::convert(const char* utf8String, std::size_t length, UTF32 void UnicodeConverter::convert(const char* utf8String, UTF32String& utf32String) { - if (!utf8String || !strlen(utf8String)) + if (!utf8String || !std::strlen(utf8String)) { utf32String.clear(); return; @@ -125,7 +125,7 @@ void UnicodeConverter::convert(const char* utf8String, std::size_t length, UTF1 void UnicodeConverter::convert(const char* utf8String, UTF16String& utf16String) { - if (!utf8String || !strlen(utf8String)) + if (!utf8String || !std::strlen(utf8String)) { utf16String.clear(); return; From 0811ca147b0355f9281778e2945e46de7d08f311 Mon Sep 17 00:00:00 2001 From: Aleksandar Fabijanic Date: Fri, 2 May 2014 20:48:35 -0500 Subject: [PATCH 51/52] remove superfluous env. var. assignment --- buildwin.ps1 | 1 - 1 file changed, 1 deletion(-) diff --git a/buildwin.ps1 b/buildwin.ps1 index 9f4a97ea6..9849638de 100644 --- a/buildwin.ps1 +++ b/buildwin.ps1 @@ -67,7 +67,6 @@ function Add-Env-Var([string] $lib, [string] $var) $libvar = "$lib" + "_" + "$var" $envvar = [Environment]::GetEnvironmentVariable($libvar, "Process") [Environment]::SetEnvironmentVariable($var, $envvar, "Process") - $envvar = [Environment]::GetEnvironmentVariable($var, "Process") } } From 628a06f718de7b58eede91ef6e152ec312749294 Mon Sep 17 00:00:00 2001 From: Roger Meier Date: Sun, 4 May 2014 21:02:42 +0200 Subject: [PATCH 52/52] LICENSE: add info about SPDX-License-Identifier usage and use it Signed-off-by: Roger Meier --- ApacheConnector/include/ApacheApplication.h | 22 +------------------ ApacheConnector/include/ApacheChannel.h | 22 +------------------ ApacheConnector/include/ApacheConnector.h | 22 +------------------ .../include/ApacheRequestHandlerFactory.h | 22 +------------------ ApacheConnector/include/ApacheServerRequest.h | 22 +------------------ .../include/ApacheServerResponse.h | 22 +------------------ ApacheConnector/include/ApacheStream.h | 22 +------------------ .../samples/FormServer/src/FormServer.cpp | 22 +------------------ .../samples/TimeServer/src/TimeServer.cpp | 22 +------------------ ApacheConnector/src/ApacheApplication.cpp | 22 +------------------ ApacheConnector/src/ApacheChannel.cpp | 22 +------------------ ApacheConnector/src/ApacheConnector.cpp | 22 +------------------ .../src/ApacheRequestHandlerFactory.cpp | 22 +------------------ ApacheConnector/src/ApacheServerRequest.cpp | 22 +------------------ ApacheConnector/src/ApacheServerResponse.cpp | 22 +------------------ ApacheConnector/src/ApacheStream.cpp | 22 +------------------ CppParser/include/Poco/CppParser/Attributes.h | 22 +------------------ .../include/Poco/CppParser/AttributesParser.h | 22 +------------------ CppParser/include/Poco/CppParser/BuiltIn.h | 22 +------------------ CppParser/include/Poco/CppParser/CppParser.h | 22 +------------------ CppParser/include/Poco/CppParser/CppToken.h | 22 +------------------ CppParser/include/Poco/CppParser/Decl.h | 22 +------------------ CppParser/include/Poco/CppParser/Enum.h | 22 +------------------ CppParser/include/Poco/CppParser/EnumValue.h | 22 +------------------ CppParser/include/Poco/CppParser/Function.h | 22 +------------------ CppParser/include/Poco/CppParser/NameSpace.h | 22 +------------------ CppParser/include/Poco/CppParser/Parameter.h | 22 +------------------ CppParser/include/Poco/CppParser/Parser.h | 22 +------------------ CppParser/include/Poco/CppParser/Struct.h | 22 +------------------ CppParser/include/Poco/CppParser/Symbol.h | 22 +------------------ CppParser/include/Poco/CppParser/Tokenizer.h | 22 +------------------ CppParser/include/Poco/CppParser/TypeDef.h | 22 +------------------ CppParser/include/Poco/CppParser/Utility.h | 22 +------------------ CppParser/include/Poco/CppParser/Variable.h | 22 +------------------ CppParser/src/Attributes.cpp | 22 +------------------ CppParser/src/AttributesParser.cpp | 22 +------------------ CppParser/src/BuiltIn.cpp | 22 +------------------ CppParser/src/CppToken.cpp | 22 +------------------ CppParser/src/Decl.cpp | 22 +------------------ CppParser/src/Enum.cpp | 22 +------------------ CppParser/src/EnumValue.cpp | 22 +------------------ CppParser/src/Function.cpp | 22 +------------------ CppParser/src/NameSpace.cpp | 22 +------------------ CppParser/src/Parameter.cpp | 22 +------------------ CppParser/src/Parser.cpp | 22 +------------------ CppParser/src/Struct.cpp | 22 +------------------ CppParser/src/Symbol.cpp | 22 +------------------ CppParser/src/Tokenizer.cpp | 22 +------------------ CppParser/src/TypeDef.cpp | 22 +------------------ CppParser/src/Utility.cpp | 22 +------------------ CppParser/src/Variable.cpp | 22 +------------------ .../testsuite/src/AttributesParserTest.cpp | 22 +------------------ .../testsuite/src/AttributesParserTest.h | 22 +------------------ .../testsuite/src/AttributesTestSuite.cpp | 22 +------------------ CppParser/testsuite/src/AttributesTestSuite.h | 22 +------------------ CppParser/testsuite/src/CppParserTest.cpp | 22 +------------------ CppParser/testsuite/src/CppParserTest.h | 22 +------------------ .../testsuite/src/CppParserTestSuite.cpp | 22 +------------------ CppParser/testsuite/src/CppParserTestSuite.h | 22 +------------------ CppParser/testsuite/src/Driver.cpp | 22 +------------------ CppParser/testsuite/src/WinDriver.cpp | 22 +------------------ Crypto/include/Poco/Crypto/Cipher.h | 22 +------------------ Crypto/include/Poco/Crypto/CipherFactory.h | 22 +------------------ Crypto/include/Poco/Crypto/CipherImpl.h | 22 +------------------ Crypto/include/Poco/Crypto/CipherKey.h | 22 +------------------ Crypto/include/Poco/Crypto/CipherKeyImpl.h | 22 +------------------ Crypto/include/Poco/Crypto/Crypto.h | 22 +------------------ Crypto/include/Poco/Crypto/CryptoStream.h | 22 +------------------ Crypto/include/Poco/Crypto/CryptoTransform.h | 22 +------------------ Crypto/include/Poco/Crypto/DigestEngine.h | 22 +------------------ .../include/Poco/Crypto/OpenSSLInitializer.h | 22 +------------------ Crypto/include/Poco/Crypto/RSACipherImpl.h | 22 +------------------ Crypto/include/Poco/Crypto/RSADigestEngine.h | 22 +------------------ Crypto/include/Poco/Crypto/RSAKey.h | 22 +------------------ Crypto/include/Poco/Crypto/RSAKeyImpl.h | 22 +------------------ Crypto/include/Poco/Crypto/X509Certificate.h | 22 +------------------ Crypto/samples/genrsakey/src/genrsakey.cpp | 22 +------------------ Crypto/src/Cipher.cpp | 22 +------------------ Crypto/src/CipherFactory.cpp | 22 +------------------ Crypto/src/CipherImpl.cpp | 22 +------------------ Crypto/src/CipherKey.cpp | 22 +------------------ Crypto/src/CipherKeyImpl.cpp | 22 +------------------ Crypto/src/CryptoStream.cpp | 22 +------------------ Crypto/src/CryptoTransform.cpp | 22 +------------------ Crypto/src/DigestEngine.cpp | 22 +------------------ Crypto/src/OpenSSLInitializer.cpp | 22 +------------------ Crypto/src/RSACipherImpl.cpp | 22 +------------------ Crypto/src/RSADigestEngine.cpp | 22 +------------------ Crypto/src/RSAKey.cpp | 22 +------------------ Crypto/src/RSAKeyImpl.cpp | 22 +------------------ Crypto/src/X509Certificate.cpp | 22 +------------------ Crypto/testsuite/src/CryptoTest.cpp | 22 +------------------ Crypto/testsuite/src/CryptoTest.h | 22 +------------------ Crypto/testsuite/src/CryptoTestSuite.cpp | 22 +------------------ Crypto/testsuite/src/CryptoTestSuite.h | 22 +------------------ Crypto/testsuite/src/DigestEngineTest.cpp | 22 +------------------ Crypto/testsuite/src/DigestEngineTest.h | 22 +------------------ Crypto/testsuite/src/Driver.cpp | 22 +------------------ Crypto/testsuite/src/RSATest.cpp | 22 +------------------ Crypto/testsuite/src/RSATest.h | 22 +------------------ Crypto/testsuite/src/WinCEDriver.cpp | 22 +------------------ Crypto/testsuite/src/WinDriver.cpp | 22 +------------------ Data/MySQL/include/Poco/Data/MySQL/Binder.h | 22 +------------------ .../MySQL/include/Poco/Data/MySQL/Connector.h | 22 +------------------ .../MySQL/include/Poco/Data/MySQL/Extractor.h | 22 +------------------ Data/MySQL/include/Poco/Data/MySQL/MySQL.h | 22 +------------------ .../include/Poco/Data/MySQL/MySQLException.h | 22 +------------------ .../Poco/Data/MySQL/MySQLStatementImpl.h | 22 +------------------ .../include/Poco/Data/MySQL/ResultMetadata.h | 22 +------------------ .../include/Poco/Data/MySQL/SessionHandle.h | 22 +------------------ .../include/Poco/Data/MySQL/SessionImpl.h | 22 +------------------ .../Poco/Data/MySQL/StatementExecutor.h | 22 +------------------ Data/MySQL/include/Poco/Data/MySQL/Utility.h | 22 +------------------ Data/MySQL/src/Binder.cpp | 22 +------------------ Data/MySQL/src/Connector.cpp | 22 +------------------ Data/MySQL/src/Extractor.cpp | 22 +------------------ Data/MySQL/src/MySQLException.cpp | 22 +------------------ Data/MySQL/src/MySQLStatementImpl.cpp | 22 +------------------ Data/MySQL/src/ResultMetadata.cpp | 22 +------------------ Data/MySQL/src/SessionHandle.cpp | 22 +------------------ Data/MySQL/src/SessionImpl.cpp | 22 +------------------ Data/MySQL/src/StatementExecutor.cpp | 22 +------------------ Data/MySQL/src/Utility.cpp | 22 +------------------ Data/MySQL/testsuite/src/Driver.cpp | 22 +------------------ Data/MySQL/testsuite/src/MySQLTest.cpp | 22 +------------------ Data/MySQL/testsuite/src/MySQLTest.h | 22 +------------------ Data/MySQL/testsuite/src/MySQLTestSuite.cpp | 22 +------------------ Data/MySQL/testsuite/src/MySQLTestSuite.h | 22 +------------------ Data/MySQL/testsuite/src/SQLExecutor.cpp | 22 +------------------ Data/MySQL/testsuite/src/SQLExecutor.h | 22 +------------------ Data/MySQL/testsuite/src/WinDriver.cpp | 22 +------------------ Data/ODBC/include/Poco/Data/ODBC/Binder.h | 22 +------------------ .../include/Poco/Data/ODBC/ConnectionHandle.h | 22 +------------------ Data/ODBC/include/Poco/Data/ODBC/Connector.h | 22 +------------------ .../ODBC/include/Poco/Data/ODBC/Diagnostics.h | 22 +------------------ .../Poco/Data/ODBC/EnvironmentHandle.h | 22 +------------------ Data/ODBC/include/Poco/Data/ODBC/Error.h | 22 +------------------ Data/ODBC/include/Poco/Data/ODBC/Extractor.h | 22 +------------------ Data/ODBC/include/Poco/Data/ODBC/Handle.h | 22 +------------------ Data/ODBC/include/Poco/Data/ODBC/ODBC.h | 22 +------------------ .../include/Poco/Data/ODBC/ODBCException.h | 22 +------------------ .../include/Poco/Data/ODBC/ODBCMetaColumn.h | 22 +------------------ .../Poco/Data/ODBC/ODBCStatementImpl.h | 22 +------------------ Data/ODBC/include/Poco/Data/ODBC/Parameter.h | 22 +------------------ Data/ODBC/include/Poco/Data/ODBC/Preparator.h | 22 +------------------ .../ODBC/include/Poco/Data/ODBC/SessionImpl.h | 22 +------------------ Data/ODBC/include/Poco/Data/ODBC/TypeInfo.h | 22 +------------------ Data/ODBC/include/Poco/Data/ODBC/Unicode.h | 22 +------------------ .../include/Poco/Data/ODBC/Unicode_UNIXODBC.h | 22 +------------------ .../include/Poco/Data/ODBC/Unicode_WIN32.h | 22 +------------------ Data/ODBC/include/Poco/Data/ODBC/Utility.h | 22 +------------------ Data/ODBC/src/Binder.cpp | 22 +------------------ Data/ODBC/src/ConnectionHandle.cpp | 22 +------------------ Data/ODBC/src/Connector.cpp | 22 +------------------ Data/ODBC/src/EnvironmentHandle.cpp | 22 +------------------ Data/ODBC/src/Extractor.cpp | 22 +------------------ Data/ODBC/src/ODBCException.cpp | 22 +------------------ Data/ODBC/src/ODBCMetaColumn.cpp | 22 +------------------ Data/ODBC/src/ODBCStatementImpl.cpp | 22 +------------------ Data/ODBC/src/Parameter.cpp | 22 +------------------ Data/ODBC/src/Preparator.cpp | 22 +------------------ Data/ODBC/src/SessionImpl.cpp | 22 +------------------ Data/ODBC/src/TypeInfo.cpp | 22 +------------------ Data/ODBC/src/Unicode.cpp | 22 +------------------ Data/ODBC/src/Unicode_UNIXODBC.cpp | 22 +------------------ Data/ODBC/src/Unicode_WIN32.cpp | 22 +------------------ Data/ODBC/src/Utility.cpp | 22 +------------------ Data/ODBC/testsuite/src/Driver.cpp | 22 +------------------ Data/ODBC/testsuite/src/ODBCAccessTest.cpp | 22 +------------------ Data/ODBC/testsuite/src/ODBCAccessTest.h | 22 +------------------ Data/ODBC/testsuite/src/ODBCDB2Test.cpp | 22 +------------------ Data/ODBC/testsuite/src/ODBCDB2Test.h | 22 +------------------ Data/ODBC/testsuite/src/ODBCMySQLTest.cpp | 22 +------------------ Data/ODBC/testsuite/src/ODBCMySQLTest.h | 22 +------------------ Data/ODBC/testsuite/src/ODBCOracleTest.cpp | 22 +------------------ Data/ODBC/testsuite/src/ODBCOracleTest.h | 22 +------------------ .../ODBC/testsuite/src/ODBCPostgreSQLTest.cpp | 22 +------------------ Data/ODBC/testsuite/src/ODBCPostgreSQLTest.h | 22 +------------------ Data/ODBC/testsuite/src/ODBCSQLServerTest.cpp | 22 +------------------ Data/ODBC/testsuite/src/ODBCSQLServerTest.h | 22 +------------------ Data/ODBC/testsuite/src/ODBCSQLiteTest.cpp | 22 +------------------ Data/ODBC/testsuite/src/ODBCSQLiteTest.h | 22 +------------------ Data/ODBC/testsuite/src/ODBCTest.cpp | 22 +------------------ Data/ODBC/testsuite/src/ODBCTest.h | 22 +------------------ Data/ODBC/testsuite/src/ODBCTestSuite.cpp | 22 +------------------ Data/ODBC/testsuite/src/ODBCTestSuite.h | 22 +------------------ Data/ODBC/testsuite/src/SQLExecutor.cpp | 22 +------------------ Data/ODBC/testsuite/src/SQLExecutor.h | 22 +------------------ Data/ODBC/testsuite/src/WinDriver.cpp | 22 +------------------ Data/SQLite/include/Poco/Data/SQLite/Binder.h | 22 +------------------ .../include/Poco/Data/SQLite/Connector.h | 22 +------------------ .../include/Poco/Data/SQLite/Extractor.h | 22 +------------------ .../include/Poco/Data/SQLite/Notifier.h | 22 +------------------ Data/SQLite/include/Poco/Data/SQLite/SQLite.h | 22 +------------------ .../Poco/Data/SQLite/SQLiteException.h | 22 +------------------ .../Poco/Data/SQLite/SQLiteStatementImpl.h | 22 +------------------ .../include/Poco/Data/SQLite/SessionImpl.h | 22 +------------------ .../SQLite/include/Poco/Data/SQLite/Utility.h | 22 +------------------ Data/SQLite/src/Binder.cpp | 22 +------------------ Data/SQLite/src/Connector.cpp | 22 +------------------ Data/SQLite/src/Extractor.cpp | 22 +------------------ Data/SQLite/src/Notifier.cpp | 22 +------------------ Data/SQLite/src/SQLiteException.cpp | 22 +------------------ Data/SQLite/src/SQLiteStatementImpl.cpp | 22 +------------------ Data/SQLite/src/SessionImpl.cpp | 22 +------------------ Data/SQLite/src/Utility.cpp | 22 +------------------ Data/SQLite/testsuite/src/Driver.cpp | 22 +------------------ Data/SQLite/testsuite/src/SQLiteTest.cpp | 22 +------------------ Data/SQLite/testsuite/src/SQLiteTest.h | 22 +------------------ Data/SQLite/testsuite/src/SQLiteTestSuite.cpp | 22 +------------------ Data/SQLite/testsuite/src/SQLiteTestSuite.h | 22 +------------------ Data/SQLite/testsuite/src/WinCEDriver.cpp | 22 +------------------ Data/SQLite/testsuite/src/WinDriver.cpp | 22 +------------------ Data/include/Poco/Data/AbstractBinder.h | 22 +------------------ Data/include/Poco/Data/AbstractBinding.h | 22 +------------------ Data/include/Poco/Data/AbstractExtraction.h | 22 +------------------ Data/include/Poco/Data/AbstractExtractor.h | 22 +------------------ Data/include/Poco/Data/AbstractPreparation.h | 22 +------------------ Data/include/Poco/Data/AbstractPreparator.h | 22 +------------------ Data/include/Poco/Data/AbstractSessionImpl.h | 22 +------------------ Data/include/Poco/Data/ArchiveStrategy.h | 22 +------------------ Data/include/Poco/Data/AutoTransaction.h | 22 +------------------ Data/include/Poco/Data/Binding.h | 22 +------------------ Data/include/Poco/Data/Bulk.h | 22 +------------------ Data/include/Poco/Data/BulkBinding.h | 22 +------------------ Data/include/Poco/Data/BulkExtraction.h | 22 +------------------ Data/include/Poco/Data/Column.h | 22 +------------------ Data/include/Poco/Data/Connector.h | 22 +------------------ Data/include/Poco/Data/Constants.h | 22 +------------------ Data/include/Poco/Data/Data.h | 22 +------------------ Data/include/Poco/Data/DataException.h | 22 +------------------ Data/include/Poco/Data/Date.h | 22 +------------------ Data/include/Poco/Data/DynamicDateTime.h | 22 +------------------ Data/include/Poco/Data/DynamicLOB.h | 22 +------------------ Data/include/Poco/Data/Extraction.h | 22 +------------------ Data/include/Poco/Data/LOB.h | 22 +------------------ Data/include/Poco/Data/LOBStream.h | 22 +------------------ Data/include/Poco/Data/Limit.h | 22 +------------------ Data/include/Poco/Data/MetaColumn.h | 22 +------------------ Data/include/Poco/Data/PooledSessionHolder.h | 22 +------------------ Data/include/Poco/Data/PooledSessionImpl.h | 22 +------------------ Data/include/Poco/Data/Position.h | 22 +------------------ Data/include/Poco/Data/Preparation.h | 22 +------------------ Data/include/Poco/Data/Range.h | 22 +------------------ Data/include/Poco/Data/RecordSet.h | 22 +------------------ Data/include/Poco/Data/Row.h | 22 +------------------ Data/include/Poco/Data/RowFilter.h | 22 +------------------ Data/include/Poco/Data/RowFormatter.h | 22 +------------------ Data/include/Poco/Data/RowIterator.h | 22 +------------------ Data/include/Poco/Data/SQLChannel.h | 22 +------------------ Data/include/Poco/Data/Session.h | 22 +------------------ Data/include/Poco/Data/SessionFactory.h | 22 +------------------ Data/include/Poco/Data/SessionImpl.h | 22 +------------------ Data/include/Poco/Data/SessionPool.h | 22 +------------------ Data/include/Poco/Data/SessionPoolContainer.h | 22 +------------------ Data/include/Poco/Data/SimpleRowFormatter.h | 22 +------------------ Data/include/Poco/Data/Statement.h | 22 +------------------ Data/include/Poco/Data/StatementCreator.h | 22 +------------------ Data/include/Poco/Data/StatementImpl.h | 22 +------------------ Data/include/Poco/Data/Time.h | 22 +------------------ Data/include/Poco/Data/Transaction.h | 22 +------------------ Data/include/Poco/Data/TypeHandler.h | 22 +------------------ Data/samples/Binding/src/Binding.cpp | 22 +------------------ Data/samples/RecordSet/src/RecordSet.cpp | 22 +------------------ .../samples/RowFormatter/src/RowFormatter.cpp | 22 +------------------ Data/samples/Tuple/src/Tuple.cpp | 22 +------------------ Data/samples/TypeHandler/src/TypeHandler.cpp | 22 +------------------ Data/samples/WebNotifier/src/WebNotifier.cpp | 22 +------------------ Data/src/AbstractBinder.cpp | 22 +------------------ Data/src/AbstractBinding.cpp | 22 +------------------ Data/src/AbstractExtraction.cpp | 22 +------------------ Data/src/AbstractExtractor.cpp | 22 +------------------ Data/src/AbstractPreparation.cpp | 22 +------------------ Data/src/AbstractPreparator.cpp | 22 +------------------ Data/src/ArchiveStrategy.cpp | 22 +------------------ Data/src/Bulk.cpp | 22 +------------------ Data/src/Connector.cpp | 22 +------------------ Data/src/DataException.cpp | 22 +------------------ Data/src/Date.cpp | 22 +------------------ Data/src/DynamicLOB.cpp | 22 +------------------ Data/src/Limit.cpp | 22 +------------------ Data/src/MetaColumn.cpp | 22 +------------------ Data/src/PooledSessionHolder.cpp | 22 +------------------ Data/src/PooledSessionImpl.cpp | 22 +------------------ Data/src/Position.cpp | 22 +------------------ Data/src/Range.cpp | 22 +------------------ Data/src/RecordSet.cpp | 22 +------------------ Data/src/Row.cpp | 22 +------------------ Data/src/RowFilter.cpp | 22 +------------------ Data/src/RowFormatter.cpp | 22 +------------------ Data/src/RowIterator.cpp | 22 +------------------ Data/src/SQLChannel.cpp | 22 +------------------ Data/src/Session.cpp | 22 +------------------ Data/src/SessionFactory.cpp | 22 +------------------ Data/src/SessionImpl.cpp | 22 +------------------ Data/src/SessionPool.cpp | 22 +------------------ Data/src/SessionPoolContainer.cpp | 22 +------------------ Data/src/SimpleRowFormatter.cpp | 22 +------------------ Data/src/Statement.cpp | 22 +------------------ Data/src/StatementCreator.cpp | 22 +------------------ Data/src/StatementImpl.cpp | 22 +------------------ Data/src/Time.cpp | 22 +------------------ Data/src/Transaction.cpp | 22 +------------------ Data/testsuite/src/Binder.cpp | 22 +------------------ Data/testsuite/src/Binder.h | 22 +------------------ Data/testsuite/src/Connector.cpp | 22 +------------------ Data/testsuite/src/Connector.h | 22 +------------------ Data/testsuite/src/DataTest.cpp | 22 +------------------ Data/testsuite/src/DataTest.h | 22 +------------------ Data/testsuite/src/DataTestSuite.cpp | 22 +------------------ Data/testsuite/src/DataTestSuite.h | 22 +------------------ Data/testsuite/src/Driver.cpp | 22 +------------------ Data/testsuite/src/Extractor.cpp | 22 +------------------ Data/testsuite/src/Extractor.h | 22 +------------------ Data/testsuite/src/Preparator.cpp | 22 +------------------ Data/testsuite/src/Preparator.h | 22 +------------------ Data/testsuite/src/SessionImpl.cpp | 22 +------------------ Data/testsuite/src/SessionImpl.h | 22 +------------------ Data/testsuite/src/SessionPoolTest.cpp | 22 +------------------ Data/testsuite/src/SessionPoolTest.h | 22 +------------------ Data/testsuite/src/StatementImpl.cpp | 22 +------------------ Data/testsuite/src/StatementImpl.h | 22 +------------------ Data/testsuite/src/TestStatementImpl.cpp | 22 +------------------ Data/testsuite/src/TestStatementImpl.h | 22 +------------------ Data/testsuite/src/WinCEDriver.cpp | 22 +------------------ Data/testsuite/src/WinDriver.cpp | 22 +------------------ Foundation/include/Poco/ASCIIEncoding.h | 22 +------------------ Foundation/include/Poco/AbstractCache.h | 22 +------------------ Foundation/include/Poco/AbstractDelegate.h | 22 +------------------ Foundation/include/Poco/AbstractEvent.h | 22 +------------------ Foundation/include/Poco/AbstractObserver.h | 22 +------------------ .../include/Poco/AbstractPriorityDelegate.h | 22 +------------------ Foundation/include/Poco/AbstractStrategy.h | 22 +------------------ .../include/Poco/AccessExpirationDecorator.h | 22 +------------------ Foundation/include/Poco/AccessExpireCache.h | 22 +------------------ .../include/Poco/AccessExpireLRUCache.h | 22 +------------------ .../include/Poco/AccessExpireStrategy.h | 22 +------------------ Foundation/include/Poco/ActiveDispatcher.h | 22 +------------------ Foundation/include/Poco/ActiveMethod.h | 22 +------------------ Foundation/include/Poco/ActiveResult.h | 22 +------------------ Foundation/include/Poco/ActiveRunnable.h | 22 +------------------ Foundation/include/Poco/ActiveStarter.h | 22 +------------------ Foundation/include/Poco/Activity.h | 22 +------------------ Foundation/include/Poco/Alignment.h | 22 +------------------ Foundation/include/Poco/Any.h | 22 +------------------ Foundation/include/Poco/ArchiveStrategy.h | 22 +------------------ Foundation/include/Poco/Array.h | 22 +------------------ Foundation/include/Poco/Ascii.h | 22 +------------------ Foundation/include/Poco/AsyncChannel.h | 22 +------------------ Foundation/include/Poco/AtomicCounter.h | 22 +------------------ Foundation/include/Poco/AutoPtr.h | 22 +------------------ Foundation/include/Poco/AutoReleasePool.h | 22 +------------------ Foundation/include/Poco/Base32Decoder.h | 22 +------------------ Foundation/include/Poco/Base32Encoder.h | 22 +------------------ Foundation/include/Poco/Base64Decoder.h | 22 +------------------ Foundation/include/Poco/Base64Encoder.h | 22 +------------------ Foundation/include/Poco/BasicEvent.h | 22 +------------------ Foundation/include/Poco/BinaryReader.h | 22 +------------------ Foundation/include/Poco/BinaryWriter.h | 22 +------------------ Foundation/include/Poco/Buffer.h | 22 +------------------ Foundation/include/Poco/BufferAllocator.h | 22 +------------------ .../Poco/BufferedBidirectionalStreamBuf.h | 22 +------------------ Foundation/include/Poco/BufferedStreamBuf.h | 22 +------------------ Foundation/include/Poco/Bugcheck.h | 22 +------------------ Foundation/include/Poco/ByteOrder.h | 22 +------------------ Foundation/include/Poco/Channel.h | 22 +------------------ Foundation/include/Poco/Checksum.h | 22 +------------------ Foundation/include/Poco/ClassLibrary.h | 22 +------------------ Foundation/include/Poco/ClassLoader.h | 22 +------------------ Foundation/include/Poco/Clock.h | 22 +------------------ Foundation/include/Poco/Condition.h | 22 +------------------ Foundation/include/Poco/Config.h | 22 +------------------ Foundation/include/Poco/Configurable.h | 22 +------------------ Foundation/include/Poco/ConsoleChannel.h | 22 +------------------ Foundation/include/Poco/CountingStream.h | 22 +------------------ Foundation/include/Poco/DateTime.h | 22 +------------------ Foundation/include/Poco/DateTimeFormat.h | 22 +------------------ Foundation/include/Poco/DateTimeFormatter.h | 22 +------------------ Foundation/include/Poco/DateTimeParser.h | 22 +------------------ Foundation/include/Poco/Debugger.h | 22 +------------------ Foundation/include/Poco/DefaultStrategy.h | 22 +------------------ Foundation/include/Poco/DeflatingStream.h | 22 +------------------ Foundation/include/Poco/Delegate.h | 22 +------------------ Foundation/include/Poco/DigestEngine.h | 22 +------------------ Foundation/include/Poco/DigestStream.h | 22 +------------------ Foundation/include/Poco/DirectoryIterator.h | 22 +------------------ .../include/Poco/DirectoryIteratorStrategy.h | 22 +------------------ .../include/Poco/DirectoryIterator_UNIX.h | 22 +------------------ .../include/Poco/DirectoryIterator_VMS.h | 22 +------------------ .../include/Poco/DirectoryIterator_WIN32.h | 22 +------------------ .../include/Poco/DirectoryIterator_WIN32U.h | 22 +------------------ Foundation/include/Poco/DirectoryWatcher.h | 22 +------------------ Foundation/include/Poco/Dynamic/Pair.h | 22 +------------------ Foundation/include/Poco/Dynamic/Struct.h | 22 +------------------ Foundation/include/Poco/Dynamic/Var.h | 22 +------------------ Foundation/include/Poco/Dynamic/VarHolder.h | 22 +------------------ Foundation/include/Poco/Dynamic/VarIterator.h | 22 +------------------ Foundation/include/Poco/DynamicAny.h | 22 +------------------ Foundation/include/Poco/DynamicAnyHolder.h | 22 +------------------ Foundation/include/Poco/DynamicFactory.h | 22 +------------------ Foundation/include/Poco/DynamicStruct.h | 22 +------------------ Foundation/include/Poco/Environment.h | 22 +------------------ Foundation/include/Poco/Environment_UNIX.h | 22 +------------------ Foundation/include/Poco/Environment_VMS.h | 22 +------------------ Foundation/include/Poco/Environment_VX.h | 22 +------------------ Foundation/include/Poco/Environment_WIN32.h | 22 +------------------ Foundation/include/Poco/Environment_WIN32U.h | 22 +------------------ Foundation/include/Poco/Environment_WINCE.h | 22 +------------------ Foundation/include/Poco/Error.h | 22 +------------------ Foundation/include/Poco/ErrorHandler.h | 22 +------------------ Foundation/include/Poco/Event.h | 22 +------------------ Foundation/include/Poco/EventArgs.h | 22 +------------------ Foundation/include/Poco/EventLogChannel.h | 22 +------------------ Foundation/include/Poco/Event_POSIX.h | 22 +------------------ Foundation/include/Poco/Event_VX.h | 22 +------------------ Foundation/include/Poco/Event_WIN32.h | 22 +------------------ Foundation/include/Poco/Exception.h | 22 +------------------ Foundation/include/Poco/ExpirationDecorator.h | 22 +------------------ Foundation/include/Poco/Expire.h | 22 +------------------ Foundation/include/Poco/ExpireCache.h | 22 +------------------ Foundation/include/Poco/ExpireLRUCache.h | 22 +------------------ Foundation/include/Poco/ExpireStrategy.h | 22 +------------------ Foundation/include/Poco/FIFOBuffer.h | 22 +------------------ Foundation/include/Poco/FIFOBufferStream.h | 22 +------------------ Foundation/include/Poco/FIFOEvent.h | 22 +------------------ Foundation/include/Poco/FIFOStrategy.h | 22 +------------------ Foundation/include/Poco/FPEnvironment.h | 22 +------------------ Foundation/include/Poco/FPEnvironment_C99.h | 22 +------------------ Foundation/include/Poco/FPEnvironment_DEC.h | 22 +------------------ Foundation/include/Poco/FPEnvironment_DUMMY.h | 22 +------------------ Foundation/include/Poco/FPEnvironment_SUN.h | 22 +------------------ Foundation/include/Poco/FPEnvironment_WIN32.h | 22 +------------------ Foundation/include/Poco/File.h | 22 +------------------ Foundation/include/Poco/FileChannel.h | 22 +------------------ Foundation/include/Poco/FileStream.h | 22 +------------------ Foundation/include/Poco/FileStreamFactory.h | 22 +------------------ Foundation/include/Poco/FileStream_POSIX.h | 22 +------------------ Foundation/include/Poco/FileStream_WIN32.h | 22 +------------------ Foundation/include/Poco/File_UNIX.h | 22 +------------------ Foundation/include/Poco/File_VMS.h | 22 +------------------ Foundation/include/Poco/File_VX.h | 22 +------------------ Foundation/include/Poco/File_WIN32.h | 22 +------------------ Foundation/include/Poco/File_WIN32U.h | 22 +------------------ Foundation/include/Poco/File_WINCE.h | 22 +------------------ Foundation/include/Poco/Format.h | 22 +------------------ Foundation/include/Poco/Formatter.h | 22 +------------------ Foundation/include/Poco/FormattingChannel.h | 22 +------------------ Foundation/include/Poco/Foundation.h | 22 +------------------ Foundation/include/Poco/FunctionDelegate.h | 22 +------------------ .../include/Poco/FunctionPriorityDelegate.h | 22 +------------------ Foundation/include/Poco/Glob.h | 22 +------------------ Foundation/include/Poco/HMACEngine.h | 22 +------------------ Foundation/include/Poco/Hash.h | 22 +------------------ Foundation/include/Poco/HashFunction.h | 22 +------------------ Foundation/include/Poco/HashMap.h | 22 +------------------ Foundation/include/Poco/HashSet.h | 22 +------------------ Foundation/include/Poco/HashStatistic.h | 22 +------------------ Foundation/include/Poco/HashTable.h | 22 +------------------ Foundation/include/Poco/HexBinaryDecoder.h | 22 +------------------ Foundation/include/Poco/HexBinaryEncoder.h | 22 +------------------ Foundation/include/Poco/InflatingStream.h | 22 +------------------ Foundation/include/Poco/Instantiator.h | 22 +------------------ Foundation/include/Poco/KeyValueArgs.h | 22 +------------------ Foundation/include/Poco/LRUCache.h | 22 +------------------ Foundation/include/Poco/LRUStrategy.h | 22 +------------------ Foundation/include/Poco/Latin1Encoding.h | 22 +------------------ Foundation/include/Poco/Latin2Encoding.h | 22 +------------------ Foundation/include/Poco/Latin9Encoding.h | 22 +------------------ Foundation/include/Poco/LineEndingConverter.h | 22 +------------------ Foundation/include/Poco/LinearHashTable.h | 22 +------------------ Foundation/include/Poco/ListMap.h | 22 +------------------ Foundation/include/Poco/LocalDateTime.h | 22 +------------------ Foundation/include/Poco/LogFile.h | 22 +------------------ Foundation/include/Poco/LogFile_STD.h | 22 +------------------ Foundation/include/Poco/LogFile_VMS.h | 22 +------------------ Foundation/include/Poco/LogFile_WIN32.h | 22 +------------------ Foundation/include/Poco/LogFile_WIN32U.h | 22 +------------------ Foundation/include/Poco/LogStream.h | 22 +------------------ Foundation/include/Poco/Logger.h | 22 +------------------ Foundation/include/Poco/LoggingFactory.h | 22 +------------------ Foundation/include/Poco/LoggingRegistry.h | 22 +------------------ Foundation/include/Poco/MD4Engine.h | 22 +------------------ Foundation/include/Poco/MD5Engine.h | 22 +------------------ Foundation/include/Poco/Manifest.h | 22 +------------------ Foundation/include/Poco/MemoryPool.h | 22 +------------------ Foundation/include/Poco/MemoryStream.h | 22 +------------------ Foundation/include/Poco/Message.h | 22 +------------------ Foundation/include/Poco/MetaObject.h | 22 +------------------ Foundation/include/Poco/MetaProgramming.h | 22 +------------------ Foundation/include/Poco/Mutex.h | 22 +------------------ Foundation/include/Poco/Mutex_POSIX.h | 22 +------------------ Foundation/include/Poco/Mutex_VX.h | 22 +------------------ Foundation/include/Poco/Mutex_WIN32.h | 22 +------------------ Foundation/include/Poco/Mutex_WINCE.h | 22 +------------------ Foundation/include/Poco/NObserver.h | 22 +------------------ Foundation/include/Poco/NamedEvent.h | 22 +------------------ Foundation/include/Poco/NamedEvent_Android.h | 22 +------------------ Foundation/include/Poco/NamedEvent_UNIX.h | 22 +------------------ Foundation/include/Poco/NamedEvent_VMS.h | 22 +------------------ Foundation/include/Poco/NamedEvent_WIN32.h | 22 +------------------ Foundation/include/Poco/NamedEvent_WIN32U.h | 22 +------------------ Foundation/include/Poco/NamedMutex.h | 22 +------------------ Foundation/include/Poco/NamedMutex_Android.h | 22 +------------------ Foundation/include/Poco/NamedMutex_UNIX.h | 22 +------------------ Foundation/include/Poco/NamedMutex_VMS.h | 22 +------------------ Foundation/include/Poco/NamedMutex_WIN32.h | 22 +------------------ Foundation/include/Poco/NamedMutex_WIN32U.h | 22 +------------------ Foundation/include/Poco/NamedTuple.h | 22 +------------------ .../include/Poco/NestedDiagnosticContext.h | 22 +------------------ Foundation/include/Poco/Notification.h | 22 +------------------ Foundation/include/Poco/NotificationCenter.h | 22 +------------------ Foundation/include/Poco/NotificationQueue.h | 22 +------------------ .../include/Poco/NotificationStrategy.h | 22 +------------------ Foundation/include/Poco/NullChannel.h | 22 +------------------ Foundation/include/Poco/NullStream.h | 22 +------------------ Foundation/include/Poco/Nullable.h | 22 +------------------ Foundation/include/Poco/NumberFormatter.h | 22 +------------------ Foundation/include/Poco/NumberParser.h | 22 +------------------ Foundation/include/Poco/NumericString.h | 22 +------------------ Foundation/include/Poco/ObjectPool.h | 22 +------------------ Foundation/include/Poco/Observer.h | 22 +------------------ Foundation/include/Poco/OpcomChannel.h | 22 +------------------ Foundation/include/Poco/Optional.h | 22 +------------------ Foundation/include/Poco/PBKDF2Engine.h | 22 +------------------ Foundation/include/Poco/Path.h | 22 +------------------ Foundation/include/Poco/Path_UNIX.h | 22 +------------------ Foundation/include/Poco/Path_VMS.h | 22 +------------------ Foundation/include/Poco/Path_WIN32.h | 22 +------------------ Foundation/include/Poco/Path_WIN32U.h | 22 +------------------ Foundation/include/Poco/Path_WINCE.h | 22 +------------------ Foundation/include/Poco/PatternFormatter.h | 22 +------------------ Foundation/include/Poco/Pipe.h | 22 +------------------ Foundation/include/Poco/PipeImpl.h | 22 +------------------ Foundation/include/Poco/PipeImpl_DUMMY.h | 22 +------------------ Foundation/include/Poco/PipeImpl_POSIX.h | 22 +------------------ Foundation/include/Poco/PipeImpl_WIN32.h | 22 +------------------ Foundation/include/Poco/PipeStream.h | 22 +------------------ Foundation/include/Poco/Platform.h | 22 +------------------ Foundation/include/Poco/Platform_POSIX.h | 22 +------------------ Foundation/include/Poco/Platform_VMS.h | 22 +------------------ Foundation/include/Poco/Platform_VX.h | 22 +------------------ Foundation/include/Poco/Platform_WIN32.h | 22 +------------------ Foundation/include/Poco/Poco.h | 22 +------------------ Foundation/include/Poco/PriorityDelegate.h | 22 +------------------ Foundation/include/Poco/PriorityEvent.h | 22 +------------------ Foundation/include/Poco/PriorityExpire.h | 22 +------------------ .../include/Poco/PriorityNotificationQueue.h | 22 +------------------ Foundation/include/Poco/PriorityStrategy.h | 22 +------------------ Foundation/include/Poco/Process.h | 22 +------------------ Foundation/include/Poco/Process_UNIX.h | 22 +------------------ Foundation/include/Poco/Process_VMS.h | 22 +------------------ Foundation/include/Poco/Process_VX.h | 22 +------------------ Foundation/include/Poco/Process_WIN32.h | 22 +------------------ Foundation/include/Poco/Process_WIN32U.h | 22 +------------------ Foundation/include/Poco/Process_WINCE.h | 22 +------------------ Foundation/include/Poco/PurgeStrategy.h | 22 +------------------ Foundation/include/Poco/RWLock.h | 22 +------------------ Foundation/include/Poco/RWLock_Android.h | 22 +------------------ Foundation/include/Poco/RWLock_POSIX.h | 22 +------------------ Foundation/include/Poco/RWLock_VX.h | 22 +------------------ Foundation/include/Poco/RWLock_WIN32.h | 22 +------------------ Foundation/include/Poco/RWLock_WINCE.h | 22 +------------------ Foundation/include/Poco/Random.h | 22 +------------------ Foundation/include/Poco/RandomStream.h | 22 +------------------ .../include/Poco/RecursiveDirectoryIterator.h | 22 +------------------ .../Poco/RecursiveDirectoryIteratorImpl.h | 22 +------------------ Foundation/include/Poco/RefCountedObject.h | 22 +------------------ Foundation/include/Poco/RegularExpression.h | 22 +------------------ Foundation/include/Poco/RotateStrategy.h | 22 +------------------ Foundation/include/Poco/Runnable.h | 22 +------------------ Foundation/include/Poco/RunnableAdapter.h | 22 +------------------ Foundation/include/Poco/SHA1Engine.h | 22 +------------------ Foundation/include/Poco/ScopedLock.h | 22 +------------------ Foundation/include/Poco/ScopedUnlock.h | 22 +------------------ Foundation/include/Poco/Semaphore.h | 22 +------------------ Foundation/include/Poco/Semaphore_POSIX.h | 22 +------------------ Foundation/include/Poco/Semaphore_VX.h | 22 +------------------ Foundation/include/Poco/Semaphore_WIN32.h | 22 +------------------ Foundation/include/Poco/SharedLibrary.h | 22 +------------------ Foundation/include/Poco/SharedLibrary_HPUX.h | 22 +------------------ Foundation/include/Poco/SharedLibrary_UNIX.h | 22 +------------------ Foundation/include/Poco/SharedLibrary_VMS.h | 22 +------------------ Foundation/include/Poco/SharedLibrary_VX.h | 22 +------------------ Foundation/include/Poco/SharedLibrary_WIN32.h | 22 +------------------ .../include/Poco/SharedLibrary_WIN32U.h | 22 +------------------ Foundation/include/Poco/SharedMemory.h | 22 +------------------ Foundation/include/Poco/SharedMemory_DUMMY.h | 22 +------------------ Foundation/include/Poco/SharedMemory_POSIX.h | 22 +------------------ Foundation/include/Poco/SharedMemory_WIN32.h | 22 +------------------ Foundation/include/Poco/SharedPtr.h | 22 +------------------ Foundation/include/Poco/SignalHandler.h | 22 +------------------ Foundation/include/Poco/SimpleFileChannel.h | 22 +------------------ Foundation/include/Poco/SimpleHashTable.h | 22 +------------------ Foundation/include/Poco/SingletonHolder.h | 22 +------------------ .../include/Poco/SortedDirectoryIterator.h | 22 +------------------ Foundation/include/Poco/SplitterChannel.h | 22 +------------------ Foundation/include/Poco/Stopwatch.h | 22 +------------------ Foundation/include/Poco/StrategyCollection.h | 22 +------------------ Foundation/include/Poco/StreamChannel.h | 22 +------------------ Foundation/include/Poco/StreamConverter.h | 22 +------------------ Foundation/include/Poco/StreamCopier.h | 22 +------------------ Foundation/include/Poco/StreamTokenizer.h | 22 +------------------ Foundation/include/Poco/StreamUtil.h | 22 +------------------ Foundation/include/Poco/String.h | 22 +------------------ Foundation/include/Poco/StringTokenizer.h | 22 +------------------ Foundation/include/Poco/SynchronizedObject.h | 22 +------------------ Foundation/include/Poco/SyslogChannel.h | 22 +------------------ Foundation/include/Poco/Task.h | 22 +------------------ Foundation/include/Poco/TaskManager.h | 22 +------------------ Foundation/include/Poco/TaskNotification.h | 22 +------------------ Foundation/include/Poco/TeeStream.h | 22 +------------------ Foundation/include/Poco/TemporaryFile.h | 22 +------------------ Foundation/include/Poco/TextBufferIterator.h | 22 +------------------ Foundation/include/Poco/TextConverter.h | 22 +------------------ Foundation/include/Poco/TextEncoding.h | 22 +------------------ Foundation/include/Poco/TextIterator.h | 22 +------------------ Foundation/include/Poco/Thread.h | 22 +------------------ Foundation/include/Poco/ThreadLocal.h | 22 +------------------ Foundation/include/Poco/ThreadPool.h | 22 +------------------ Foundation/include/Poco/ThreadTarget.h | 22 +------------------ Foundation/include/Poco/Thread_POSIX.h | 22 +------------------ Foundation/include/Poco/Thread_VX.h | 22 +------------------ Foundation/include/Poco/Thread_WIN32.h | 22 +------------------ Foundation/include/Poco/Thread_WINCE.h | 22 +------------------ .../include/Poco/TimedNotificationQueue.h | 22 +------------------ Foundation/include/Poco/Timer.h | 22 +------------------ Foundation/include/Poco/Timespan.h | 22 +------------------ Foundation/include/Poco/Timestamp.h | 22 +------------------ Foundation/include/Poco/Timezone.h | 22 +------------------ Foundation/include/Poco/Token.h | 22 +------------------ Foundation/include/Poco/Tuple.h | 22 +------------------ Foundation/include/Poco/TypeList.h | 22 +------------------ Foundation/include/Poco/Types.h | 22 +------------------ Foundation/include/Poco/URI.h | 22 +------------------ Foundation/include/Poco/URIStreamFactory.h | 22 +------------------ Foundation/include/Poco/URIStreamOpener.h | 22 +------------------ Foundation/include/Poco/UTF16Encoding.h | 22 +------------------ Foundation/include/Poco/UTF32Encoding.h | 22 +------------------ Foundation/include/Poco/UTF8Encoding.h | 22 +------------------ Foundation/include/Poco/UTF8String.h | 22 +------------------ Foundation/include/Poco/UTFString.h | 22 +------------------ Foundation/include/Poco/UUID.h | 22 +------------------ Foundation/include/Poco/UUIDGenerator.h | 22 +------------------ Foundation/include/Poco/UnWindows.h | 22 +------------------ Foundation/include/Poco/UnbufferedStreamBuf.h | 22 +------------------ Foundation/include/Poco/Unicode.h | 22 +------------------ Foundation/include/Poco/UnicodeConverter.h | 22 +------------------ .../include/Poco/UniqueAccessExpireCache.h | 22 +------------------ .../include/Poco/UniqueAccessExpireLRUCache.h | 22 +------------------ .../include/Poco/UniqueAccessExpireStrategy.h | 22 +------------------ Foundation/include/Poco/UniqueExpireCache.h | 22 +------------------ .../include/Poco/UniqueExpireLRUCache.h | 22 +------------------ .../include/Poco/UniqueExpireStrategy.h | 22 +------------------ Foundation/include/Poco/ValidArgs.h | 22 +------------------ Foundation/include/Poco/Version.h | 22 +------------------ Foundation/include/Poco/Void.h | 22 +------------------ Foundation/include/Poco/Windows1250Encoding.h | 22 +------------------ Foundation/include/Poco/Windows1251Encoding.h | 22 +------------------ Foundation/include/Poco/Windows1252Encoding.h | 22 +------------------ .../include/Poco/WindowsConsoleChannel.h | 22 +------------------ .../samples/ActiveMethod/src/ActiveMethod.cpp | 22 +------------------ Foundation/samples/Activity/src/Activity.cpp | 22 +------------------ .../src/BinaryReaderWriter.cpp | 22 +------------------ Foundation/samples/DateTime/src/DateTime.cpp | 22 +------------------ .../src/LineEndingConverter.cpp | 22 +------------------ .../samples/LogRotation/src/LogRotation.cpp | 22 +------------------ Foundation/samples/Logger/src/Logger.cpp | 22 +------------------ .../src/NotificationQueue.cpp | 22 +------------------ .../StringTokenizer/src/StringTokenizer.cpp | 22 +------------------ Foundation/samples/Timer/src/Timer.cpp | 22 +------------------ Foundation/samples/URI/src/URI.cpp | 22 +------------------ .../samples/base64decode/src/base64decode.cpp | 22 +------------------ .../samples/base64encode/src/base64encode.cpp | 22 +------------------ Foundation/samples/deflate/src/deflate.cpp | 22 +------------------ Foundation/samples/dir/src/dir.cpp | 22 +------------------ Foundation/samples/grep/src/grep.cpp | 22 +------------------ Foundation/samples/hmacmd5/src/hmacmd5.cpp | 22 +------------------ Foundation/samples/inflate/src/inflate.cpp | 22 +------------------ Foundation/samples/md5/src/md5.cpp | 22 +------------------ Foundation/samples/uuidgen/src/uuidgen.cpp | 22 +------------------ Foundation/src/ASCIIEncoding.cpp | 22 +------------------ Foundation/src/AbstractObserver.cpp | 22 +------------------ Foundation/src/ActiveDispatcher.cpp | 22 +------------------ Foundation/src/ArchiveStrategy.cpp | 22 +------------------ Foundation/src/Ascii.cpp | 22 +------------------ Foundation/src/AsyncChannel.cpp | 22 +------------------ Foundation/src/AtomicCounter.cpp | 22 +------------------ Foundation/src/Base32Decoder.cpp | 22 +------------------ Foundation/src/Base32Encoder.cpp | 22 +------------------ Foundation/src/Base64Decoder.cpp | 22 +------------------ Foundation/src/Base64Encoder.cpp | 22 +------------------ Foundation/src/BinaryReader.cpp | 22 +------------------ Foundation/src/BinaryWriter.cpp | 22 +------------------ Foundation/src/Bugcheck.cpp | 22 +------------------ Foundation/src/ByteOrder.cpp | 22 +------------------ Foundation/src/Channel.cpp | 22 +------------------ Foundation/src/Checksum.cpp | 22 +------------------ Foundation/src/Clock.cpp | 22 +------------------ Foundation/src/Condition.cpp | 22 +------------------ Foundation/src/Configurable.cpp | 22 +------------------ Foundation/src/ConsoleChannel.cpp | 22 +------------------ Foundation/src/CountingStream.cpp | 22 +------------------ Foundation/src/DateTime.cpp | 22 +------------------ Foundation/src/DateTimeFormat.cpp | 22 +------------------ Foundation/src/DateTimeFormatter.cpp | 22 +------------------ Foundation/src/DateTimeParser.cpp | 22 +------------------ Foundation/src/Debugger.cpp | 22 +------------------ Foundation/src/DeflatingStream.cpp | 22 +------------------ Foundation/src/DigestEngine.cpp | 22 +------------------ Foundation/src/DigestStream.cpp | 22 +------------------ Foundation/src/DirectoryIterator.cpp | 22 +------------------ Foundation/src/DirectoryIteratorStrategy.cpp | 22 +------------------ Foundation/src/DirectoryIterator_UNIX.cpp | 22 +------------------ Foundation/src/DirectoryIterator_VMS.cpp | 22 +------------------ Foundation/src/DirectoryIterator_WIN32.cpp | 22 +------------------ Foundation/src/DirectoryIterator_WIN32U.cpp | 22 +------------------ Foundation/src/DirectoryWatcher.cpp | 22 +------------------ Foundation/src/Environment.cpp | 22 +------------------ Foundation/src/Environment_UNIX.cpp | 22 +------------------ Foundation/src/Environment_VMS.cpp | 22 +------------------ Foundation/src/Environment_VX.cpp | 22 +------------------ Foundation/src/Environment_WIN32.cpp | 22 +------------------ Foundation/src/Environment_WIN32U.cpp | 22 +------------------ Foundation/src/Environment_WINCE.cpp | 22 +------------------ Foundation/src/Error.cpp | 22 +------------------ Foundation/src/ErrorHandler.cpp | 22 +------------------ Foundation/src/Event.cpp | 22 +------------------ Foundation/src/EventArgs.cpp | 22 +------------------ Foundation/src/EventLogChannel.cpp | 22 +------------------ Foundation/src/Event_POSIX.cpp | 22 +------------------ Foundation/src/Event_VX.cpp | 22 +------------------ Foundation/src/Event_WIN32.cpp | 22 +------------------ Foundation/src/Exception.cpp | 22 +------------------ Foundation/src/FIFOBufferStream.cpp | 22 +------------------ Foundation/src/FPEnvironment.cpp | 22 +------------------ Foundation/src/FPEnvironment_C99.cpp | 22 +------------------ Foundation/src/FPEnvironment_DEC.cpp | 22 +------------------ Foundation/src/FPEnvironment_DUMMY.cpp | 22 +------------------ Foundation/src/FPEnvironment_SUN.cpp | 22 +------------------ Foundation/src/FPEnvironment_WIN32.cpp | 22 +------------------ Foundation/src/File.cpp | 22 +------------------ Foundation/src/FileChannel.cpp | 22 +------------------ Foundation/src/FileStream.cpp | 22 +------------------ Foundation/src/FileStreamFactory.cpp | 22 +------------------ Foundation/src/FileStream_POSIX.cpp | 22 +------------------ Foundation/src/FileStream_WIN32.cpp | 22 +------------------ Foundation/src/File_UNIX.cpp | 22 +------------------ Foundation/src/File_VMS.cpp | 22 +------------------ Foundation/src/File_VX.cpp | 22 +------------------ Foundation/src/File_WIN32.cpp | 22 +------------------ Foundation/src/File_WIN32U.cpp | 22 +------------------ Foundation/src/File_WINCE.cpp | 22 +------------------ Foundation/src/Format.cpp | 22 +------------------ Foundation/src/Formatter.cpp | 22 +------------------ Foundation/src/FormattingChannel.cpp | 22 +------------------ Foundation/src/Glob.cpp | 22 +------------------ Foundation/src/Hash.cpp | 22 +------------------ Foundation/src/HashStatistic.cpp | 22 +------------------ Foundation/src/HexBinaryDecoder.cpp | 22 +------------------ Foundation/src/HexBinaryEncoder.cpp | 22 +------------------ Foundation/src/InflatingStream.cpp | 22 +------------------ Foundation/src/Latin1Encoding.cpp | 22 +------------------ Foundation/src/Latin2Encoding.cpp | 22 +------------------ Foundation/src/Latin9Encoding.cpp | 22 +------------------ Foundation/src/LineEndingConverter.cpp | 22 +------------------ Foundation/src/LocalDateTime.cpp | 22 +------------------ Foundation/src/LogFile.cpp | 22 +------------------ Foundation/src/LogFile_STD.cpp | 22 +------------------ Foundation/src/LogFile_VMS.cpp | 22 +------------------ Foundation/src/LogFile_WIN32.cpp | 22 +------------------ Foundation/src/LogFile_WIN32U.cpp | 22 +------------------ Foundation/src/LogStream.cpp | 22 +------------------ Foundation/src/Logger.cpp | 22 +------------------ Foundation/src/LoggingFactory.cpp | 22 +------------------ Foundation/src/LoggingRegistry.cpp | 22 +------------------ Foundation/src/MD4Engine.cpp | 22 +------------------ Foundation/src/MD5Engine.cpp | 22 +------------------ Foundation/src/Manifest.cpp | 22 +------------------ Foundation/src/MemoryPool.cpp | 22 +------------------ Foundation/src/MemoryStream.cpp | 22 +------------------ Foundation/src/Message.cpp | 22 +------------------ Foundation/src/Mutex.cpp | 22 +------------------ Foundation/src/Mutex_POSIX.cpp | 22 +------------------ Foundation/src/Mutex_VX.cpp | 22 +------------------ Foundation/src/Mutex_WIN32.cpp | 22 +------------------ Foundation/src/Mutex_WINCE.cpp | 22 +------------------ Foundation/src/NamedEvent.cpp | 22 +------------------ Foundation/src/NamedEvent_Android.cpp | 22 +------------------ Foundation/src/NamedEvent_UNIX.cpp | 22 +------------------ Foundation/src/NamedEvent_VMS.cpp | 22 +------------------ Foundation/src/NamedEvent_WIN32.cpp | 22 +------------------ Foundation/src/NamedEvent_WIN32U.cpp | 22 +------------------ Foundation/src/NamedMutex.cpp | 22 +------------------ Foundation/src/NamedMutex_Android.cpp | 22 +------------------ Foundation/src/NamedMutex_UNIX.cpp | 22 +------------------ Foundation/src/NamedMutex_VMS.cpp | 22 +------------------ Foundation/src/NamedMutex_WIN32.cpp | 22 +------------------ Foundation/src/NamedMutex_WIN32U.cpp | 22 +------------------ Foundation/src/NestedDiagnosticContext.cpp | 22 +------------------ Foundation/src/Notification.cpp | 22 +------------------ Foundation/src/NotificationCenter.cpp | 22 +------------------ Foundation/src/NotificationQueue.cpp | 22 +------------------ Foundation/src/NullChannel.cpp | 22 +------------------ Foundation/src/NullStream.cpp | 22 +------------------ Foundation/src/NumberFormatter.cpp | 22 +------------------ Foundation/src/NumberParser.cpp | 22 +------------------ Foundation/src/NumericString.cpp | 22 +------------------ Foundation/src/OpcomChannel.cpp | 22 +------------------ Foundation/src/Path.cpp | 22 +------------------ Foundation/src/Path_UNIX.cpp | 22 +------------------ Foundation/src/Path_VMS.cpp | 22 +------------------ Foundation/src/Path_WIN32.cpp | 22 +------------------ Foundation/src/Path_WIN32U.cpp | 22 +------------------ Foundation/src/Path_WINCE.cpp | 22 +------------------ Foundation/src/PatternFormatter.cpp | 22 +------------------ Foundation/src/Pipe.cpp | 22 +------------------ Foundation/src/PipeImpl.cpp | 22 +------------------ Foundation/src/PipeImpl_DUMMY.cpp | 22 +------------------ Foundation/src/PipeImpl_POSIX.cpp | 22 +------------------ Foundation/src/PipeImpl_WIN32.cpp | 22 +------------------ Foundation/src/PipeStream.cpp | 22 +------------------ Foundation/src/PriorityNotificationQueue.cpp | 22 +------------------ Foundation/src/Process.cpp | 22 +------------------ Foundation/src/Process_UNIX.cpp | 22 +------------------ Foundation/src/Process_VMS.cpp | 22 +------------------ Foundation/src/Process_VX.cpp | 22 +------------------ Foundation/src/Process_WIN32.cpp | 22 +------------------ Foundation/src/Process_WIN32U.cpp | 22 +------------------ Foundation/src/Process_WINCE.cpp | 22 +------------------ Foundation/src/PurgeStrategy.cpp | 22 +------------------ Foundation/src/RWLock.cpp | 22 +------------------ Foundation/src/RWLock_Android.cpp | 22 +------------------ Foundation/src/RWLock_POSIX.cpp | 22 +------------------ Foundation/src/RWLock_VX.cpp | 22 +------------------ Foundation/src/RWLock_WIN32.cpp | 22 +------------------ Foundation/src/RWLock_WINCE.cpp | 22 +------------------ Foundation/src/Random.cpp | 22 +------------------ Foundation/src/RandomStream.cpp | 22 +------------------ Foundation/src/RefCountedObject.cpp | 22 +------------------ Foundation/src/RegularExpression.cpp | 22 +------------------ Foundation/src/RotateStrategy.cpp | 22 +------------------ Foundation/src/Runnable.cpp | 22 +------------------ Foundation/src/SHA1Engine.cpp | 22 +------------------ Foundation/src/Semaphore.cpp | 22 +------------------ Foundation/src/Semaphore_POSIX.cpp | 22 +------------------ Foundation/src/Semaphore_VX.cpp | 22 +------------------ Foundation/src/Semaphore_WIN32.cpp | 22 +------------------ Foundation/src/SharedLibrary.cpp | 22 +------------------ Foundation/src/SharedLibrary_HPUX.cpp | 22 +------------------ Foundation/src/SharedLibrary_UNIX.cpp | 22 +------------------ Foundation/src/SharedLibrary_VMS.cpp | 22 +------------------ Foundation/src/SharedLibrary_VX.cpp | 22 +------------------ Foundation/src/SharedLibrary_WIN32.cpp | 22 +------------------ Foundation/src/SharedLibrary_WIN32U.cpp | 22 +------------------ Foundation/src/SharedMemory.cpp | 22 +------------------ Foundation/src/SharedMemory_DUMMY.cpp | 22 +------------------ Foundation/src/SharedMemory_POSIX.cpp | 22 +------------------ Foundation/src/SharedMemory_WIN32.cpp | 22 +------------------ Foundation/src/SignalHandler.cpp | 22 +------------------ Foundation/src/SimpleFileChannel.cpp | 22 +------------------ Foundation/src/SortedDirectoryIterator.cpp | 22 +------------------ Foundation/src/SplitterChannel.cpp | 22 +------------------ Foundation/src/Stopwatch.cpp | 22 +------------------ Foundation/src/StreamChannel.cpp | 22 +------------------ Foundation/src/StreamConverter.cpp | 22 +------------------ Foundation/src/StreamCopier.cpp | 22 +------------------ Foundation/src/StreamTokenizer.cpp | 22 +------------------ Foundation/src/String.cpp | 22 +------------------ Foundation/src/StringTokenizer.cpp | 22 +------------------ Foundation/src/SynchronizedObject.cpp | 22 +------------------ Foundation/src/SyslogChannel.cpp | 22 +------------------ Foundation/src/Task.cpp | 22 +------------------ Foundation/src/TaskManager.cpp | 22 +------------------ Foundation/src/TaskNotification.cpp | 22 +------------------ Foundation/src/TeeStream.cpp | 22 +------------------ Foundation/src/TemporaryFile.cpp | 22 +------------------ Foundation/src/TextBufferIterator.cpp | 22 +------------------ Foundation/src/TextConverter.cpp | 22 +------------------ Foundation/src/TextEncoding.cpp | 22 +------------------ Foundation/src/TextIterator.cpp | 22 +------------------ Foundation/src/Thread.cpp | 22 +------------------ Foundation/src/ThreadLocal.cpp | 22 +------------------ Foundation/src/ThreadPool.cpp | 22 +------------------ Foundation/src/ThreadTarget.cpp | 22 +------------------ Foundation/src/Thread_POSIX.cpp | 22 +------------------ Foundation/src/Thread_VX.cpp | 22 +------------------ Foundation/src/Thread_WIN32.cpp | 22 +------------------ Foundation/src/Thread_WINCE.cpp | 22 +------------------ Foundation/src/TimedNotificationQueue.cpp | 22 +------------------ Foundation/src/Timer.cpp | 22 +------------------ Foundation/src/Timespan.cpp | 22 +------------------ Foundation/src/Timestamp.cpp | 22 +------------------ Foundation/src/Timezone.cpp | 22 +------------------ Foundation/src/Timezone_UNIX.cpp | 22 +------------------ Foundation/src/Timezone_VX.cpp | 22 +------------------ Foundation/src/Timezone_WIN32.cpp | 22 +------------------ Foundation/src/Timezone_WINCE.cpp | 22 +------------------ Foundation/src/Token.cpp | 22 +------------------ Foundation/src/URI.cpp | 22 +------------------ Foundation/src/URIStreamFactory.cpp | 22 +------------------ Foundation/src/URIStreamOpener.cpp | 22 +------------------ Foundation/src/UTF16Encoding.cpp | 22 +------------------ Foundation/src/UTF32Encoding.cpp | 22 +------------------ Foundation/src/UTF8Encoding.cpp | 22 +------------------ Foundation/src/UTF8String.cpp | 22 +------------------ Foundation/src/UUID.cpp | 22 +------------------ Foundation/src/UUIDGenerator.cpp | 22 +------------------ Foundation/src/Unicode.cpp | 22 +------------------ Foundation/src/UnicodeConverter.cpp | 22 +------------------ Foundation/src/Var.cpp | 22 +------------------ Foundation/src/VarHolder.cpp | 22 +------------------ Foundation/src/VarIterator.cpp | 22 +------------------ Foundation/src/Void.cpp | 22 +------------------ Foundation/src/Windows1250Encoding.cpp | 22 +------------------ Foundation/src/Windows1251Encoding.cpp | 22 +------------------ Foundation/src/Windows1252Encoding.cpp | 22 +------------------ Foundation/src/WindowsConsoleChannel.cpp | 22 +------------------ .../testsuite/src/ActiveDispatcherTest.cpp | 22 +------------------ .../testsuite/src/ActiveDispatcherTest.h | 22 +------------------ Foundation/testsuite/src/ActiveMethodTest.cpp | 22 +------------------ Foundation/testsuite/src/ActiveMethodTest.h | 22 +------------------ Foundation/testsuite/src/ActivityTest.cpp | 22 +------------------ Foundation/testsuite/src/ActivityTest.h | 22 +------------------ Foundation/testsuite/src/AnyTest.cpp | 22 +------------------ Foundation/testsuite/src/AnyTest.h | 22 +------------------ Foundation/testsuite/src/ArrayTest.cpp | 22 +------------------ Foundation/testsuite/src/ArrayTest.h | 22 +------------------ Foundation/testsuite/src/AutoPtrTest.cpp | 22 +------------------ Foundation/testsuite/src/AutoPtrTest.h | 22 +------------------ .../testsuite/src/AutoReleasePoolTest.cpp | 22 +------------------ .../testsuite/src/AutoReleasePoolTest.h | 22 +------------------ Foundation/testsuite/src/Base32Test.cpp | 22 +------------------ Foundation/testsuite/src/Base32Test.h | 22 +------------------ Foundation/testsuite/src/Base64Test.cpp | 22 +------------------ Foundation/testsuite/src/Base64Test.h | 22 +------------------ Foundation/testsuite/src/BasicEventTest.cpp | 22 +------------------ Foundation/testsuite/src/BasicEventTest.h | 22 +------------------ .../testsuite/src/BinaryReaderWriterTest.cpp | 22 +------------------ .../testsuite/src/BinaryReaderWriterTest.h | 22 +------------------ Foundation/testsuite/src/ByteOrderTest.cpp | 22 +------------------ Foundation/testsuite/src/ByteOrderTest.h | 22 +------------------ Foundation/testsuite/src/CacheTestSuite.cpp | 22 +------------------ Foundation/testsuite/src/CacheTestSuite.h | 22 +------------------ Foundation/testsuite/src/ChannelTest.cpp | 22 +------------------ Foundation/testsuite/src/ChannelTest.h | 22 +------------------ Foundation/testsuite/src/ClassLoaderTest.cpp | 22 +------------------ Foundation/testsuite/src/ClassLoaderTest.h | 22 +------------------ Foundation/testsuite/src/ClockTest.cpp | 22 +------------------ Foundation/testsuite/src/ClockTest.h | 22 +------------------ Foundation/testsuite/src/ConditionTest.cpp | 22 +------------------ Foundation/testsuite/src/ConditionTest.h | 22 +------------------ Foundation/testsuite/src/CoreTest.cpp | 22 +------------------ Foundation/testsuite/src/CoreTest.h | 22 +------------------ Foundation/testsuite/src/CoreTestSuite.cpp | 22 +------------------ Foundation/testsuite/src/CoreTestSuite.h | 22 +------------------ .../testsuite/src/CountingStreamTest.cpp | 22 +------------------ Foundation/testsuite/src/CountingStreamTest.h | 22 +------------------ Foundation/testsuite/src/CryptTestSuite.cpp | 22 +------------------ Foundation/testsuite/src/CryptTestSuite.h | 22 +------------------ .../testsuite/src/DateTimeFormatterTest.cpp | 22 +------------------ .../testsuite/src/DateTimeFormatterTest.h | 22 +------------------ .../testsuite/src/DateTimeParserTest.cpp | 22 +------------------ Foundation/testsuite/src/DateTimeParserTest.h | 22 +------------------ Foundation/testsuite/src/DateTimeTest.cpp | 22 +------------------ Foundation/testsuite/src/DateTimeTest.h | 22 +------------------ .../testsuite/src/DateTimeTestSuite.cpp | 22 +------------------ Foundation/testsuite/src/DateTimeTestSuite.h | 22 +------------------ Foundation/testsuite/src/DigestStreamTest.cpp | 22 +------------------ Foundation/testsuite/src/DigestStreamTest.h | 22 +------------------ .../testsuite/src/DirectoryIteratorsTest.cpp | 22 +------------------ .../testsuite/src/DirectoryIteratorsTest.h | 22 +------------------ .../testsuite/src/DirectoryWatcherTest.cpp | 22 +------------------ .../testsuite/src/DirectoryWatcherTest.h | 22 +------------------ Foundation/testsuite/src/Driver.cpp | 22 +------------------ Foundation/testsuite/src/DummyDelegate.cpp | 22 +------------------ Foundation/testsuite/src/DummyDelegate.h | 22 +------------------ .../testsuite/src/DynamicFactoryTest.cpp | 22 +------------------ Foundation/testsuite/src/DynamicFactoryTest.h | 22 +------------------ Foundation/testsuite/src/DynamicTestSuite.cpp | 22 +------------------ Foundation/testsuite/src/DynamicTestSuite.h | 22 +------------------ Foundation/testsuite/src/EventTestSuite.cpp | 22 +------------------ Foundation/testsuite/src/EventTestSuite.h | 22 +------------------ Foundation/testsuite/src/ExpireCacheTest.cpp | 22 +------------------ Foundation/testsuite/src/ExpireCacheTest.h | 22 +------------------ .../testsuite/src/ExpireLRUCacheTest.cpp | 22 +------------------ Foundation/testsuite/src/ExpireLRUCacheTest.h | 22 +------------------ .../testsuite/src/FIFOBufferStreamTest.cpp | 22 +------------------ .../testsuite/src/FIFOBufferStreamTest.h | 22 +------------------ Foundation/testsuite/src/FIFOEventTest.cpp | 22 +------------------ Foundation/testsuite/src/FIFOEventTest.h | 22 +------------------ Foundation/testsuite/src/FPETest.cpp | 22 +------------------ Foundation/testsuite/src/FPETest.h | 22 +------------------ Foundation/testsuite/src/FileChannelTest.cpp | 22 +------------------ Foundation/testsuite/src/FileChannelTest.h | 22 +------------------ Foundation/testsuite/src/FileStreamTest.cpp | 22 +------------------ Foundation/testsuite/src/FileStreamTest.h | 22 +------------------ Foundation/testsuite/src/FileTest.cpp | 22 +------------------ Foundation/testsuite/src/FileTest.h | 22 +------------------ .../testsuite/src/FilesystemTestSuite.cpp | 22 +------------------ .../testsuite/src/FilesystemTestSuite.h | 22 +------------------ Foundation/testsuite/src/FormatTest.cpp | 22 +------------------ Foundation/testsuite/src/FormatTest.h | 22 +------------------ .../testsuite/src/FoundationTestSuite.cpp | 22 +------------------ .../testsuite/src/FoundationTestSuite.h | 22 +------------------ Foundation/testsuite/src/GlobTest.cpp | 22 +------------------ Foundation/testsuite/src/GlobTest.h | 22 +------------------ Foundation/testsuite/src/HMACEngineTest.cpp | 22 +------------------ Foundation/testsuite/src/HMACEngineTest.h | 22 +------------------ Foundation/testsuite/src/HashMapTest.cpp | 22 +------------------ Foundation/testsuite/src/HashMapTest.h | 22 +------------------ Foundation/testsuite/src/HashSetTest.cpp | 22 +------------------ Foundation/testsuite/src/HashSetTest.h | 22 +------------------ Foundation/testsuite/src/HashTableTest.cpp | 22 +------------------ Foundation/testsuite/src/HashTableTest.h | 22 +------------------ Foundation/testsuite/src/HashingTestSuite.cpp | 22 +------------------ Foundation/testsuite/src/HashingTestSuite.h | 22 +------------------ Foundation/testsuite/src/HexBinaryTest.cpp | 22 +------------------ Foundation/testsuite/src/HexBinaryTest.h | 22 +------------------ Foundation/testsuite/src/LRUCacheTest.cpp | 22 +------------------ Foundation/testsuite/src/LRUCacheTest.h | 22 +------------------ .../testsuite/src/LineEndingConverterTest.cpp | 22 +------------------ .../testsuite/src/LineEndingConverterTest.h | 22 +------------------ .../testsuite/src/LinearHashTableTest.cpp | 22 +------------------ .../testsuite/src/LinearHashTableTest.h | 22 +------------------ Foundation/testsuite/src/ListMapTest.cpp | 22 +------------------ Foundation/testsuite/src/ListMapTest.h | 22 +------------------ .../testsuite/src/LocalDateTimeTest.cpp | 22 +------------------ Foundation/testsuite/src/LocalDateTimeTest.h | 22 +------------------ Foundation/testsuite/src/LogStreamTest.cpp | 22 +------------------ Foundation/testsuite/src/LogStreamTest.h | 22 +------------------ Foundation/testsuite/src/LoggerTest.cpp | 22 +------------------ Foundation/testsuite/src/LoggerTest.h | 22 +------------------ .../testsuite/src/LoggingFactoryTest.cpp | 22 +------------------ Foundation/testsuite/src/LoggingFactoryTest.h | 22 +------------------ .../testsuite/src/LoggingRegistryTest.cpp | 22 +------------------ .../testsuite/src/LoggingRegistryTest.h | 22 +------------------ Foundation/testsuite/src/LoggingTestSuite.cpp | 22 +------------------ Foundation/testsuite/src/LoggingTestSuite.h | 22 +------------------ Foundation/testsuite/src/MD4EngineTest.cpp | 22 +------------------ Foundation/testsuite/src/MD4EngineTest.h | 22 +------------------ Foundation/testsuite/src/MD5EngineTest.cpp | 22 +------------------ Foundation/testsuite/src/MD5EngineTest.h | 22 +------------------ Foundation/testsuite/src/ManifestTest.cpp | 22 +------------------ Foundation/testsuite/src/ManifestTest.h | 22 +------------------ Foundation/testsuite/src/MemoryPoolTest.cpp | 22 +------------------ Foundation/testsuite/src/MemoryPoolTest.h | 22 +------------------ Foundation/testsuite/src/MemoryStreamTest.cpp | 22 +------------------ Foundation/testsuite/src/MemoryStreamTest.h | 22 +------------------ Foundation/testsuite/src/NDCTest.cpp | 22 +------------------ Foundation/testsuite/src/NDCTest.h | 22 +------------------ Foundation/testsuite/src/NamedEventTest.cpp | 22 +------------------ Foundation/testsuite/src/NamedEventTest.h | 22 +------------------ Foundation/testsuite/src/NamedMutexTest.cpp | 22 +------------------ Foundation/testsuite/src/NamedMutexTest.h | 22 +------------------ Foundation/testsuite/src/NamedTuplesTest.cpp | 22 +------------------ Foundation/testsuite/src/NamedTuplesTest.h | 22 +------------------ .../testsuite/src/NotificationCenterTest.cpp | 22 +------------------ .../testsuite/src/NotificationCenterTest.h | 22 +------------------ .../testsuite/src/NotificationQueueTest.cpp | 22 +------------------ .../testsuite/src/NotificationQueueTest.h | 22 +------------------ .../testsuite/src/NotificationsTestSuite.cpp | 22 +------------------ .../testsuite/src/NotificationsTestSuite.h | 22 +------------------ Foundation/testsuite/src/NullStreamTest.cpp | 22 +------------------ Foundation/testsuite/src/NullStreamTest.h | 22 +------------------ .../testsuite/src/NumberFormatterTest.cpp | 22 +------------------ .../testsuite/src/NumberFormatterTest.h | 22 +------------------ Foundation/testsuite/src/NumberParserTest.cpp | 22 +------------------ Foundation/testsuite/src/NumberParserTest.h | 22 +------------------ Foundation/testsuite/src/ObjectPoolTest.cpp | 22 +------------------ Foundation/testsuite/src/ObjectPoolTest.h | 22 +------------------ Foundation/testsuite/src/PBKDF2EngineTest.cpp | 22 +------------------ Foundation/testsuite/src/PBKDF2EngineTest.h | 22 +------------------ Foundation/testsuite/src/PathTest.cpp | 22 +------------------ Foundation/testsuite/src/PathTest.h | 22 +------------------ .../testsuite/src/PatternFormatterTest.cpp | 22 +------------------ .../testsuite/src/PatternFormatterTest.h | 22 +------------------ .../testsuite/src/PriorityEventTest.cpp | 22 +------------------ Foundation/testsuite/src/PriorityEventTest.h | 22 +------------------ .../src/PriorityNotificationQueueTest.cpp | 22 +------------------ .../src/PriorityNotificationQueueTest.h | 22 +------------------ Foundation/testsuite/src/ProcessTest.cpp | 22 +------------------ Foundation/testsuite/src/ProcessTest.h | 22 +------------------ .../testsuite/src/ProcessesTestSuite.cpp | 22 +------------------ Foundation/testsuite/src/ProcessesTestSuite.h | 22 +------------------ Foundation/testsuite/src/RWLockTest.cpp | 22 +------------------ Foundation/testsuite/src/RWLockTest.h | 22 +------------------ Foundation/testsuite/src/RandomStreamTest.cpp | 22 +------------------ Foundation/testsuite/src/RandomStreamTest.h | 22 +------------------ Foundation/testsuite/src/RandomTest.cpp | 22 +------------------ Foundation/testsuite/src/RandomTest.h | 22 +------------------ .../testsuite/src/RegularExpressionTest.cpp | 22 +------------------ .../testsuite/src/RegularExpressionTest.h | 22 +------------------ Foundation/testsuite/src/SHA1EngineTest.cpp | 22 +------------------ Foundation/testsuite/src/SHA1EngineTest.h | 22 +------------------ Foundation/testsuite/src/SemaphoreTest.cpp | 22 +------------------ Foundation/testsuite/src/SemaphoreTest.h | 22 +------------------ .../testsuite/src/SharedLibraryTest.cpp | 22 +------------------ Foundation/testsuite/src/SharedLibraryTest.h | 22 +------------------ .../testsuite/src/SharedLibraryTestSuite.cpp | 22 +------------------ .../testsuite/src/SharedLibraryTestSuite.h | 22 +------------------ Foundation/testsuite/src/SharedMemoryTest.cpp | 22 +------------------ Foundation/testsuite/src/SharedMemoryTest.h | 22 +------------------ Foundation/testsuite/src/SharedPtrTest.cpp | 22 +------------------ Foundation/testsuite/src/SharedPtrTest.h | 22 +------------------ .../testsuite/src/SimpleFileChannelTest.cpp | 22 +------------------ .../testsuite/src/SimpleFileChannelTest.h | 22 +------------------ .../testsuite/src/SimpleHashTableTest.cpp | 22 +------------------ .../testsuite/src/SimpleHashTableTest.h | 22 +------------------ Foundation/testsuite/src/StopwatchTest.cpp | 22 +------------------ Foundation/testsuite/src/StopwatchTest.h | 22 +------------------ .../testsuite/src/StreamConverterTest.cpp | 22 +------------------ .../testsuite/src/StreamConverterTest.h | 22 +------------------ Foundation/testsuite/src/StreamCopierTest.cpp | 22 +------------------ Foundation/testsuite/src/StreamCopierTest.h | 22 +------------------ .../testsuite/src/StreamTokenizerTest.cpp | 22 +------------------ .../testsuite/src/StreamTokenizerTest.h | 22 +------------------ Foundation/testsuite/src/StreamsTestSuite.cpp | 22 +------------------ Foundation/testsuite/src/StreamsTestSuite.h | 22 +------------------ Foundation/testsuite/src/StringTest.cpp | 22 +------------------ Foundation/testsuite/src/StringTest.h | 22 +------------------ .../testsuite/src/StringTokenizerTest.cpp | 22 +------------------ .../testsuite/src/StringTokenizerTest.h | 22 +------------------ Foundation/testsuite/src/TaskManagerTest.cpp | 22 +------------------ Foundation/testsuite/src/TaskManagerTest.h | 22 +------------------ Foundation/testsuite/src/TaskTest.cpp | 22 +------------------ Foundation/testsuite/src/TaskTest.h | 22 +------------------ Foundation/testsuite/src/TaskTestSuite.cpp | 22 +------------------ Foundation/testsuite/src/TaskTestSuite.h | 22 +------------------ Foundation/testsuite/src/TeeStreamTest.cpp | 22 +------------------ Foundation/testsuite/src/TeeStreamTest.h | 22 +------------------ Foundation/testsuite/src/TestApp.cpp | 22 +------------------ Foundation/testsuite/src/TestApp_WINCE.cpp | 22 +------------------ Foundation/testsuite/src/TestChannel.cpp | 22 +------------------ Foundation/testsuite/src/TestChannel.h | 22 +------------------ Foundation/testsuite/src/TestLibrary.cpp | 22 +------------------ Foundation/testsuite/src/TestPlugin.cpp | 22 +------------------ Foundation/testsuite/src/TestPlugin.h | 22 +------------------ .../testsuite/src/TextBufferIteratorTest.cpp | 22 +------------------ .../testsuite/src/TextBufferIteratorTest.h | 22 +------------------ .../testsuite/src/TextConverterTest.cpp | 22 +------------------ Foundation/testsuite/src/TextConverterTest.h | 22 +------------------ Foundation/testsuite/src/TextEncodingTest.cpp | 22 +------------------ Foundation/testsuite/src/TextEncodingTest.h | 22 +------------------ Foundation/testsuite/src/TextIteratorTest.cpp | 22 +------------------ Foundation/testsuite/src/TextIteratorTest.h | 22 +------------------ Foundation/testsuite/src/TextTestSuite.cpp | 22 +------------------ Foundation/testsuite/src/TextTestSuite.h | 22 +------------------ Foundation/testsuite/src/ThreadLocalTest.cpp | 22 +------------------ Foundation/testsuite/src/ThreadLocalTest.h | 22 +------------------ Foundation/testsuite/src/ThreadPoolTest.cpp | 22 +------------------ Foundation/testsuite/src/ThreadPoolTest.h | 22 +------------------ Foundation/testsuite/src/ThreadTest.cpp | 22 +------------------ Foundation/testsuite/src/ThreadTest.h | 22 +------------------ .../testsuite/src/ThreadingTestSuite.cpp | 22 +------------------ Foundation/testsuite/src/ThreadingTestSuite.h | 22 +------------------ .../src/TimedNotificationQueueTest.cpp | 22 +------------------ .../src/TimedNotificationQueueTest.h | 22 +------------------ Foundation/testsuite/src/TimerTest.cpp | 22 +------------------ Foundation/testsuite/src/TimerTest.h | 22 +------------------ Foundation/testsuite/src/TimespanTest.cpp | 22 +------------------ Foundation/testsuite/src/TimespanTest.h | 22 +------------------ Foundation/testsuite/src/TimestampTest.cpp | 22 +------------------ Foundation/testsuite/src/TimestampTest.h | 22 +------------------ Foundation/testsuite/src/TimezoneTest.cpp | 22 +------------------ Foundation/testsuite/src/TimezoneTest.h | 22 +------------------ Foundation/testsuite/src/TuplesTest.cpp | 22 +------------------ Foundation/testsuite/src/TuplesTest.h | 22 +------------------ Foundation/testsuite/src/TypeListTest.cpp | 22 +------------------ Foundation/testsuite/src/TypeListTest.h | 22 +------------------ .../testsuite/src/URIStreamOpenerTest.cpp | 22 +------------------ .../testsuite/src/URIStreamOpenerTest.h | 22 +------------------ Foundation/testsuite/src/URITest.cpp | 22 +------------------ Foundation/testsuite/src/URITest.h | 22 +------------------ Foundation/testsuite/src/URITestSuite.cpp | 22 +------------------ Foundation/testsuite/src/URITestSuite.h | 22 +------------------ Foundation/testsuite/src/UTF8StringTest.cpp | 22 +------------------ Foundation/testsuite/src/UTF8StringTest.h | 22 +------------------ .../testsuite/src/UUIDGeneratorTest.cpp | 22 +------------------ Foundation/testsuite/src/UUIDGeneratorTest.h | 22 +------------------ Foundation/testsuite/src/UUIDTest.cpp | 22 +------------------ Foundation/testsuite/src/UUIDTest.h | 22 +------------------ Foundation/testsuite/src/UUIDTestSuite.cpp | 22 +------------------ Foundation/testsuite/src/UUIDTestSuite.h | 22 +------------------ .../testsuite/src/UnicodeConverterTest.cpp | 22 +------------------ .../testsuite/src/UnicodeConverterTest.h | 22 +------------------ .../testsuite/src/UniqueExpireCacheTest.cpp | 22 +------------------ .../testsuite/src/UniqueExpireCacheTest.h | 22 +------------------ .../src/UniqueExpireLRUCacheTest.cpp | 22 +------------------ .../testsuite/src/UniqueExpireLRUCacheTest.h | 22 +------------------ Foundation/testsuite/src/VarTest.cpp | 22 +------------------ Foundation/testsuite/src/VarTest.h | 22 +------------------ Foundation/testsuite/src/WinCEDriver.cpp | 22 +------------------ Foundation/testsuite/src/WinDriver.cpp | 22 +------------------ Foundation/testsuite/src/ZLibTest.cpp | 22 +------------------ Foundation/testsuite/src/ZLibTest.h | 22 +------------------ JSON/include/Poco/JSON/Array.h | 22 +------------------ JSON/include/Poco/JSON/Handler.h | 22 +------------------ JSON/include/Poco/JSON/JSON.h | 22 +------------------ JSON/include/Poco/JSON/JSONException.h | 22 +------------------ JSON/include/Poco/JSON/Object.h | 22 +------------------ JSON/include/Poco/JSON/ParseHandler.h | 22 +------------------ JSON/include/Poco/JSON/Parser.h | 22 +------------------ JSON/include/Poco/JSON/PrintHandler.h | 22 +------------------ JSON/include/Poco/JSON/Query.h | 22 +------------------ JSON/include/Poco/JSON/Stringifier.h | 22 +------------------ JSON/include/Poco/JSON/Template.h | 22 +------------------ JSON/include/Poco/JSON/TemplateCache.h | 22 +------------------ JSON/samples/Benchmark/src/Benchmark.cpp | 22 +------------------ JSON/src/Array.cpp | 22 +------------------ JSON/src/Handler.cpp | 22 +------------------ JSON/src/JSONException.cpp | 22 +------------------ JSON/src/Object.cpp | 22 +------------------ JSON/src/ParseHandler.cpp | 22 +------------------ JSON/src/Parser.cpp | 22 +------------------ JSON/src/PrintHandler.cpp | 22 +------------------ JSON/src/Query.cpp | 22 +------------------ JSON/src/Stringifier.cpp | 22 +------------------ JSON/src/Template.cpp | 22 +------------------ JSON/src/TemplateCache.cpp | 22 +------------------ JSON/testsuite/src/Driver.cpp | 22 +------------------ JSON/testsuite/src/JSONTest.cpp | 22 +------------------ JSON/testsuite/src/JSONTest.h | 22 +------------------ JSON/testsuite/src/JSONTestSuite.cpp | 22 +------------------ JSON/testsuite/src/JSONTestSuite.h | 22 +------------------ JSON/testsuite/src/WinCEDriver.cpp | 22 +------------------ JSON/testsuite/src/WinDriver.cpp | 22 +------------------ LICENSE | 9 ++++++++ MongoDB/include/Poco/MongoDB/Array.h | 22 +------------------ MongoDB/include/Poco/MongoDB/BSONReader.h | 22 +------------------ MongoDB/include/Poco/MongoDB/BSONWriter.h | 22 +------------------ MongoDB/include/Poco/MongoDB/Binary.h | 22 +------------------ MongoDB/include/Poco/MongoDB/Connection.h | 22 +------------------ MongoDB/include/Poco/MongoDB/Cursor.h | 22 +------------------ MongoDB/include/Poco/MongoDB/Database.h | 22 +------------------ MongoDB/include/Poco/MongoDB/DeleteRequest.h | 22 +------------------ MongoDB/include/Poco/MongoDB/Document.h | 22 +------------------ MongoDB/include/Poco/MongoDB/Element.h | 22 +------------------ MongoDB/include/Poco/MongoDB/GetMoreRequest.h | 22 +------------------ MongoDB/include/Poco/MongoDB/InsertRequest.h | 22 +------------------ MongoDB/include/Poco/MongoDB/JavaScriptCode.h | 22 +------------------ .../include/Poco/MongoDB/KillCursorsRequest.h | 22 +------------------ MongoDB/include/Poco/MongoDB/Message.h | 22 +------------------ MongoDB/include/Poco/MongoDB/MessageHeader.h | 22 +------------------ MongoDB/include/Poco/MongoDB/MongoDB.h | 22 +------------------ MongoDB/include/Poco/MongoDB/ObjectId.h | 22 +------------------ .../Poco/MongoDB/PoolableConnectionFactory.h | 22 +------------------ MongoDB/include/Poco/MongoDB/QueryRequest.h | 22 +------------------ .../include/Poco/MongoDB/RegularExpression.h | 22 +------------------ MongoDB/include/Poco/MongoDB/ReplicaSet.h | 22 +------------------ MongoDB/include/Poco/MongoDB/RequestMessage.h | 22 +------------------ .../include/Poco/MongoDB/ResponseMessage.h | 22 +------------------ MongoDB/include/Poco/MongoDB/UpdateRequest.h | 22 +------------------ MongoDB/samples/SQLToMongo/src/SQLToMongo.cpp | 22 +------------------ MongoDB/src/Array.cpp | 22 +------------------ MongoDB/src/Binary.cpp | 22 +------------------ MongoDB/src/Connection.cpp | 22 +------------------ MongoDB/src/Cursor.cpp | 22 +------------------ MongoDB/src/Database.cpp | 22 +------------------ MongoDB/src/DeleteRequest.cpp | 22 +------------------ MongoDB/src/Document.cpp | 22 +------------------ MongoDB/src/Element.cpp | 22 +------------------ MongoDB/src/GetMoreRequest.cpp | 22 +------------------ MongoDB/src/InsertRequest.cpp | 22 +------------------ MongoDB/src/JavaScriptCode.cpp | 22 +------------------ MongoDB/src/KillCursorsRequest.cpp | 22 +------------------ MongoDB/src/Message.cpp | 22 +------------------ MongoDB/src/MessageHeader.cpp | 22 +------------------ MongoDB/src/ObjectId.cpp | 22 +------------------ MongoDB/src/QueryRequest.cpp | 22 +------------------ MongoDB/src/RegularExpression.cpp | 22 +------------------ MongoDB/src/ReplicaSet.cpp | 22 +------------------ MongoDB/src/RequestMessage.cpp | 22 +------------------ MongoDB/src/ResponseMessage.cpp | 22 +------------------ MongoDB/src/UpdateRequest.cpp | 22 +------------------ MongoDB/testsuite/src/Driver.cpp | 22 +------------------ MongoDB/testsuite/src/MongoDBTest.cpp | 22 +------------------ MongoDB/testsuite/src/MongoDBTest.h | 22 +------------------ MongoDB/testsuite/src/MongoDBTestSuite.cpp | 22 +------------------ MongoDB/testsuite/src/MongoDBTestSuite.h | 22 +------------------ MongoDB/testsuite/src/WinCEDriver.cpp | 22 +------------------ MongoDB/testsuite/src/WinDriver.cpp | 22 +------------------ .../Poco/Net/AbstractHTTPRequestHandler.h | 22 +------------------ Net/include/Poco/Net/DNS.h | 22 +------------------ Net/include/Poco/Net/DatagramSocket.h | 22 +------------------ Net/include/Poco/Net/DatagramSocketImpl.h | 22 +------------------ Net/include/Poco/Net/DialogSocket.h | 22 +------------------ Net/include/Poco/Net/FTPClientSession.h | 22 +------------------ Net/include/Poco/Net/FTPStreamFactory.h | 22 +------------------ Net/include/Poco/Net/FilePartSource.h | 22 +------------------ Net/include/Poco/Net/HTMLForm.h | 22 +------------------ .../Poco/Net/HTTPAuthenticationParams.h | 22 +------------------ Net/include/Poco/Net/HTTPBasicCredentials.h | 22 +------------------ Net/include/Poco/Net/HTTPBasicStreamBuf.h | 22 +------------------ Net/include/Poco/Net/HTTPBufferAllocator.h | 22 +------------------ Net/include/Poco/Net/HTTPChunkedStream.h | 22 +------------------ Net/include/Poco/Net/HTTPClientSession.h | 22 +------------------ Net/include/Poco/Net/HTTPCookie.h | 22 +------------------ Net/include/Poco/Net/HTTPCredentials.h | 22 +------------------ Net/include/Poco/Net/HTTPDigestCredentials.h | 22 +------------------ Net/include/Poco/Net/HTTPFixedLengthStream.h | 22 +------------------ Net/include/Poco/Net/HTTPHeaderStream.h | 22 +------------------ Net/include/Poco/Net/HTTPIOStream.h | 22 +------------------ Net/include/Poco/Net/HTTPMessage.h | 22 +------------------ Net/include/Poco/Net/HTTPRequest.h | 22 +------------------ Net/include/Poco/Net/HTTPRequestHandler.h | 22 +------------------ .../Poco/Net/HTTPRequestHandlerFactory.h | 22 +------------------ Net/include/Poco/Net/HTTPResponse.h | 22 +------------------ Net/include/Poco/Net/HTTPServer.h | 22 +------------------ Net/include/Poco/Net/HTTPServerConnection.h | 22 +------------------ .../Poco/Net/HTTPServerConnectionFactory.h | 22 +------------------ Net/include/Poco/Net/HTTPServerParams.h | 22 +------------------ Net/include/Poco/Net/HTTPServerRequest.h | 22 +------------------ Net/include/Poco/Net/HTTPServerRequestImpl.h | 22 +------------------ Net/include/Poco/Net/HTTPServerResponse.h | 22 +------------------ Net/include/Poco/Net/HTTPServerResponseImpl.h | 22 +------------------ Net/include/Poco/Net/HTTPServerSession.h | 22 +------------------ Net/include/Poco/Net/HTTPSession.h | 22 +------------------ Net/include/Poco/Net/HTTPSessionFactory.h | 22 +------------------ .../Poco/Net/HTTPSessionInstantiator.h | 22 +------------------ Net/include/Poco/Net/HTTPStream.h | 22 +------------------ Net/include/Poco/Net/HTTPStreamFactory.h | 22 +------------------ Net/include/Poco/Net/HostEntry.h | 22 +------------------ Net/include/Poco/Net/ICMPClient.h | 22 +------------------ Net/include/Poco/Net/ICMPEventArgs.h | 22 +------------------ Net/include/Poco/Net/ICMPPacket.h | 22 +------------------ Net/include/Poco/Net/ICMPPacketImpl.h | 22 +------------------ Net/include/Poco/Net/ICMPSocket.h | 22 +------------------ Net/include/Poco/Net/ICMPSocketImpl.h | 22 +------------------ Net/include/Poco/Net/ICMPv4PacketImpl.h | 22 +------------------ Net/include/Poco/Net/IPAddress.h | 22 +------------------ Net/include/Poco/Net/IPAddressImpl.h | 22 +------------------ Net/include/Poco/Net/MailMessage.h | 22 +------------------ Net/include/Poco/Net/MailRecipient.h | 22 +------------------ Net/include/Poco/Net/MailStream.h | 22 +------------------ Net/include/Poco/Net/MediaType.h | 22 +------------------ Net/include/Poco/Net/MessageHeader.h | 22 +------------------ Net/include/Poco/Net/MulticastSocket.h | 22 +------------------ Net/include/Poco/Net/MultipartReader.h | 22 +------------------ Net/include/Poco/Net/MultipartWriter.h | 22 +------------------ Net/include/Poco/Net/NTPClient.h | 22 +------------------ Net/include/Poco/Net/NTPEventArgs.h | 22 +------------------ Net/include/Poco/Net/NTPPacket.h | 22 +------------------ Net/include/Poco/Net/NameValueCollection.h | 22 +------------------ Net/include/Poco/Net/Net.h | 22 +------------------ Net/include/Poco/Net/NetException.h | 22 +------------------ Net/include/Poco/Net/NetworkInterface.h | 22 +------------------ Net/include/Poco/Net/NullPartHandler.h | 22 +------------------ Net/include/Poco/Net/POP3ClientSession.h | 22 +------------------ Net/include/Poco/Net/ParallelSocketAcceptor.h | 22 +------------------ Net/include/Poco/Net/ParallelSocketReactor.h | 22 +------------------ Net/include/Poco/Net/PartHandler.h | 22 +------------------ Net/include/Poco/Net/PartSource.h | 22 +------------------ Net/include/Poco/Net/PartStore.h | 22 +------------------ Net/include/Poco/Net/QuotedPrintableDecoder.h | 22 +------------------ Net/include/Poco/Net/QuotedPrintableEncoder.h | 22 +------------------ Net/include/Poco/Net/RawSocket.h | 22 +------------------ Net/include/Poco/Net/RawSocketImpl.h | 22 +------------------ Net/include/Poco/Net/RemoteSyslogChannel.h | 22 +------------------ Net/include/Poco/Net/RemoteSyslogListener.h | 22 +------------------ Net/include/Poco/Net/SMTPChannel.h | 22 +------------------ Net/include/Poco/Net/SMTPClientSession.h | 22 +------------------ Net/include/Poco/Net/ServerSocket.h | 22 +------------------ Net/include/Poco/Net/ServerSocketImpl.h | 22 +------------------ Net/include/Poco/Net/Socket.h | 22 +------------------ Net/include/Poco/Net/SocketAcceptor.h | 22 +------------------ Net/include/Poco/Net/SocketAddress.h | 22 +------------------ Net/include/Poco/Net/SocketAddressImpl.h | 22 +------------------ Net/include/Poco/Net/SocketConnector.h | 22 +------------------ Net/include/Poco/Net/SocketDefs.h | 22 +------------------ Net/include/Poco/Net/SocketImpl.h | 22 +------------------ Net/include/Poco/Net/SocketNotification.h | 22 +------------------ Net/include/Poco/Net/SocketNotifier.h | 22 +------------------ Net/include/Poco/Net/SocketReactor.h | 22 +------------------ Net/include/Poco/Net/SocketStream.h | 22 +------------------ Net/include/Poco/Net/StreamSocket.h | 22 +------------------ Net/include/Poco/Net/StreamSocketImpl.h | 22 +------------------ Net/include/Poco/Net/StringPartSource.h | 22 +------------------ Net/include/Poco/Net/TCPServer.h | 22 +------------------ Net/include/Poco/Net/TCPServerConnection.h | 22 +------------------ .../Poco/Net/TCPServerConnectionFactory.h | 22 +------------------ Net/include/Poco/Net/TCPServerDispatcher.h | 22 +------------------ Net/include/Poco/Net/TCPServerParams.h | 22 +------------------ Net/include/Poco/Net/WebSocket.h | 22 +------------------ Net/include/Poco/Net/WebSocketImpl.h | 22 +------------------ Net/samples/EchoServer/src/EchoServer.cpp | 22 +------------------ .../HTTPFormServer/src/HTTPFormServer.cpp | 22 +------------------ Net/samples/HTTPLoadTest/src/HTTPLoadTest.cpp | 22 +------------------ .../HTTPTimeServer/src/HTTPTimeServer.cpp | 22 +------------------ Net/samples/Mail/src/Mail.cpp | 22 +------------------ Net/samples/Ping/src/Ping.cpp | 22 +------------------ Net/samples/SMTPLogger/src/SMTPLogger.cpp | 22 +------------------ Net/samples/TimeServer/src/TimeServer.cpp | 22 +------------------ Net/samples/TwitterClient/src/TweetApp.cpp | 22 +------------------ Net/samples/TwitterClient/src/Twitter.cpp | 22 +------------------ Net/samples/TwitterClient/src/Twitter.h | 22 +------------------ .../WebSocketServer/src/WebSocketServer.cpp | 22 +------------------ Net/samples/dict/src/dict.cpp | 22 +------------------ Net/samples/download/src/download.cpp | 22 +------------------ Net/samples/httpget/src/httpget.cpp | 22 +------------------ Net/samples/ifconfig/src/ifconfig.cpp | 22 +------------------ Net/src/AbstractHTTPRequestHandler.cpp | 22 +------------------ Net/src/DNS.cpp | 22 +------------------ Net/src/DatagramSocket.cpp | 22 +------------------ Net/src/DatagramSocketImpl.cpp | 22 +------------------ Net/src/DialogSocket.cpp | 22 +------------------ Net/src/FTPClientSession.cpp | 22 +------------------ Net/src/FTPStreamFactory.cpp | 22 +------------------ Net/src/FilePartSource.cpp | 22 +------------------ Net/src/HTMLForm.cpp | 22 +------------------ Net/src/HTTPAuthenticationParams.cpp | 22 +------------------ Net/src/HTTPBasicCredentials.cpp | 22 +------------------ Net/src/HTTPBufferAllocator.cpp | 22 +------------------ Net/src/HTTPChunkedStream.cpp | 22 +------------------ Net/src/HTTPClientSession.cpp | 22 +------------------ Net/src/HTTPCookie.cpp | 22 +------------------ Net/src/HTTPCredentials.cpp | 22 +------------------ Net/src/HTTPDigestCredentials.cpp | 22 +------------------ Net/src/HTTPFixedLengthStream.cpp | 22 +------------------ Net/src/HTTPHeaderStream.cpp | 22 +------------------ Net/src/HTTPIOStream.cpp | 22 +------------------ Net/src/HTTPMessage.cpp | 22 +------------------ Net/src/HTTPRequest.cpp | 22 +------------------ Net/src/HTTPRequestHandler.cpp | 22 +------------------ Net/src/HTTPRequestHandlerFactory.cpp | 22 +------------------ Net/src/HTTPResponse.cpp | 22 +------------------ Net/src/HTTPServer.cpp | 22 +------------------ Net/src/HTTPServerConnection.cpp | 22 +------------------ Net/src/HTTPServerConnectionFactory.cpp | 22 +------------------ Net/src/HTTPServerParams.cpp | 22 +------------------ Net/src/HTTPServerRequest.cpp | 22 +------------------ Net/src/HTTPServerRequestImpl.cpp | 22 +------------------ Net/src/HTTPServerResponse.cpp | 22 +------------------ Net/src/HTTPServerResponseImpl.cpp | 22 +------------------ Net/src/HTTPServerSession.cpp | 22 +------------------ Net/src/HTTPSession.cpp | 22 +------------------ Net/src/HTTPSessionFactory.cpp | 22 +------------------ Net/src/HTTPSessionInstantiator.cpp | 22 +------------------ Net/src/HTTPStream.cpp | 22 +------------------ Net/src/HTTPStreamFactory.cpp | 22 +------------------ Net/src/HostEntry.cpp | 22 +------------------ Net/src/ICMPClient.cpp | 22 +------------------ Net/src/ICMPEventArgs.cpp | 22 +------------------ Net/src/ICMPPacket.cpp | 22 +------------------ Net/src/ICMPPacketImpl.cpp | 22 +------------------ Net/src/ICMPSocket.cpp | 22 +------------------ Net/src/ICMPSocketImpl.cpp | 22 +------------------ Net/src/ICMPv4PacketImpl.cpp | 22 +------------------ Net/src/IPAddress.cpp | 22 +------------------ Net/src/IPAddressImpl.cpp | 22 +------------------ Net/src/MailMessage.cpp | 22 +------------------ Net/src/MailRecipient.cpp | 22 +------------------ Net/src/MailStream.cpp | 22 +------------------ Net/src/MediaType.cpp | 22 +------------------ Net/src/MessageHeader.cpp | 22 +------------------ Net/src/MulticastSocket.cpp | 22 +------------------ Net/src/MultipartReader.cpp | 22 +------------------ Net/src/MultipartWriter.cpp | 22 +------------------ Net/src/NTPClient.cpp | 22 +------------------ Net/src/NTPEventArgs.cpp | 22 +------------------ Net/src/NTPPacket.cpp | 22 +------------------ Net/src/NameValueCollection.cpp | 22 +------------------ Net/src/Net.cpp | 22 +------------------ Net/src/NetException.cpp | 22 +------------------ Net/src/NetworkInterface.cpp | 22 +------------------ Net/src/NullPartHandler.cpp | 22 +------------------ Net/src/POP3ClientSession.cpp | 22 +------------------ Net/src/PartHandler.cpp | 22 +------------------ Net/src/PartSource.cpp | 22 +------------------ Net/src/PartStore.cpp | 22 +------------------ Net/src/QuotedPrintableDecoder.cpp | 22 +------------------ Net/src/QuotedPrintableEncoder.cpp | 22 +------------------ Net/src/RawSocket.cpp | 22 +------------------ Net/src/RawSocketImpl.cpp | 22 +------------------ Net/src/RemoteSyslogChannel.cpp | 22 +------------------ Net/src/RemoteSyslogListener.cpp | 22 +------------------ Net/src/SMTPChannel.cpp | 22 +------------------ Net/src/SMTPClientSession.cpp | 22 +------------------ Net/src/ServerSocket.cpp | 22 +------------------ Net/src/ServerSocketImpl.cpp | 22 +------------------ Net/src/Socket.cpp | 22 +------------------ Net/src/SocketAddress.cpp | 22 +------------------ Net/src/SocketAddressImpl.cpp | 22 +------------------ Net/src/SocketImpl.cpp | 22 +------------------ Net/src/SocketNotification.cpp | 22 +------------------ Net/src/SocketNotifier.cpp | 22 +------------------ Net/src/SocketReactor.cpp | 22 +------------------ Net/src/SocketStream.cpp | 22 +------------------ Net/src/StreamSocket.cpp | 22 +------------------ Net/src/StreamSocketImpl.cpp | 22 +------------------ Net/src/StringPartSource.cpp | 22 +------------------ Net/src/TCPServer.cpp | 22 +------------------ Net/src/TCPServerConnection.cpp | 22 +------------------ Net/src/TCPServerConnectionFactory.cpp | 22 +------------------ Net/src/TCPServerDispatcher.cpp | 22 +------------------ Net/src/TCPServerParams.cpp | 22 +------------------ Net/src/WebSocket.cpp | 22 +------------------ Net/src/WebSocketImpl.cpp | 22 +------------------ Net/testsuite/src/DNSTest.cpp | 22 +------------------ Net/testsuite/src/DNSTest.h | 22 +------------------ Net/testsuite/src/DatagramSocketTest.cpp | 22 +------------------ Net/testsuite/src/DatagramSocketTest.h | 22 +------------------ Net/testsuite/src/DialogServer.cpp | 22 +------------------ Net/testsuite/src/DialogServer.h | 22 +------------------ Net/testsuite/src/DialogSocketTest.cpp | 22 +------------------ Net/testsuite/src/DialogSocketTest.h | 22 +------------------ Net/testsuite/src/Driver.cpp | 22 +------------------ Net/testsuite/src/EchoServer.cpp | 22 +------------------ Net/testsuite/src/EchoServer.h | 22 +------------------ Net/testsuite/src/FTPClientSessionTest.cpp | 22 +------------------ Net/testsuite/src/FTPClientSessionTest.h | 22 +------------------ Net/testsuite/src/FTPClientTestSuite.cpp | 22 +------------------ Net/testsuite/src/FTPClientTestSuite.h | 22 +------------------ Net/testsuite/src/FTPStreamFactoryTest.cpp | 22 +------------------ Net/testsuite/src/FTPStreamFactoryTest.h | 22 +------------------ Net/testsuite/src/HTMLFormTest.cpp | 22 +------------------ Net/testsuite/src/HTMLFormTest.h | 22 +------------------ Net/testsuite/src/HTMLTestSuite.cpp | 22 +------------------ Net/testsuite/src/HTMLTestSuite.h | 22 +------------------ Net/testsuite/src/HTTPClientSessionTest.cpp | 22 +------------------ Net/testsuite/src/HTTPClientSessionTest.h | 22 +------------------ Net/testsuite/src/HTTPClientTestSuite.cpp | 22 +------------------ Net/testsuite/src/HTTPClientTestSuite.h | 22 +------------------ Net/testsuite/src/HTTPCookieTest.cpp | 22 +------------------ Net/testsuite/src/HTTPCookieTest.h | 22 +------------------ Net/testsuite/src/HTTPCredentialsTest.cpp | 22 +------------------ Net/testsuite/src/HTTPCredentialsTest.h | 22 +------------------ Net/testsuite/src/HTTPRequestTest.cpp | 22 +------------------ Net/testsuite/src/HTTPRequestTest.h | 22 +------------------ Net/testsuite/src/HTTPResponseTest.cpp | 22 +------------------ Net/testsuite/src/HTTPResponseTest.h | 22 +------------------ Net/testsuite/src/HTTPServerTest.cpp | 22 +------------------ Net/testsuite/src/HTTPServerTest.h | 22 +------------------ Net/testsuite/src/HTTPServerTestSuite.cpp | 22 +------------------ Net/testsuite/src/HTTPServerTestSuite.h | 22 +------------------ Net/testsuite/src/HTTPStreamFactoryTest.cpp | 22 +------------------ Net/testsuite/src/HTTPStreamFactoryTest.h | 22 +------------------ Net/testsuite/src/HTTPTestServer.cpp | 22 +------------------ Net/testsuite/src/HTTPTestServer.h | 22 +------------------ Net/testsuite/src/HTTPTestSuite.cpp | 22 +------------------ Net/testsuite/src/HTTPTestSuite.h | 22 +------------------ Net/testsuite/src/ICMPClientTest.cpp | 22 +------------------ Net/testsuite/src/ICMPClientTest.h | 22 +------------------ Net/testsuite/src/ICMPClientTestSuite.cpp | 22 +------------------ Net/testsuite/src/ICMPClientTestSuite.h | 22 +------------------ Net/testsuite/src/ICMPSocketTest.cpp | 22 +------------------ Net/testsuite/src/ICMPSocketTest.h | 22 +------------------ Net/testsuite/src/IPAddressTest.cpp | 22 +------------------ Net/testsuite/src/IPAddressTest.h | 22 +------------------ Net/testsuite/src/MailMessageTest.cpp | 22 +------------------ Net/testsuite/src/MailMessageTest.h | 22 +------------------ Net/testsuite/src/MailStreamTest.cpp | 22 +------------------ Net/testsuite/src/MailStreamTest.h | 22 +------------------ Net/testsuite/src/MailTestSuite.cpp | 22 +------------------ Net/testsuite/src/MailTestSuite.h | 22 +------------------ Net/testsuite/src/MediaTypeTest.cpp | 22 +------------------ Net/testsuite/src/MediaTypeTest.h | 22 +------------------ Net/testsuite/src/MessageHeaderTest.cpp | 22 +------------------ Net/testsuite/src/MessageHeaderTest.h | 22 +------------------ Net/testsuite/src/MessagesTestSuite.cpp | 22 +------------------ Net/testsuite/src/MessagesTestSuite.h | 22 +------------------ Net/testsuite/src/MulticastEchoServer.cpp | 22 +------------------ Net/testsuite/src/MulticastEchoServer.h | 22 +------------------ Net/testsuite/src/MulticastSocketTest.cpp | 22 +------------------ Net/testsuite/src/MulticastSocketTest.h | 22 +------------------ Net/testsuite/src/MultipartReaderTest.cpp | 22 +------------------ Net/testsuite/src/MultipartReaderTest.h | 22 +------------------ Net/testsuite/src/MultipartWriterTest.cpp | 22 +------------------ Net/testsuite/src/MultipartWriterTest.h | 22 +------------------ Net/testsuite/src/NTPClientTest.cpp | 22 +------------------ Net/testsuite/src/NTPClientTest.h | 22 +------------------ Net/testsuite/src/NTPClientTestSuite.cpp | 22 +------------------ Net/testsuite/src/NTPClientTestSuite.h | 22 +------------------ Net/testsuite/src/NameValueCollectionTest.cpp | 22 +------------------ Net/testsuite/src/NameValueCollectionTest.h | 22 +------------------ Net/testsuite/src/NetCoreTestSuite.cpp | 22 +------------------ Net/testsuite/src/NetCoreTestSuite.h | 22 +------------------ Net/testsuite/src/NetTestSuite.cpp | 22 +------------------ Net/testsuite/src/NetTestSuite.h | 22 +------------------ Net/testsuite/src/NetworkInterfaceTest.cpp | 22 +------------------ Net/testsuite/src/NetworkInterfaceTest.h | 22 +------------------ Net/testsuite/src/POP3ClientSessionTest.cpp | 22 +------------------ Net/testsuite/src/POP3ClientSessionTest.h | 22 +------------------ Net/testsuite/src/QuotedPrintableTest.cpp | 22 +------------------ Net/testsuite/src/QuotedPrintableTest.h | 22 +------------------ Net/testsuite/src/RawSocketTest.cpp | 22 +------------------ Net/testsuite/src/RawSocketTest.h | 22 +------------------ Net/testsuite/src/ReactorTestSuite.cpp | 22 +------------------ Net/testsuite/src/ReactorTestSuite.h | 22 +------------------ Net/testsuite/src/SMTPClientSessionTest.cpp | 22 +------------------ Net/testsuite/src/SMTPClientSessionTest.h | 22 +------------------ Net/testsuite/src/SocketAddressTest.cpp | 22 +------------------ Net/testsuite/src/SocketAddressTest.h | 22 +------------------ Net/testsuite/src/SocketReactorTest.cpp | 22 +------------------ Net/testsuite/src/SocketReactorTest.h | 22 +------------------ Net/testsuite/src/SocketStreamTest.cpp | 22 +------------------ Net/testsuite/src/SocketStreamTest.h | 22 +------------------ Net/testsuite/src/SocketTest.cpp | 22 +------------------ Net/testsuite/src/SocketTest.h | 22 +------------------ Net/testsuite/src/SocketsTestSuite.cpp | 22 +------------------ Net/testsuite/src/SocketsTestSuite.h | 22 +------------------ Net/testsuite/src/SyslogTest.cpp | 22 +------------------ Net/testsuite/src/SyslogTest.h | 22 +------------------ Net/testsuite/src/TCPServerTest.cpp | 22 +------------------ Net/testsuite/src/TCPServerTest.h | 22 +------------------ Net/testsuite/src/TCPServerTestSuite.cpp | 22 +------------------ Net/testsuite/src/TCPServerTestSuite.h | 22 +------------------ Net/testsuite/src/UDPEchoServer.cpp | 22 +------------------ Net/testsuite/src/UDPEchoServer.h | 22 +------------------ Net/testsuite/src/WebSocketTest.cpp | 22 +------------------ Net/testsuite/src/WebSocketTest.h | 22 +------------------ Net/testsuite/src/WebSocketTestSuite.cpp | 22 +------------------ Net/testsuite/src/WebSocketTestSuite.h | 22 +------------------ Net/testsuite/src/WinCEDriver.cpp | 22 +------------------ Net/testsuite/src/WinDriver.cpp | 22 +------------------ .../Poco/Net/AcceptCertificateHandler.h | 22 +------------------ .../Poco/Net/CertificateHandlerFactory.h | 22 +------------------ .../Poco/Net/CertificateHandlerFactoryMgr.h | 22 +------------------ .../Poco/Net/ConsoleCertificateHandler.h | 22 +------------------ NetSSL_OpenSSL/include/Poco/Net/Context.h | 22 +------------------ .../include/Poco/Net/HTTPSClientSession.h | 22 +------------------ .../Poco/Net/HTTPSSessionInstantiator.h | 22 +------------------ .../include/Poco/Net/HTTPSStreamFactory.h | 22 +------------------ .../Poco/Net/InvalidCertificateHandler.h | 22 +------------------ .../include/Poco/Net/KeyConsoleHandler.h | 22 +------------------ .../include/Poco/Net/KeyFileHandler.h | 22 +------------------ NetSSL_OpenSSL/include/Poco/Net/NetSSL.h | 22 +------------------ .../include/Poco/Net/PrivateKeyFactory.h | 22 +------------------ .../include/Poco/Net/PrivateKeyFactoryMgr.h | 22 +------------------ .../Poco/Net/PrivateKeyPassphraseHandler.h | 22 +------------------ .../Poco/Net/RejectCertificateHandler.h | 22 +------------------ .../include/Poco/Net/SSLException.h | 22 +------------------ NetSSL_OpenSSL/include/Poco/Net/SSLManager.h | 22 +------------------ .../Poco/Net/SecureSMTPClientSession.h | 22 +------------------ .../include/Poco/Net/SecureServerSocket.h | 22 +------------------ .../include/Poco/Net/SecureServerSocketImpl.h | 22 +------------------ .../include/Poco/Net/SecureSocketImpl.h | 22 +------------------ .../include/Poco/Net/SecureStreamSocket.h | 22 +------------------ .../include/Poco/Net/SecureStreamSocketImpl.h | 22 +------------------ NetSSL_OpenSSL/include/Poco/Net/Session.h | 22 +------------------ NetSSL_OpenSSL/include/Poco/Net/Utility.h | 22 +------------------ .../include/Poco/Net/VerificationErrorArgs.h | 22 +------------------ .../include/Poco/Net/X509Certificate.h | 22 +------------------ .../HTTPSTimeServer/src/HTTPSTimeServer.cpp | 22 +------------------ NetSSL_OpenSSL/samples/Mail/src/Mail.cpp | 22 +------------------ .../samples/download/src/download.cpp | 22 +------------------ .../src/AcceptCertificateHandler.cpp | 22 +------------------ .../src/CertificateHandlerFactory.cpp | 22 +------------------ .../src/CertificateHandlerFactoryMgr.cpp | 22 +------------------ .../src/ConsoleCertificateHandler.cpp | 22 +------------------ NetSSL_OpenSSL/src/Context.cpp | 22 +------------------ NetSSL_OpenSSL/src/HTTPSClientSession.cpp | 22 +------------------ .../src/HTTPSSessionInstantiator.cpp | 22 +------------------ NetSSL_OpenSSL/src/HTTPSStreamFactory.cpp | 22 +------------------ .../src/InvalidCertificateHandler.cpp | 22 +------------------ NetSSL_OpenSSL/src/KeyConsoleHandler.cpp | 22 +------------------ NetSSL_OpenSSL/src/KeyFileHandler.cpp | 22 +------------------ NetSSL_OpenSSL/src/PrivateKeyFactory.cpp | 22 +------------------ NetSSL_OpenSSL/src/PrivateKeyFactoryMgr.cpp | 22 +------------------ .../src/PrivateKeyPassphraseHandler.cpp | 22 +------------------ .../src/RejectCertificateHandler.cpp | 22 +------------------ NetSSL_OpenSSL/src/SSLException.cpp | 22 +------------------ NetSSL_OpenSSL/src/SSLManager.cpp | 22 +------------------ .../src/SecureSMTPClientSession.cpp | 22 +------------------ NetSSL_OpenSSL/src/SecureServerSocket.cpp | 22 +------------------ NetSSL_OpenSSL/src/SecureServerSocketImpl.cpp | 22 +------------------ NetSSL_OpenSSL/src/SecureSocketImpl.cpp | 22 +------------------ NetSSL_OpenSSL/src/SecureStreamSocket.cpp | 22 +------------------ NetSSL_OpenSSL/src/SecureStreamSocketImpl.cpp | 22 +------------------ NetSSL_OpenSSL/src/Session.cpp | 22 +------------------ NetSSL_OpenSSL/src/Utility.cpp | 22 +------------------ NetSSL_OpenSSL/src/VerificationErrorArgs.cpp | 22 +------------------ NetSSL_OpenSSL/src/X509Certificate.cpp | 22 +------------------ NetSSL_OpenSSL/testsuite/src/Driver.cpp | 22 +------------------ .../testsuite/src/HTTPSClientSessionTest.cpp | 22 +------------------ .../testsuite/src/HTTPSClientSessionTest.h | 22 +------------------ .../testsuite/src/HTTPSClientTestSuite.cpp | 22 +------------------ .../testsuite/src/HTTPSClientTestSuite.h | 22 +------------------ .../testsuite/src/HTTPSServerTest.cpp | 22 +------------------ .../testsuite/src/HTTPSServerTest.h | 22 +------------------ .../testsuite/src/HTTPSServerTestSuite.cpp | 22 +------------------ .../testsuite/src/HTTPSServerTestSuite.h | 22 +------------------ .../testsuite/src/HTTPSStreamFactoryTest.cpp | 22 +------------------ .../testsuite/src/HTTPSStreamFactoryTest.h | 22 +------------------ .../testsuite/src/HTTPSTestServer.cpp | 22 +------------------ .../testsuite/src/HTTPSTestServer.h | 22 +------------------ .../testsuite/src/NetSSLTestSuite.cpp | 22 +------------------ .../testsuite/src/NetSSLTestSuite.h | 22 +------------------ .../testsuite/src/TCPServerTest.cpp | 22 +------------------ NetSSL_OpenSSL/testsuite/src/TCPServerTest.h | 22 +------------------ .../testsuite/src/TCPServerTestSuite.cpp | 22 +------------------ .../testsuite/src/TCPServerTestSuite.h | 22 +------------------ NetSSL_OpenSSL/testsuite/src/WinCEDriver.cpp | 22 +------------------ NetSSL_OpenSSL/testsuite/src/WinDriver.cpp | 22 +------------------ PDF/include/Poco/PDF/Destination.h | 22 +------------------ PDF/include/Poco/PDF/Document.h | 22 +------------------ PDF/include/Poco/PDF/Encoder.h | 22 +------------------ PDF/include/Poco/PDF/Font.h | 22 +------------------ PDF/include/Poco/PDF/Image.h | 22 +------------------ PDF/include/Poco/PDF/LinkAnnotation.h | 22 +------------------ PDF/include/Poco/PDF/Outline.h | 22 +------------------ PDF/include/Poco/PDF/PDF.h | 22 +------------------ PDF/include/Poco/PDF/PDFException.h | 22 +------------------ PDF/include/Poco/PDF/Page.h | 22 +------------------ PDF/include/Poco/PDF/Resource.h | 22 +------------------ PDF/include/Poco/PDF/TextAnnotation.h | 22 +------------------ PDF/src/Destination.cpp | 22 +------------------ PDF/src/Document.cpp | 22 +------------------ PDF/src/Encoder.cpp | 22 +------------------ PDF/src/Font.cpp | 22 +------------------ PDF/src/Image.cpp | 22 +------------------ PDF/src/LinkAnnotation.cpp | 22 +------------------ PDF/src/Outline.cpp | 22 +------------------ PDF/src/PDFException.cpp | 22 +------------------ PDF/src/Page.cpp | 22 +------------------ PDF/src/TextAnnotation.cpp | 22 +------------------ PDF/testsuite/src/Driver.cpp | 22 +------------------ PDF/testsuite/src/PDFTest.cpp | 22 +------------------ PDF/testsuite/src/PDFTest.h | 22 +------------------ PDF/testsuite/src/PDFTestSuite.cpp | 22 +------------------ PDF/testsuite/src/PDFTestSuite.h | 22 +------------------ PDF/testsuite/src/WinDriver.cpp | 22 +------------------ PageCompiler/File2Page/src/File2Page.cpp | 22 +------------------ .../HTTPTimeServer/src/HTTPTimeServerApp.cpp | 22 +------------------ PageCompiler/src/ApacheCodeWriter.cpp | 22 +------------------ PageCompiler/src/ApacheCodeWriter.h | 22 +------------------ PageCompiler/src/CodeWriter.cpp | 22 +------------------ PageCompiler/src/CodeWriter.h | 22 +------------------ PageCompiler/src/OSPCodeWriter.cpp | 22 +------------------ PageCompiler/src/OSPCodeWriter.h | 22 +------------------ PageCompiler/src/Page.cpp | 22 +------------------ PageCompiler/src/Page.h | 22 +------------------ PageCompiler/src/PageCompiler.cpp | 22 +------------------ PageCompiler/src/PageReader.cpp | 22 +------------------ PageCompiler/src/PageReader.h | 22 +------------------ PocoDoc/src/DocWriter.cpp | 22 +------------------ PocoDoc/src/DocWriter.h | 22 +------------------ PocoDoc/src/PocoDoc.cpp | 22 +------------------ ProGen/src/ProGen.cpp | 22 +------------------ ProGen/src/VSXMLWriter.cpp | 22 +------------------ ProGen/src/VSXMLWriter.h | 22 +------------------ SevenZip/include/Poco/SevenZip/Archive.h | 22 +------------------ SevenZip/include/Poco/SevenZip/ArchiveEntry.h | 22 +------------------ SevenZip/include/Poco/SevenZip/SevenZip.h | 22 +------------------ SevenZip/samples/un7zip/src/un7zip.cpp | 22 +------------------ SevenZip/src/Archive.cpp | 22 +------------------ SevenZip/src/ArchiveEntry.cpp | 22 +------------------ .../include/Poco/Util/AbstractConfiguration.h | 22 +------------------ Util/include/Poco/Util/Application.h | 22 +------------------ Util/include/Poco/Util/ConfigurationMapper.h | 22 +------------------ Util/include/Poco/Util/ConfigurationView.h | 22 +------------------ .../Poco/Util/FilesystemConfiguration.h | 22 +------------------ Util/include/Poco/Util/HelpFormatter.h | 22 +------------------ Util/include/Poco/Util/IniFileConfiguration.h | 22 +------------------ Util/include/Poco/Util/IntValidator.h | 22 +------------------ Util/include/Poco/Util/JSONConfiguration.h | 22 +------------------ Util/include/Poco/Util/LayeredConfiguration.h | 22 +------------------ Util/include/Poco/Util/LoggingConfigurator.h | 22 +------------------ Util/include/Poco/Util/LoggingSubsystem.h | 22 +------------------ Util/include/Poco/Util/MapConfiguration.h | 22 +------------------ Util/include/Poco/Util/Option.h | 22 +------------------ Util/include/Poco/Util/OptionCallback.h | 22 +------------------ Util/include/Poco/Util/OptionException.h | 22 +------------------ Util/include/Poco/Util/OptionProcessor.h | 22 +------------------ Util/include/Poco/Util/OptionSet.h | 22 +------------------ .../Poco/Util/PropertyFileConfiguration.h | 22 +------------------ Util/include/Poco/Util/RegExpValidator.h | 22 +------------------ Util/include/Poco/Util/ServerApplication.h | 22 +------------------ Util/include/Poco/Util/Subsystem.h | 22 +------------------ Util/include/Poco/Util/SystemConfiguration.h | 22 +------------------ Util/include/Poco/Util/Timer.h | 22 +------------------ Util/include/Poco/Util/TimerTask.h | 22 +------------------ Util/include/Poco/Util/TimerTaskAdapter.h | 22 +------------------ Util/include/Poco/Util/Units.h | 22 +------------------ Util/include/Poco/Util/Util.h | 22 +------------------ Util/include/Poco/Util/Validator.h | 22 +------------------ .../Poco/Util/WinRegistryConfiguration.h | 22 +------------------ Util/include/Poco/Util/WinRegistryKey.h | 22 +------------------ Util/include/Poco/Util/WinService.h | 22 +------------------ Util/include/Poco/Util/XMLConfiguration.h | 22 +------------------ Util/samples/SampleApp/src/SampleApp.cpp | 22 +------------------ .../samples/SampleServer/src/SampleServer.cpp | 22 +------------------ Util/samples/Units/src/Units.cpp | 22 +------------------ Util/samples/pkill/src/pkill.cpp | 22 +------------------ Util/src/AbstractConfiguration.cpp | 22 +------------------ Util/src/Application.cpp | 22 +------------------ Util/src/ConfigurationMapper.cpp | 22 +------------------ Util/src/ConfigurationView.cpp | 22 +------------------ Util/src/FilesystemConfiguration.cpp | 22 +------------------ Util/src/HelpFormatter.cpp | 22 +------------------ Util/src/IniFileConfiguration.cpp | 22 +------------------ Util/src/IntValidator.cpp | 22 +------------------ Util/src/JSONConfiguration.cpp | 22 +------------------ Util/src/LayeredConfiguration.cpp | 22 +------------------ Util/src/LoggingConfigurator.cpp | 22 +------------------ Util/src/LoggingSubsystem.cpp | 22 +------------------ Util/src/MapConfiguration.cpp | 22 +------------------ Util/src/Option.cpp | 22 +------------------ Util/src/OptionCallback.cpp | 22 +------------------ Util/src/OptionException.cpp | 22 +------------------ Util/src/OptionProcessor.cpp | 22 +------------------ Util/src/OptionSet.cpp | 22 +------------------ Util/src/PropertyFileConfiguration.cpp | 22 +------------------ Util/src/RegExpValidator.cpp | 22 +------------------ Util/src/ServerApplication.cpp | 22 +------------------ Util/src/Subsystem.cpp | 22 +------------------ Util/src/SystemConfiguration.cpp | 22 +------------------ Util/src/Timer.cpp | 22 +------------------ Util/src/TimerTask.cpp | 22 +------------------ Util/src/Validator.cpp | 22 +------------------ Util/src/WinRegistryConfiguration.cpp | 22 +------------------ Util/src/WinRegistryKey.cpp | 22 +------------------ Util/src/WinService.cpp | 22 +------------------ Util/src/XMLConfiguration.cpp | 22 +------------------ .../src/AbstractConfigurationTest.cpp | 22 +------------------ .../testsuite/src/AbstractConfigurationTest.h | 22 +------------------ .../testsuite/src/ConfigurationMapperTest.cpp | 22 +------------------ Util/testsuite/src/ConfigurationMapperTest.h | 22 +------------------ Util/testsuite/src/ConfigurationTestSuite.cpp | 22 +------------------ Util/testsuite/src/ConfigurationTestSuite.h | 22 +------------------ Util/testsuite/src/ConfigurationViewTest.cpp | 22 +------------------ Util/testsuite/src/ConfigurationViewTest.h | 22 +------------------ Util/testsuite/src/Driver.cpp | 22 +------------------ .../src/FilesystemConfigurationTest.cpp | 22 +------------------ .../src/FilesystemConfigurationTest.h | 22 +------------------ Util/testsuite/src/HelpFormatterTest.cpp | 22 +------------------ Util/testsuite/src/HelpFormatterTest.h | 22 +------------------ .../src/IniFileConfigurationTest.cpp | 22 +------------------ Util/testsuite/src/IniFileConfigurationTest.h | 22 +------------------ Util/testsuite/src/JSONConfigurationTest.cpp | 22 +------------------ Util/testsuite/src/JSONConfigurationTest.h | 22 +------------------ .../src/LayeredConfigurationTest.cpp | 22 +------------------ Util/testsuite/src/LayeredConfigurationTest.h | 22 +------------------ .../testsuite/src/LoggingConfiguratorTest.cpp | 22 +------------------ Util/testsuite/src/LoggingConfiguratorTest.h | 22 +------------------ Util/testsuite/src/MapConfigurationTest.cpp | 22 +------------------ Util/testsuite/src/MapConfigurationTest.h | 22 +------------------ Util/testsuite/src/OptionProcessorTest.cpp | 22 +------------------ Util/testsuite/src/OptionProcessorTest.h | 22 +------------------ Util/testsuite/src/OptionSetTest.cpp | 22 +------------------ Util/testsuite/src/OptionSetTest.h | 22 +------------------ Util/testsuite/src/OptionTest.cpp | 22 +------------------ Util/testsuite/src/OptionTest.h | 22 +------------------ Util/testsuite/src/OptionsTestSuite.cpp | 22 +------------------ Util/testsuite/src/OptionsTestSuite.h | 22 +------------------ .../src/PropertyFileConfigurationTest.cpp | 22 +------------------ .../src/PropertyFileConfigurationTest.h | 22 +------------------ .../testsuite/src/SystemConfigurationTest.cpp | 22 +------------------ Util/testsuite/src/SystemConfigurationTest.h | 22 +------------------ Util/testsuite/src/TimerTest.cpp | 22 +------------------ Util/testsuite/src/TimerTest.h | 22 +------------------ Util/testsuite/src/TimerTestSuite.cpp | 22 +------------------ Util/testsuite/src/TimerTestSuite.h | 22 +------------------ Util/testsuite/src/UtilTestSuite.cpp | 22 +------------------ Util/testsuite/src/UtilTestSuite.h | 22 +------------------ Util/testsuite/src/ValidatorTest.cpp | 22 +------------------ Util/testsuite/src/ValidatorTest.h | 22 +------------------ Util/testsuite/src/WinCEDriver.cpp | 22 +------------------ Util/testsuite/src/WinConfigurationTest.cpp | 22 +------------------ Util/testsuite/src/WinConfigurationTest.h | 22 +------------------ Util/testsuite/src/WinDriver.cpp | 22 +------------------ Util/testsuite/src/WinRegistryTest.cpp | 22 +------------------ Util/testsuite/src/WinRegistryTest.h | 22 +------------------ Util/testsuite/src/WindowsTestSuite.cpp | 22 +------------------ Util/testsuite/src/WindowsTestSuite.h | 22 +------------------ Util/testsuite/src/XMLConfigurationTest.cpp | 22 +------------------ Util/testsuite/src/XMLConfigurationTest.h | 22 +------------------ XML/include/Poco/DOM/AbstractContainerNode.h | 22 +------------------ XML/include/Poco/DOM/AbstractNode.h | 22 +------------------ XML/include/Poco/DOM/Attr.h | 22 +------------------ XML/include/Poco/DOM/AttrMap.h | 22 +------------------ XML/include/Poco/DOM/AutoPtr.h | 22 +------------------ XML/include/Poco/DOM/CDATASection.h | 22 +------------------ XML/include/Poco/DOM/CharacterData.h | 22 +------------------ XML/include/Poco/DOM/ChildNodesList.h | 22 +------------------ XML/include/Poco/DOM/Comment.h | 22 +------------------ XML/include/Poco/DOM/DOMBuilder.h | 22 +------------------ XML/include/Poco/DOM/DOMException.h | 22 +------------------ XML/include/Poco/DOM/DOMImplementation.h | 22 +------------------ XML/include/Poco/DOM/DOMObject.h | 22 +------------------ XML/include/Poco/DOM/DOMParser.h | 22 +------------------ XML/include/Poco/DOM/DOMSerializer.h | 22 +------------------ XML/include/Poco/DOM/DOMWriter.h | 22 +------------------ XML/include/Poco/DOM/DTDMap.h | 22 +------------------ XML/include/Poco/DOM/Document.h | 22 +------------------ XML/include/Poco/DOM/DocumentEvent.h | 22 +------------------ XML/include/Poco/DOM/DocumentFragment.h | 22 +------------------ XML/include/Poco/DOM/DocumentType.h | 22 +------------------ XML/include/Poco/DOM/Element.h | 22 +------------------ XML/include/Poco/DOM/ElementsByTagNameList.h | 22 +------------------ XML/include/Poco/DOM/Entity.h | 22 +------------------ XML/include/Poco/DOM/EntityReference.h | 22 +------------------ XML/include/Poco/DOM/Event.h | 22 +------------------ XML/include/Poco/DOM/EventDispatcher.h | 22 +------------------ XML/include/Poco/DOM/EventException.h | 22 +------------------ XML/include/Poco/DOM/EventListener.h | 22 +------------------ XML/include/Poco/DOM/EventTarget.h | 22 +------------------ XML/include/Poco/DOM/MutationEvent.h | 22 +------------------ XML/include/Poco/DOM/NamedNodeMap.h | 22 +------------------ XML/include/Poco/DOM/Node.h | 22 +------------------ XML/include/Poco/DOM/NodeAppender.h | 22 +------------------ XML/include/Poco/DOM/NodeFilter.h | 22 +------------------ XML/include/Poco/DOM/NodeIterator.h | 22 +------------------ XML/include/Poco/DOM/NodeList.h | 22 +------------------ XML/include/Poco/DOM/Notation.h | 22 +------------------ XML/include/Poco/DOM/ProcessingInstruction.h | 22 +------------------ XML/include/Poco/DOM/Text.h | 22 +------------------ XML/include/Poco/DOM/TreeWalker.h | 22 +------------------ XML/include/Poco/SAX/Attributes.h | 22 +------------------ XML/include/Poco/SAX/AttributesImpl.h | 22 +------------------ XML/include/Poco/SAX/ContentHandler.h | 22 +------------------ XML/include/Poco/SAX/DTDHandler.h | 22 +------------------ XML/include/Poco/SAX/DeclHandler.h | 22 +------------------ XML/include/Poco/SAX/DefaultHandler.h | 22 +------------------ XML/include/Poco/SAX/EntityResolver.h | 22 +------------------ XML/include/Poco/SAX/EntityResolverImpl.h | 22 +------------------ XML/include/Poco/SAX/ErrorHandler.h | 22 +------------------ XML/include/Poco/SAX/InputSource.h | 22 +------------------ XML/include/Poco/SAX/LexicalHandler.h | 22 +------------------ XML/include/Poco/SAX/Locator.h | 22 +------------------ XML/include/Poco/SAX/LocatorImpl.h | 22 +------------------ XML/include/Poco/SAX/NamespaceSupport.h | 22 +------------------ XML/include/Poco/SAX/SAXException.h | 22 +------------------ XML/include/Poco/SAX/SAXParser.h | 22 +------------------ XML/include/Poco/SAX/WhitespaceFilter.h | 22 +------------------ XML/include/Poco/SAX/XMLFilter.h | 22 +------------------ XML/include/Poco/SAX/XMLFilterImpl.h | 22 +------------------ XML/include/Poco/SAX/XMLReader.h | 22 +------------------ XML/include/Poco/XML/Name.h | 22 +------------------ XML/include/Poco/XML/NamePool.h | 22 +------------------ XML/include/Poco/XML/NamespaceStrategy.h | 22 +------------------ XML/include/Poco/XML/ParserEngine.h | 22 +------------------ XML/include/Poco/XML/XML.h | 22 +------------------ XML/include/Poco/XML/XMLException.h | 22 +------------------ XML/include/Poco/XML/XMLStream.h | 22 +------------------ XML/include/Poco/XML/XMLString.h | 22 +------------------ XML/include/Poco/XML/XMLWriter.h | 22 +------------------ XML/samples/DOMParser/src/DOMParser.cpp | 22 +------------------ XML/samples/DOMWriter/src/DOMWriter.cpp | 22 +------------------ XML/samples/PrettyPrint/src/PrettyPrint.cpp | 22 +------------------ XML/samples/SAXParser/src/SAXParser.cpp | 22 +------------------ XML/src/AbstractContainerNode.cpp | 22 +------------------ XML/src/AbstractNode.cpp | 22 +------------------ XML/src/Attr.cpp | 22 +------------------ XML/src/AttrMap.cpp | 22 +------------------ XML/src/Attributes.cpp | 22 +------------------ XML/src/AttributesImpl.cpp | 22 +------------------ XML/src/CDATASection.cpp | 22 +------------------ XML/src/CharacterData.cpp | 22 +------------------ XML/src/ChildNodesList.cpp | 22 +------------------ XML/src/Comment.cpp | 22 +------------------ XML/src/ContentHandler.cpp | 22 +------------------ XML/src/DOMBuilder.cpp | 22 +------------------ XML/src/DOMException.cpp | 22 +------------------ XML/src/DOMImplementation.cpp | 22 +------------------ XML/src/DOMObject.cpp | 22 +------------------ XML/src/DOMParser.cpp | 22 +------------------ XML/src/DOMSerializer.cpp | 22 +------------------ XML/src/DOMWriter.cpp | 22 +------------------ XML/src/DTDHandler.cpp | 22 +------------------ XML/src/DTDMap.cpp | 22 +------------------ XML/src/DeclHandler.cpp | 22 +------------------ XML/src/DefaultHandler.cpp | 22 +------------------ XML/src/Document.cpp | 22 +------------------ XML/src/DocumentEvent.cpp | 22 +------------------ XML/src/DocumentFragment.cpp | 22 +------------------ XML/src/DocumentType.cpp | 22 +------------------ XML/src/Element.cpp | 22 +------------------ XML/src/ElementsByTagNameList.cpp | 22 +------------------ XML/src/Entity.cpp | 22 +------------------ XML/src/EntityReference.cpp | 22 +------------------ XML/src/EntityResolver.cpp | 22 +------------------ XML/src/EntityResolverImpl.cpp | 22 +------------------ XML/src/ErrorHandler.cpp | 22 +------------------ XML/src/Event.cpp | 22 +------------------ XML/src/EventDispatcher.cpp | 22 +------------------ XML/src/EventException.cpp | 22 +------------------ XML/src/EventListener.cpp | 22 +------------------ XML/src/EventTarget.cpp | 22 +------------------ XML/src/InputSource.cpp | 22 +------------------ XML/src/LexicalHandler.cpp | 22 +------------------ XML/src/Locator.cpp | 22 +------------------ XML/src/LocatorImpl.cpp | 22 +------------------ XML/src/MutationEvent.cpp | 22 +------------------ XML/src/Name.cpp | 22 +------------------ XML/src/NamePool.cpp | 22 +------------------ XML/src/NamedNodeMap.cpp | 22 +------------------ XML/src/NamespaceStrategy.cpp | 22 +------------------ XML/src/NamespaceSupport.cpp | 22 +------------------ XML/src/Node.cpp | 22 +------------------ XML/src/NodeAppender.cpp | 22 +------------------ XML/src/NodeFilter.cpp | 22 +------------------ XML/src/NodeIterator.cpp | 22 +------------------ XML/src/NodeList.cpp | 22 +------------------ XML/src/Notation.cpp | 22 +------------------ XML/src/ParserEngine.cpp | 22 +------------------ XML/src/ProcessingInstruction.cpp | 22 +------------------ XML/src/SAXException.cpp | 22 +------------------ XML/src/SAXParser.cpp | 22 +------------------ XML/src/Text.cpp | 22 +------------------ XML/src/TreeWalker.cpp | 22 +------------------ XML/src/WhitespaceFilter.cpp | 22 +------------------ XML/src/XMLException.cpp | 22 +------------------ XML/src/XMLFilter.cpp | 22 +------------------ XML/src/XMLFilterImpl.cpp | 22 +------------------ XML/src/XMLReader.cpp | 22 +------------------ XML/src/XMLString.cpp | 22 +------------------ XML/src/XMLWriter.cpp | 22 +------------------ XML/src/expat_config.h | 22 +------------------ XML/testsuite/src/AttributesImplTest.cpp | 22 +------------------ XML/testsuite/src/AttributesImplTest.h | 22 +------------------ XML/testsuite/src/ChildNodesTest.cpp | 22 +------------------ XML/testsuite/src/ChildNodesTest.h | 22 +------------------ XML/testsuite/src/DOMTestSuite.cpp | 22 +------------------ XML/testsuite/src/DOMTestSuite.h | 22 +------------------ XML/testsuite/src/DocumentTest.cpp | 22 +------------------ XML/testsuite/src/DocumentTest.h | 22 +------------------ XML/testsuite/src/DocumentTypeTest.cpp | 22 +------------------ XML/testsuite/src/DocumentTypeTest.h | 22 +------------------ XML/testsuite/src/Driver.cpp | 22 +------------------ XML/testsuite/src/ElementTest.cpp | 22 +------------------ XML/testsuite/src/ElementTest.h | 22 +------------------ XML/testsuite/src/EventTest.cpp | 22 +------------------ XML/testsuite/src/EventTest.h | 22 +------------------ XML/testsuite/src/NamePoolTest.cpp | 22 +------------------ XML/testsuite/src/NamePoolTest.h | 22 +------------------ XML/testsuite/src/NameTest.cpp | 22 +------------------ XML/testsuite/src/NameTest.h | 22 +------------------ XML/testsuite/src/NamespaceSupportTest.cpp | 22 +------------------ XML/testsuite/src/NamespaceSupportTest.h | 22 +------------------ XML/testsuite/src/NodeAppenderTest.cpp | 22 +------------------ XML/testsuite/src/NodeAppenderTest.h | 22 +------------------ XML/testsuite/src/NodeIteratorTest.cpp | 22 +------------------ XML/testsuite/src/NodeIteratorTest.h | 22 +------------------ XML/testsuite/src/NodeTest.cpp | 22 +------------------ XML/testsuite/src/NodeTest.h | 22 +------------------ XML/testsuite/src/ParserWriterTest.cpp | 22 +------------------ XML/testsuite/src/ParserWriterTest.h | 22 +------------------ XML/testsuite/src/SAXParserTest.cpp | 22 +------------------ XML/testsuite/src/SAXParserTest.h | 22 +------------------ XML/testsuite/src/SAXTestSuite.cpp | 22 +------------------ XML/testsuite/src/SAXTestSuite.h | 22 +------------------ XML/testsuite/src/TextTest.cpp | 22 +------------------ XML/testsuite/src/TextTest.h | 22 +------------------ XML/testsuite/src/TreeWalkerTest.cpp | 22 +------------------ XML/testsuite/src/TreeWalkerTest.h | 22 +------------------ XML/testsuite/src/WinCEDriver.cpp | 22 +------------------ XML/testsuite/src/WinDriver.cpp | 22 +------------------ XML/testsuite/src/XMLTestSuite.cpp | 22 +------------------ XML/testsuite/src/XMLTestSuite.h | 22 +------------------ XML/testsuite/src/XMLWriterTest.cpp | 22 +------------------ XML/testsuite/src/XMLWriterTest.h | 22 +------------------ Zip/include/Poco/Zip/Add.h | 22 +------------------ Zip/include/Poco/Zip/AutoDetectStream.h | 22 +------------------ Zip/include/Poco/Zip/Compress.h | 22 +------------------ Zip/include/Poco/Zip/Decompress.h | 22 +------------------ Zip/include/Poco/Zip/Delete.h | 22 +------------------ Zip/include/Poco/Zip/Keep.h | 22 +------------------ Zip/include/Poco/Zip/ParseCallback.h | 22 +------------------ Zip/include/Poco/Zip/PartialStream.h | 22 +------------------ Zip/include/Poco/Zip/Rename.h | 22 +------------------ Zip/include/Poco/Zip/Replace.h | 22 +------------------ Zip/include/Poco/Zip/SkipCallback.h | 22 +------------------ Zip/include/Poco/Zip/Zip.h | 22 +------------------ Zip/include/Poco/Zip/ZipArchive.h | 22 +------------------ Zip/include/Poco/Zip/ZipArchiveInfo.h | 22 +------------------ Zip/include/Poco/Zip/ZipCommon.h | 22 +------------------ Zip/include/Poco/Zip/ZipDataInfo.h | 22 +------------------ Zip/include/Poco/Zip/ZipException.h | 22 +------------------ Zip/include/Poco/Zip/ZipFileInfo.h | 22 +------------------ Zip/include/Poco/Zip/ZipLocalFileHeader.h | 22 +------------------ Zip/include/Poco/Zip/ZipManipulator.h | 22 +------------------ Zip/include/Poco/Zip/ZipOperation.h | 22 +------------------ Zip/include/Poco/Zip/ZipStream.h | 22 +------------------ Zip/include/Poco/Zip/ZipUtil.h | 22 +------------------ Zip/samples/unzip/src/unzip.cpp | 22 +------------------ Zip/samples/zip/src/zip.cpp | 22 +------------------ Zip/src/Add.cpp | 22 +------------------ Zip/src/AutoDetectStream.cpp | 22 +------------------ Zip/src/Compress.cpp | 22 +------------------ Zip/src/Decompress.cpp | 22 +------------------ Zip/src/Delete.cpp | 22 +------------------ Zip/src/Keep.cpp | 22 +------------------ Zip/src/ParseCallback.cpp | 22 +------------------ Zip/src/PartialStream.cpp | 22 +------------------ Zip/src/Rename.cpp | 22 +------------------ Zip/src/Replace.cpp | 22 +------------------ Zip/src/SkipCallback.cpp | 22 +------------------ Zip/src/ZipArchive.cpp | 22 +------------------ Zip/src/ZipArchiveInfo.cpp | 22 +------------------ Zip/src/ZipCommon.cpp | 22 +------------------ Zip/src/ZipDataInfo.cpp | 22 +------------------ Zip/src/ZipException.cpp | 22 +------------------ Zip/src/ZipFileInfo.cpp | 22 +------------------ Zip/src/ZipLocalFileHeader.cpp | 22 +------------------ Zip/src/ZipManipulator.cpp | 22 +------------------ Zip/src/ZipOperation.cpp | 22 +------------------ Zip/src/ZipStream.cpp | 22 +------------------ Zip/src/ZipUtil.cpp | 22 +------------------ Zip/testsuite/src/CompressTest.cpp | 22 +------------------ Zip/testsuite/src/CompressTest.h | 22 +------------------ Zip/testsuite/src/Driver.cpp | 22 +------------------ Zip/testsuite/src/PartialStreamTest.cpp | 22 +------------------ Zip/testsuite/src/PartialStreamTest.h | 22 +------------------ Zip/testsuite/src/WinCEDriver.cpp | 22 +------------------ Zip/testsuite/src/WinDriver.cpp | 22 +------------------ Zip/testsuite/src/ZipTest.cpp | 22 +------------------ Zip/testsuite/src/ZipTest.h | 22 +------------------ Zip/testsuite/src/ZipTestSuite.cpp | 22 +------------------ Zip/testsuite/src/ZipTestSuite.h | 22 +------------------ 2109 files changed, 2117 insertions(+), 44268 deletions(-) mode change 100644 => 100755 ApacheConnector/include/ApacheApplication.h mode change 100644 => 100755 ApacheConnector/include/ApacheChannel.h mode change 100644 => 100755 ApacheConnector/include/ApacheConnector.h mode change 100644 => 100755 ApacheConnector/include/ApacheRequestHandlerFactory.h mode change 100644 => 100755 ApacheConnector/include/ApacheServerRequest.h mode change 100644 => 100755 ApacheConnector/include/ApacheServerResponse.h mode change 100644 => 100755 ApacheConnector/include/ApacheStream.h mode change 100644 => 100755 ApacheConnector/samples/FormServer/src/FormServer.cpp mode change 100644 => 100755 ApacheConnector/samples/TimeServer/src/TimeServer.cpp mode change 100644 => 100755 ApacheConnector/src/ApacheApplication.cpp mode change 100644 => 100755 ApacheConnector/src/ApacheChannel.cpp mode change 100644 => 100755 ApacheConnector/src/ApacheConnector.cpp mode change 100644 => 100755 ApacheConnector/src/ApacheRequestHandlerFactory.cpp mode change 100644 => 100755 ApacheConnector/src/ApacheServerRequest.cpp mode change 100644 => 100755 ApacheConnector/src/ApacheServerResponse.cpp mode change 100644 => 100755 ApacheConnector/src/ApacheStream.cpp mode change 100644 => 100755 CppParser/include/Poco/CppParser/Attributes.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/AttributesParser.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/BuiltIn.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/CppParser.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/CppToken.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/Decl.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/Enum.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/EnumValue.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/Function.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/NameSpace.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/Parameter.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/Parser.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/Struct.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/Symbol.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/Tokenizer.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/TypeDef.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/Utility.h mode change 100644 => 100755 CppParser/include/Poco/CppParser/Variable.h mode change 100644 => 100755 CppParser/src/Attributes.cpp mode change 100644 => 100755 CppParser/src/AttributesParser.cpp mode change 100644 => 100755 CppParser/src/BuiltIn.cpp mode change 100644 => 100755 CppParser/src/CppToken.cpp mode change 100644 => 100755 CppParser/src/Decl.cpp mode change 100644 => 100755 CppParser/src/Enum.cpp mode change 100644 => 100755 CppParser/src/EnumValue.cpp mode change 100644 => 100755 CppParser/src/Function.cpp mode change 100644 => 100755 CppParser/src/NameSpace.cpp mode change 100644 => 100755 CppParser/src/Parameter.cpp mode change 100644 => 100755 CppParser/src/Parser.cpp mode change 100644 => 100755 CppParser/src/Struct.cpp mode change 100644 => 100755 CppParser/src/Symbol.cpp mode change 100644 => 100755 CppParser/src/Tokenizer.cpp mode change 100644 => 100755 CppParser/src/TypeDef.cpp mode change 100644 => 100755 CppParser/src/Utility.cpp mode change 100644 => 100755 CppParser/src/Variable.cpp mode change 100644 => 100755 CppParser/testsuite/src/AttributesParserTest.cpp mode change 100644 => 100755 CppParser/testsuite/src/AttributesParserTest.h mode change 100644 => 100755 CppParser/testsuite/src/AttributesTestSuite.cpp mode change 100644 => 100755 CppParser/testsuite/src/AttributesTestSuite.h mode change 100644 => 100755 CppParser/testsuite/src/CppParserTest.cpp mode change 100644 => 100755 CppParser/testsuite/src/CppParserTest.h mode change 100644 => 100755 CppParser/testsuite/src/CppParserTestSuite.cpp mode change 100644 => 100755 CppParser/testsuite/src/CppParserTestSuite.h mode change 100644 => 100755 CppParser/testsuite/src/Driver.cpp mode change 100644 => 100755 CppParser/testsuite/src/WinDriver.cpp mode change 100644 => 100755 Crypto/include/Poco/Crypto/Cipher.h mode change 100644 => 100755 Crypto/include/Poco/Crypto/CipherFactory.h mode change 100644 => 100755 Crypto/include/Poco/Crypto/CipherImpl.h mode change 100644 => 100755 Crypto/include/Poco/Crypto/CipherKey.h mode change 100644 => 100755 Crypto/include/Poco/Crypto/CipherKeyImpl.h mode change 100644 => 100755 Crypto/include/Poco/Crypto/Crypto.h mode change 100644 => 100755 Crypto/include/Poco/Crypto/CryptoStream.h mode change 100644 => 100755 Crypto/include/Poco/Crypto/CryptoTransform.h mode change 100644 => 100755 Crypto/include/Poco/Crypto/DigestEngine.h mode change 100644 => 100755 Crypto/include/Poco/Crypto/OpenSSLInitializer.h mode change 100644 => 100755 Crypto/include/Poco/Crypto/RSACipherImpl.h mode change 100644 => 100755 Crypto/include/Poco/Crypto/RSADigestEngine.h mode change 100644 => 100755 Crypto/include/Poco/Crypto/RSAKey.h mode change 100644 => 100755 Crypto/include/Poco/Crypto/RSAKeyImpl.h mode change 100644 => 100755 Crypto/include/Poco/Crypto/X509Certificate.h mode change 100644 => 100755 Crypto/samples/genrsakey/src/genrsakey.cpp mode change 100644 => 100755 Crypto/src/Cipher.cpp mode change 100644 => 100755 Crypto/src/CipherFactory.cpp mode change 100644 => 100755 Crypto/src/CipherImpl.cpp mode change 100644 => 100755 Crypto/src/CipherKey.cpp mode change 100644 => 100755 Crypto/src/CipherKeyImpl.cpp mode change 100644 => 100755 Crypto/src/CryptoStream.cpp mode change 100644 => 100755 Crypto/src/CryptoTransform.cpp mode change 100644 => 100755 Crypto/src/DigestEngine.cpp mode change 100644 => 100755 Crypto/src/OpenSSLInitializer.cpp mode change 100644 => 100755 Crypto/src/RSACipherImpl.cpp mode change 100644 => 100755 Crypto/src/RSADigestEngine.cpp mode change 100644 => 100755 Crypto/src/RSAKey.cpp mode change 100644 => 100755 Crypto/src/RSAKeyImpl.cpp mode change 100644 => 100755 Crypto/src/X509Certificate.cpp mode change 100644 => 100755 Crypto/testsuite/src/CryptoTest.cpp mode change 100644 => 100755 Crypto/testsuite/src/CryptoTest.h mode change 100644 => 100755 Crypto/testsuite/src/CryptoTestSuite.cpp mode change 100644 => 100755 Crypto/testsuite/src/CryptoTestSuite.h mode change 100644 => 100755 Crypto/testsuite/src/DigestEngineTest.cpp mode change 100644 => 100755 Crypto/testsuite/src/DigestEngineTest.h mode change 100644 => 100755 Crypto/testsuite/src/Driver.cpp mode change 100644 => 100755 Crypto/testsuite/src/RSATest.cpp mode change 100644 => 100755 Crypto/testsuite/src/RSATest.h mode change 100644 => 100755 Crypto/testsuite/src/WinCEDriver.cpp mode change 100644 => 100755 Crypto/testsuite/src/WinDriver.cpp mode change 100644 => 100755 Data/MySQL/include/Poco/Data/MySQL/Binder.h mode change 100644 => 100755 Data/MySQL/include/Poco/Data/MySQL/Connector.h mode change 100644 => 100755 Data/MySQL/include/Poco/Data/MySQL/Extractor.h mode change 100644 => 100755 Data/MySQL/include/Poco/Data/MySQL/MySQL.h mode change 100644 => 100755 Data/MySQL/include/Poco/Data/MySQL/MySQLException.h mode change 100644 => 100755 Data/MySQL/include/Poco/Data/MySQL/MySQLStatementImpl.h mode change 100644 => 100755 Data/MySQL/include/Poco/Data/MySQL/ResultMetadata.h mode change 100644 => 100755 Data/MySQL/include/Poco/Data/MySQL/SessionHandle.h mode change 100644 => 100755 Data/MySQL/include/Poco/Data/MySQL/SessionImpl.h mode change 100644 => 100755 Data/MySQL/include/Poco/Data/MySQL/StatementExecutor.h mode change 100644 => 100755 Data/MySQL/include/Poco/Data/MySQL/Utility.h mode change 100644 => 100755 Data/MySQL/src/Binder.cpp mode change 100644 => 100755 Data/MySQL/src/Connector.cpp mode change 100644 => 100755 Data/MySQL/src/Extractor.cpp mode change 100644 => 100755 Data/MySQL/src/MySQLException.cpp mode change 100644 => 100755 Data/MySQL/src/MySQLStatementImpl.cpp mode change 100644 => 100755 Data/MySQL/src/ResultMetadata.cpp mode change 100644 => 100755 Data/MySQL/src/SessionHandle.cpp mode change 100644 => 100755 Data/MySQL/src/SessionImpl.cpp mode change 100644 => 100755 Data/MySQL/src/StatementExecutor.cpp mode change 100644 => 100755 Data/MySQL/src/Utility.cpp mode change 100644 => 100755 Data/MySQL/testsuite/src/Driver.cpp mode change 100644 => 100755 Data/MySQL/testsuite/src/MySQLTest.cpp mode change 100644 => 100755 Data/MySQL/testsuite/src/MySQLTest.h mode change 100644 => 100755 Data/MySQL/testsuite/src/MySQLTestSuite.cpp mode change 100644 => 100755 Data/MySQL/testsuite/src/MySQLTestSuite.h mode change 100644 => 100755 Data/MySQL/testsuite/src/SQLExecutor.cpp mode change 100644 => 100755 Data/MySQL/testsuite/src/SQLExecutor.h mode change 100644 => 100755 Data/MySQL/testsuite/src/WinDriver.cpp mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/Binder.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/ConnectionHandle.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/Connector.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/Diagnostics.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/EnvironmentHandle.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/Error.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/Extractor.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/Handle.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/ODBC.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/ODBCException.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/ODBCMetaColumn.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/ODBCStatementImpl.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/Parameter.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/Preparator.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/SessionImpl.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/TypeInfo.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/Unicode.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/Unicode_UNIXODBC.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/Unicode_WIN32.h mode change 100644 => 100755 Data/ODBC/include/Poco/Data/ODBC/Utility.h mode change 100644 => 100755 Data/ODBC/src/Binder.cpp mode change 100644 => 100755 Data/ODBC/src/ConnectionHandle.cpp mode change 100644 => 100755 Data/ODBC/src/Connector.cpp mode change 100644 => 100755 Data/ODBC/src/EnvironmentHandle.cpp mode change 100644 => 100755 Data/ODBC/src/Extractor.cpp mode change 100644 => 100755 Data/ODBC/src/ODBCException.cpp mode change 100644 => 100755 Data/ODBC/src/ODBCMetaColumn.cpp mode change 100644 => 100755 Data/ODBC/src/ODBCStatementImpl.cpp mode change 100644 => 100755 Data/ODBC/src/Parameter.cpp mode change 100644 => 100755 Data/ODBC/src/Preparator.cpp mode change 100644 => 100755 Data/ODBC/src/SessionImpl.cpp mode change 100644 => 100755 Data/ODBC/src/TypeInfo.cpp mode change 100644 => 100755 Data/ODBC/src/Unicode.cpp mode change 100644 => 100755 Data/ODBC/src/Unicode_UNIXODBC.cpp mode change 100644 => 100755 Data/ODBC/src/Unicode_WIN32.cpp mode change 100644 => 100755 Data/ODBC/src/Utility.cpp mode change 100644 => 100755 Data/ODBC/testsuite/src/Driver.cpp mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCAccessTest.cpp mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCAccessTest.h mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCDB2Test.cpp mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCDB2Test.h mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCMySQLTest.cpp mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCMySQLTest.h mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCOracleTest.cpp mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCOracleTest.h mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCPostgreSQLTest.cpp mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCPostgreSQLTest.h mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCSQLServerTest.cpp mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCSQLServerTest.h mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCSQLiteTest.cpp mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCSQLiteTest.h mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCTest.cpp mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCTest.h mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCTestSuite.cpp mode change 100644 => 100755 Data/ODBC/testsuite/src/ODBCTestSuite.h mode change 100644 => 100755 Data/ODBC/testsuite/src/SQLExecutor.cpp mode change 100644 => 100755 Data/ODBC/testsuite/src/SQLExecutor.h mode change 100644 => 100755 Data/ODBC/testsuite/src/WinDriver.cpp mode change 100644 => 100755 Data/SQLite/include/Poco/Data/SQLite/Binder.h mode change 100644 => 100755 Data/SQLite/include/Poco/Data/SQLite/Connector.h mode change 100644 => 100755 Data/SQLite/include/Poco/Data/SQLite/Extractor.h mode change 100644 => 100755 Data/SQLite/include/Poco/Data/SQLite/Notifier.h mode change 100644 => 100755 Data/SQLite/include/Poco/Data/SQLite/SQLite.h mode change 100644 => 100755 Data/SQLite/include/Poco/Data/SQLite/SQLiteException.h mode change 100644 => 100755 Data/SQLite/include/Poco/Data/SQLite/SQLiteStatementImpl.h mode change 100644 => 100755 Data/SQLite/include/Poco/Data/SQLite/SessionImpl.h mode change 100644 => 100755 Data/SQLite/include/Poco/Data/SQLite/Utility.h mode change 100644 => 100755 Data/SQLite/src/Binder.cpp mode change 100644 => 100755 Data/SQLite/src/Connector.cpp mode change 100644 => 100755 Data/SQLite/src/Extractor.cpp mode change 100644 => 100755 Data/SQLite/src/Notifier.cpp mode change 100644 => 100755 Data/SQLite/src/SQLiteException.cpp mode change 100644 => 100755 Data/SQLite/src/SQLiteStatementImpl.cpp mode change 100644 => 100755 Data/SQLite/src/SessionImpl.cpp mode change 100644 => 100755 Data/SQLite/src/Utility.cpp mode change 100644 => 100755 Data/SQLite/testsuite/src/Driver.cpp mode change 100644 => 100755 Data/SQLite/testsuite/src/SQLiteTest.cpp mode change 100644 => 100755 Data/SQLite/testsuite/src/SQLiteTest.h mode change 100644 => 100755 Data/SQLite/testsuite/src/SQLiteTestSuite.cpp mode change 100644 => 100755 Data/SQLite/testsuite/src/SQLiteTestSuite.h mode change 100644 => 100755 Data/SQLite/testsuite/src/WinCEDriver.cpp mode change 100644 => 100755 Data/SQLite/testsuite/src/WinDriver.cpp mode change 100644 => 100755 Data/include/Poco/Data/AbstractBinder.h mode change 100644 => 100755 Data/include/Poco/Data/AbstractBinding.h mode change 100644 => 100755 Data/include/Poco/Data/AbstractExtraction.h mode change 100644 => 100755 Data/include/Poco/Data/AbstractExtractor.h mode change 100644 => 100755 Data/include/Poco/Data/AbstractPreparation.h mode change 100644 => 100755 Data/include/Poco/Data/AbstractPreparator.h mode change 100644 => 100755 Data/include/Poco/Data/AbstractSessionImpl.h mode change 100644 => 100755 Data/include/Poco/Data/ArchiveStrategy.h mode change 100644 => 100755 Data/include/Poco/Data/AutoTransaction.h mode change 100644 => 100755 Data/include/Poco/Data/Binding.h mode change 100644 => 100755 Data/include/Poco/Data/Bulk.h mode change 100644 => 100755 Data/include/Poco/Data/BulkBinding.h mode change 100644 => 100755 Data/include/Poco/Data/BulkExtraction.h mode change 100644 => 100755 Data/include/Poco/Data/Column.h mode change 100644 => 100755 Data/include/Poco/Data/Connector.h mode change 100644 => 100755 Data/include/Poco/Data/Constants.h mode change 100644 => 100755 Data/include/Poco/Data/Data.h mode change 100644 => 100755 Data/include/Poco/Data/DataException.h mode change 100644 => 100755 Data/include/Poco/Data/Date.h mode change 100644 => 100755 Data/include/Poco/Data/DynamicDateTime.h mode change 100644 => 100755 Data/include/Poco/Data/DynamicLOB.h mode change 100644 => 100755 Data/include/Poco/Data/Extraction.h mode change 100644 => 100755 Data/include/Poco/Data/LOB.h mode change 100644 => 100755 Data/include/Poco/Data/LOBStream.h mode change 100644 => 100755 Data/include/Poco/Data/Limit.h mode change 100644 => 100755 Data/include/Poco/Data/MetaColumn.h mode change 100644 => 100755 Data/include/Poco/Data/PooledSessionHolder.h mode change 100644 => 100755 Data/include/Poco/Data/PooledSessionImpl.h mode change 100644 => 100755 Data/include/Poco/Data/Position.h mode change 100644 => 100755 Data/include/Poco/Data/Preparation.h mode change 100644 => 100755 Data/include/Poco/Data/Range.h mode change 100644 => 100755 Data/include/Poco/Data/RecordSet.h mode change 100644 => 100755 Data/include/Poco/Data/Row.h mode change 100644 => 100755 Data/include/Poco/Data/RowFilter.h mode change 100644 => 100755 Data/include/Poco/Data/RowFormatter.h mode change 100644 => 100755 Data/include/Poco/Data/RowIterator.h mode change 100644 => 100755 Data/include/Poco/Data/SQLChannel.h mode change 100644 => 100755 Data/include/Poco/Data/Session.h mode change 100644 => 100755 Data/include/Poco/Data/SessionFactory.h mode change 100644 => 100755 Data/include/Poco/Data/SessionImpl.h mode change 100644 => 100755 Data/include/Poco/Data/SessionPool.h mode change 100644 => 100755 Data/include/Poco/Data/SessionPoolContainer.h mode change 100644 => 100755 Data/include/Poco/Data/SimpleRowFormatter.h mode change 100644 => 100755 Data/include/Poco/Data/Statement.h mode change 100644 => 100755 Data/include/Poco/Data/StatementCreator.h mode change 100644 => 100755 Data/include/Poco/Data/StatementImpl.h mode change 100644 => 100755 Data/include/Poco/Data/Time.h mode change 100644 => 100755 Data/include/Poco/Data/Transaction.h mode change 100644 => 100755 Data/include/Poco/Data/TypeHandler.h mode change 100644 => 100755 Data/samples/Binding/src/Binding.cpp mode change 100644 => 100755 Data/samples/RecordSet/src/RecordSet.cpp mode change 100644 => 100755 Data/samples/RowFormatter/src/RowFormatter.cpp mode change 100644 => 100755 Data/samples/Tuple/src/Tuple.cpp mode change 100644 => 100755 Data/samples/TypeHandler/src/TypeHandler.cpp mode change 100644 => 100755 Data/samples/WebNotifier/src/WebNotifier.cpp mode change 100644 => 100755 Data/src/AbstractBinder.cpp mode change 100644 => 100755 Data/src/AbstractBinding.cpp mode change 100644 => 100755 Data/src/AbstractExtraction.cpp mode change 100644 => 100755 Data/src/AbstractExtractor.cpp mode change 100644 => 100755 Data/src/AbstractPreparation.cpp mode change 100644 => 100755 Data/src/AbstractPreparator.cpp mode change 100644 => 100755 Data/src/ArchiveStrategy.cpp mode change 100644 => 100755 Data/src/Bulk.cpp mode change 100644 => 100755 Data/src/Connector.cpp mode change 100644 => 100755 Data/src/DataException.cpp mode change 100644 => 100755 Data/src/Date.cpp mode change 100644 => 100755 Data/src/DynamicLOB.cpp mode change 100644 => 100755 Data/src/Limit.cpp mode change 100644 => 100755 Data/src/MetaColumn.cpp mode change 100644 => 100755 Data/src/PooledSessionHolder.cpp mode change 100644 => 100755 Data/src/PooledSessionImpl.cpp mode change 100644 => 100755 Data/src/Position.cpp mode change 100644 => 100755 Data/src/Range.cpp mode change 100644 => 100755 Data/src/RecordSet.cpp mode change 100644 => 100755 Data/src/Row.cpp mode change 100644 => 100755 Data/src/RowFilter.cpp mode change 100644 => 100755 Data/src/RowFormatter.cpp mode change 100644 => 100755 Data/src/RowIterator.cpp mode change 100644 => 100755 Data/src/SQLChannel.cpp mode change 100644 => 100755 Data/src/Session.cpp mode change 100644 => 100755 Data/src/SessionFactory.cpp mode change 100644 => 100755 Data/src/SessionImpl.cpp mode change 100644 => 100755 Data/src/SessionPool.cpp mode change 100644 => 100755 Data/src/SessionPoolContainer.cpp mode change 100644 => 100755 Data/src/SimpleRowFormatter.cpp mode change 100644 => 100755 Data/src/Statement.cpp mode change 100644 => 100755 Data/src/StatementCreator.cpp mode change 100644 => 100755 Data/src/StatementImpl.cpp mode change 100644 => 100755 Data/src/Time.cpp mode change 100644 => 100755 Data/src/Transaction.cpp mode change 100644 => 100755 Data/testsuite/src/Binder.cpp mode change 100644 => 100755 Data/testsuite/src/Binder.h mode change 100644 => 100755 Data/testsuite/src/Connector.cpp mode change 100644 => 100755 Data/testsuite/src/Connector.h mode change 100644 => 100755 Data/testsuite/src/DataTest.cpp mode change 100644 => 100755 Data/testsuite/src/DataTest.h mode change 100644 => 100755 Data/testsuite/src/DataTestSuite.cpp mode change 100644 => 100755 Data/testsuite/src/DataTestSuite.h mode change 100644 => 100755 Data/testsuite/src/Driver.cpp mode change 100644 => 100755 Data/testsuite/src/Extractor.cpp mode change 100644 => 100755 Data/testsuite/src/Extractor.h mode change 100644 => 100755 Data/testsuite/src/Preparator.cpp mode change 100644 => 100755 Data/testsuite/src/Preparator.h mode change 100644 => 100755 Data/testsuite/src/SessionImpl.cpp mode change 100644 => 100755 Data/testsuite/src/SessionImpl.h mode change 100644 => 100755 Data/testsuite/src/SessionPoolTest.cpp mode change 100644 => 100755 Data/testsuite/src/SessionPoolTest.h mode change 100644 => 100755 Data/testsuite/src/StatementImpl.cpp mode change 100644 => 100755 Data/testsuite/src/StatementImpl.h mode change 100644 => 100755 Data/testsuite/src/TestStatementImpl.cpp mode change 100644 => 100755 Data/testsuite/src/TestStatementImpl.h mode change 100644 => 100755 Data/testsuite/src/WinCEDriver.cpp mode change 100644 => 100755 Data/testsuite/src/WinDriver.cpp mode change 100644 => 100755 Foundation/include/Poco/ASCIIEncoding.h mode change 100644 => 100755 Foundation/include/Poco/AbstractCache.h mode change 100644 => 100755 Foundation/include/Poco/AbstractDelegate.h mode change 100644 => 100755 Foundation/include/Poco/AbstractEvent.h mode change 100644 => 100755 Foundation/include/Poco/AbstractObserver.h mode change 100644 => 100755 Foundation/include/Poco/AbstractPriorityDelegate.h mode change 100644 => 100755 Foundation/include/Poco/AbstractStrategy.h mode change 100644 => 100755 Foundation/include/Poco/AccessExpirationDecorator.h mode change 100644 => 100755 Foundation/include/Poco/AccessExpireCache.h mode change 100644 => 100755 Foundation/include/Poco/AccessExpireLRUCache.h mode change 100644 => 100755 Foundation/include/Poco/AccessExpireStrategy.h mode change 100644 => 100755 Foundation/include/Poco/ActiveDispatcher.h mode change 100644 => 100755 Foundation/include/Poco/ActiveMethod.h mode change 100644 => 100755 Foundation/include/Poco/ActiveResult.h mode change 100644 => 100755 Foundation/include/Poco/ActiveRunnable.h mode change 100644 => 100755 Foundation/include/Poco/ActiveStarter.h mode change 100644 => 100755 Foundation/include/Poco/Activity.h mode change 100644 => 100755 Foundation/include/Poco/Alignment.h mode change 100644 => 100755 Foundation/include/Poco/Any.h mode change 100644 => 100755 Foundation/include/Poco/ArchiveStrategy.h mode change 100644 => 100755 Foundation/include/Poco/Array.h mode change 100644 => 100755 Foundation/include/Poco/Ascii.h mode change 100644 => 100755 Foundation/include/Poco/AsyncChannel.h mode change 100644 => 100755 Foundation/include/Poco/AtomicCounter.h mode change 100644 => 100755 Foundation/include/Poco/AutoPtr.h mode change 100644 => 100755 Foundation/include/Poco/AutoReleasePool.h mode change 100644 => 100755 Foundation/include/Poco/Base32Decoder.h mode change 100644 => 100755 Foundation/include/Poco/Base32Encoder.h mode change 100644 => 100755 Foundation/include/Poco/Base64Decoder.h mode change 100644 => 100755 Foundation/include/Poco/Base64Encoder.h mode change 100644 => 100755 Foundation/include/Poco/BasicEvent.h mode change 100644 => 100755 Foundation/include/Poco/BinaryReader.h mode change 100644 => 100755 Foundation/include/Poco/BinaryWriter.h mode change 100644 => 100755 Foundation/include/Poco/Buffer.h mode change 100644 => 100755 Foundation/include/Poco/BufferAllocator.h mode change 100644 => 100755 Foundation/include/Poco/BufferedBidirectionalStreamBuf.h mode change 100644 => 100755 Foundation/include/Poco/BufferedStreamBuf.h mode change 100644 => 100755 Foundation/include/Poco/Bugcheck.h mode change 100644 => 100755 Foundation/include/Poco/ByteOrder.h mode change 100644 => 100755 Foundation/include/Poco/Channel.h mode change 100644 => 100755 Foundation/include/Poco/Checksum.h mode change 100644 => 100755 Foundation/include/Poco/ClassLibrary.h mode change 100644 => 100755 Foundation/include/Poco/ClassLoader.h mode change 100644 => 100755 Foundation/include/Poco/Clock.h mode change 100644 => 100755 Foundation/include/Poco/Condition.h mode change 100644 => 100755 Foundation/include/Poco/Config.h mode change 100644 => 100755 Foundation/include/Poco/Configurable.h mode change 100644 => 100755 Foundation/include/Poco/ConsoleChannel.h mode change 100644 => 100755 Foundation/include/Poco/CountingStream.h mode change 100644 => 100755 Foundation/include/Poco/DateTime.h mode change 100644 => 100755 Foundation/include/Poco/DateTimeFormat.h mode change 100644 => 100755 Foundation/include/Poco/DateTimeFormatter.h mode change 100644 => 100755 Foundation/include/Poco/DateTimeParser.h mode change 100644 => 100755 Foundation/include/Poco/Debugger.h mode change 100644 => 100755 Foundation/include/Poco/DefaultStrategy.h mode change 100644 => 100755 Foundation/include/Poco/DeflatingStream.h mode change 100644 => 100755 Foundation/include/Poco/Delegate.h mode change 100644 => 100755 Foundation/include/Poco/DigestEngine.h mode change 100644 => 100755 Foundation/include/Poco/DigestStream.h mode change 100644 => 100755 Foundation/include/Poco/DirectoryIterator.h mode change 100644 => 100755 Foundation/include/Poco/DirectoryIteratorStrategy.h mode change 100644 => 100755 Foundation/include/Poco/DirectoryIterator_UNIX.h mode change 100644 => 100755 Foundation/include/Poco/DirectoryIterator_VMS.h mode change 100644 => 100755 Foundation/include/Poco/DirectoryIterator_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/DirectoryIterator_WIN32U.h mode change 100644 => 100755 Foundation/include/Poco/DirectoryWatcher.h mode change 100644 => 100755 Foundation/include/Poco/Dynamic/Pair.h mode change 100644 => 100755 Foundation/include/Poco/Dynamic/Struct.h mode change 100644 => 100755 Foundation/include/Poco/Dynamic/Var.h mode change 100644 => 100755 Foundation/include/Poco/Dynamic/VarHolder.h mode change 100644 => 100755 Foundation/include/Poco/Dynamic/VarIterator.h mode change 100644 => 100755 Foundation/include/Poco/DynamicAny.h mode change 100644 => 100755 Foundation/include/Poco/DynamicAnyHolder.h mode change 100644 => 100755 Foundation/include/Poco/DynamicFactory.h mode change 100644 => 100755 Foundation/include/Poco/DynamicStruct.h mode change 100644 => 100755 Foundation/include/Poco/Environment.h mode change 100644 => 100755 Foundation/include/Poco/Environment_UNIX.h mode change 100644 => 100755 Foundation/include/Poco/Environment_VMS.h mode change 100644 => 100755 Foundation/include/Poco/Environment_VX.h mode change 100644 => 100755 Foundation/include/Poco/Environment_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/Environment_WIN32U.h mode change 100644 => 100755 Foundation/include/Poco/Environment_WINCE.h mode change 100644 => 100755 Foundation/include/Poco/Error.h mode change 100644 => 100755 Foundation/include/Poco/ErrorHandler.h mode change 100644 => 100755 Foundation/include/Poco/Event.h mode change 100644 => 100755 Foundation/include/Poco/EventArgs.h mode change 100644 => 100755 Foundation/include/Poco/EventLogChannel.h mode change 100644 => 100755 Foundation/include/Poco/Event_POSIX.h mode change 100644 => 100755 Foundation/include/Poco/Event_VX.h mode change 100644 => 100755 Foundation/include/Poco/Event_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/Exception.h mode change 100644 => 100755 Foundation/include/Poco/ExpirationDecorator.h mode change 100644 => 100755 Foundation/include/Poco/Expire.h mode change 100644 => 100755 Foundation/include/Poco/ExpireCache.h mode change 100644 => 100755 Foundation/include/Poco/ExpireLRUCache.h mode change 100644 => 100755 Foundation/include/Poco/ExpireStrategy.h mode change 100644 => 100755 Foundation/include/Poco/FIFOBuffer.h mode change 100644 => 100755 Foundation/include/Poco/FIFOBufferStream.h mode change 100644 => 100755 Foundation/include/Poco/FIFOEvent.h mode change 100644 => 100755 Foundation/include/Poco/FIFOStrategy.h mode change 100644 => 100755 Foundation/include/Poco/FPEnvironment.h mode change 100644 => 100755 Foundation/include/Poco/FPEnvironment_C99.h mode change 100644 => 100755 Foundation/include/Poco/FPEnvironment_DEC.h mode change 100644 => 100755 Foundation/include/Poco/FPEnvironment_DUMMY.h mode change 100644 => 100755 Foundation/include/Poco/FPEnvironment_SUN.h mode change 100644 => 100755 Foundation/include/Poco/FPEnvironment_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/File.h mode change 100644 => 100755 Foundation/include/Poco/FileChannel.h mode change 100644 => 100755 Foundation/include/Poco/FileStream.h mode change 100644 => 100755 Foundation/include/Poco/FileStreamFactory.h mode change 100644 => 100755 Foundation/include/Poco/FileStream_POSIX.h mode change 100644 => 100755 Foundation/include/Poco/FileStream_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/File_UNIX.h mode change 100644 => 100755 Foundation/include/Poco/File_VMS.h mode change 100644 => 100755 Foundation/include/Poco/File_VX.h mode change 100644 => 100755 Foundation/include/Poco/File_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/File_WIN32U.h mode change 100644 => 100755 Foundation/include/Poco/File_WINCE.h mode change 100644 => 100755 Foundation/include/Poco/Format.h mode change 100644 => 100755 Foundation/include/Poco/Formatter.h mode change 100644 => 100755 Foundation/include/Poco/FormattingChannel.h mode change 100644 => 100755 Foundation/include/Poco/Foundation.h mode change 100644 => 100755 Foundation/include/Poco/FunctionDelegate.h mode change 100644 => 100755 Foundation/include/Poco/FunctionPriorityDelegate.h mode change 100644 => 100755 Foundation/include/Poco/Glob.h mode change 100644 => 100755 Foundation/include/Poco/HMACEngine.h mode change 100644 => 100755 Foundation/include/Poco/Hash.h mode change 100644 => 100755 Foundation/include/Poco/HashFunction.h mode change 100644 => 100755 Foundation/include/Poco/HashMap.h mode change 100644 => 100755 Foundation/include/Poco/HashSet.h mode change 100644 => 100755 Foundation/include/Poco/HashStatistic.h mode change 100644 => 100755 Foundation/include/Poco/HashTable.h mode change 100644 => 100755 Foundation/include/Poco/HexBinaryDecoder.h mode change 100644 => 100755 Foundation/include/Poco/HexBinaryEncoder.h mode change 100644 => 100755 Foundation/include/Poco/InflatingStream.h mode change 100644 => 100755 Foundation/include/Poco/Instantiator.h mode change 100644 => 100755 Foundation/include/Poco/KeyValueArgs.h mode change 100644 => 100755 Foundation/include/Poco/LRUCache.h mode change 100644 => 100755 Foundation/include/Poco/LRUStrategy.h mode change 100644 => 100755 Foundation/include/Poco/Latin1Encoding.h mode change 100644 => 100755 Foundation/include/Poco/Latin2Encoding.h mode change 100644 => 100755 Foundation/include/Poco/Latin9Encoding.h mode change 100644 => 100755 Foundation/include/Poco/LineEndingConverter.h mode change 100644 => 100755 Foundation/include/Poco/LinearHashTable.h mode change 100644 => 100755 Foundation/include/Poco/ListMap.h mode change 100644 => 100755 Foundation/include/Poco/LocalDateTime.h mode change 100644 => 100755 Foundation/include/Poco/LogFile.h mode change 100644 => 100755 Foundation/include/Poco/LogFile_STD.h mode change 100644 => 100755 Foundation/include/Poco/LogFile_VMS.h mode change 100644 => 100755 Foundation/include/Poco/LogFile_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/LogFile_WIN32U.h mode change 100644 => 100755 Foundation/include/Poco/LogStream.h mode change 100644 => 100755 Foundation/include/Poco/Logger.h mode change 100644 => 100755 Foundation/include/Poco/LoggingFactory.h mode change 100644 => 100755 Foundation/include/Poco/LoggingRegistry.h mode change 100644 => 100755 Foundation/include/Poco/MD4Engine.h mode change 100644 => 100755 Foundation/include/Poco/MD5Engine.h mode change 100644 => 100755 Foundation/include/Poco/Manifest.h mode change 100644 => 100755 Foundation/include/Poco/MemoryPool.h mode change 100644 => 100755 Foundation/include/Poco/MemoryStream.h mode change 100644 => 100755 Foundation/include/Poco/Message.h mode change 100644 => 100755 Foundation/include/Poco/MetaObject.h mode change 100644 => 100755 Foundation/include/Poco/MetaProgramming.h mode change 100644 => 100755 Foundation/include/Poco/Mutex.h mode change 100644 => 100755 Foundation/include/Poco/Mutex_POSIX.h mode change 100644 => 100755 Foundation/include/Poco/Mutex_VX.h mode change 100644 => 100755 Foundation/include/Poco/Mutex_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/Mutex_WINCE.h mode change 100644 => 100755 Foundation/include/Poco/NObserver.h mode change 100644 => 100755 Foundation/include/Poco/NamedEvent.h mode change 100644 => 100755 Foundation/include/Poco/NamedEvent_Android.h mode change 100644 => 100755 Foundation/include/Poco/NamedEvent_UNIX.h mode change 100644 => 100755 Foundation/include/Poco/NamedEvent_VMS.h mode change 100644 => 100755 Foundation/include/Poco/NamedEvent_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/NamedEvent_WIN32U.h mode change 100644 => 100755 Foundation/include/Poco/NamedMutex.h mode change 100644 => 100755 Foundation/include/Poco/NamedMutex_Android.h mode change 100644 => 100755 Foundation/include/Poco/NamedMutex_UNIX.h mode change 100644 => 100755 Foundation/include/Poco/NamedMutex_VMS.h mode change 100644 => 100755 Foundation/include/Poco/NamedMutex_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/NamedMutex_WIN32U.h mode change 100644 => 100755 Foundation/include/Poco/NamedTuple.h mode change 100644 => 100755 Foundation/include/Poco/NestedDiagnosticContext.h mode change 100644 => 100755 Foundation/include/Poco/Notification.h mode change 100644 => 100755 Foundation/include/Poco/NotificationCenter.h mode change 100644 => 100755 Foundation/include/Poco/NotificationQueue.h mode change 100644 => 100755 Foundation/include/Poco/NotificationStrategy.h mode change 100644 => 100755 Foundation/include/Poco/NullChannel.h mode change 100644 => 100755 Foundation/include/Poco/NullStream.h mode change 100644 => 100755 Foundation/include/Poco/Nullable.h mode change 100644 => 100755 Foundation/include/Poco/NumberFormatter.h mode change 100644 => 100755 Foundation/include/Poco/NumberParser.h mode change 100644 => 100755 Foundation/include/Poco/NumericString.h mode change 100644 => 100755 Foundation/include/Poco/ObjectPool.h mode change 100644 => 100755 Foundation/include/Poco/Observer.h mode change 100644 => 100755 Foundation/include/Poco/OpcomChannel.h mode change 100644 => 100755 Foundation/include/Poco/Optional.h mode change 100644 => 100755 Foundation/include/Poco/PBKDF2Engine.h mode change 100644 => 100755 Foundation/include/Poco/Path.h mode change 100644 => 100755 Foundation/include/Poco/Path_UNIX.h mode change 100644 => 100755 Foundation/include/Poco/Path_VMS.h mode change 100644 => 100755 Foundation/include/Poco/Path_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/Path_WIN32U.h mode change 100644 => 100755 Foundation/include/Poco/Path_WINCE.h mode change 100644 => 100755 Foundation/include/Poco/PatternFormatter.h mode change 100644 => 100755 Foundation/include/Poco/Pipe.h mode change 100644 => 100755 Foundation/include/Poco/PipeImpl.h mode change 100644 => 100755 Foundation/include/Poco/PipeImpl_DUMMY.h mode change 100644 => 100755 Foundation/include/Poco/PipeImpl_POSIX.h mode change 100644 => 100755 Foundation/include/Poco/PipeImpl_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/PipeStream.h mode change 100644 => 100755 Foundation/include/Poco/Platform.h mode change 100644 => 100755 Foundation/include/Poco/Platform_POSIX.h mode change 100644 => 100755 Foundation/include/Poco/Platform_VMS.h mode change 100644 => 100755 Foundation/include/Poco/Platform_VX.h mode change 100644 => 100755 Foundation/include/Poco/Platform_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/Poco.h mode change 100644 => 100755 Foundation/include/Poco/PriorityDelegate.h mode change 100644 => 100755 Foundation/include/Poco/PriorityEvent.h mode change 100644 => 100755 Foundation/include/Poco/PriorityExpire.h mode change 100644 => 100755 Foundation/include/Poco/PriorityNotificationQueue.h mode change 100644 => 100755 Foundation/include/Poco/PriorityStrategy.h mode change 100644 => 100755 Foundation/include/Poco/Process.h mode change 100644 => 100755 Foundation/include/Poco/Process_UNIX.h mode change 100644 => 100755 Foundation/include/Poco/Process_VMS.h mode change 100644 => 100755 Foundation/include/Poco/Process_VX.h mode change 100644 => 100755 Foundation/include/Poco/Process_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/Process_WIN32U.h mode change 100644 => 100755 Foundation/include/Poco/Process_WINCE.h mode change 100644 => 100755 Foundation/include/Poco/PurgeStrategy.h mode change 100644 => 100755 Foundation/include/Poco/RWLock.h mode change 100644 => 100755 Foundation/include/Poco/RWLock_Android.h mode change 100644 => 100755 Foundation/include/Poco/RWLock_POSIX.h mode change 100644 => 100755 Foundation/include/Poco/RWLock_VX.h mode change 100644 => 100755 Foundation/include/Poco/RWLock_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/RWLock_WINCE.h mode change 100644 => 100755 Foundation/include/Poco/Random.h mode change 100644 => 100755 Foundation/include/Poco/RandomStream.h mode change 100644 => 100755 Foundation/include/Poco/RecursiveDirectoryIterator.h mode change 100644 => 100755 Foundation/include/Poco/RecursiveDirectoryIteratorImpl.h mode change 100644 => 100755 Foundation/include/Poco/RefCountedObject.h mode change 100644 => 100755 Foundation/include/Poco/RegularExpression.h mode change 100644 => 100755 Foundation/include/Poco/RotateStrategy.h mode change 100644 => 100755 Foundation/include/Poco/Runnable.h mode change 100644 => 100755 Foundation/include/Poco/RunnableAdapter.h mode change 100644 => 100755 Foundation/include/Poco/SHA1Engine.h mode change 100644 => 100755 Foundation/include/Poco/ScopedLock.h mode change 100644 => 100755 Foundation/include/Poco/ScopedUnlock.h mode change 100644 => 100755 Foundation/include/Poco/Semaphore.h mode change 100644 => 100755 Foundation/include/Poco/Semaphore_POSIX.h mode change 100644 => 100755 Foundation/include/Poco/Semaphore_VX.h mode change 100644 => 100755 Foundation/include/Poco/Semaphore_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/SharedLibrary.h mode change 100644 => 100755 Foundation/include/Poco/SharedLibrary_HPUX.h mode change 100644 => 100755 Foundation/include/Poco/SharedLibrary_UNIX.h mode change 100644 => 100755 Foundation/include/Poco/SharedLibrary_VMS.h mode change 100644 => 100755 Foundation/include/Poco/SharedLibrary_VX.h mode change 100644 => 100755 Foundation/include/Poco/SharedLibrary_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/SharedLibrary_WIN32U.h mode change 100644 => 100755 Foundation/include/Poco/SharedMemory.h mode change 100644 => 100755 Foundation/include/Poco/SharedMemory_DUMMY.h mode change 100644 => 100755 Foundation/include/Poco/SharedMemory_POSIX.h mode change 100644 => 100755 Foundation/include/Poco/SharedMemory_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/SharedPtr.h mode change 100644 => 100755 Foundation/include/Poco/SignalHandler.h mode change 100644 => 100755 Foundation/include/Poco/SimpleFileChannel.h mode change 100644 => 100755 Foundation/include/Poco/SimpleHashTable.h mode change 100644 => 100755 Foundation/include/Poco/SingletonHolder.h mode change 100644 => 100755 Foundation/include/Poco/SortedDirectoryIterator.h mode change 100644 => 100755 Foundation/include/Poco/SplitterChannel.h mode change 100644 => 100755 Foundation/include/Poco/Stopwatch.h mode change 100644 => 100755 Foundation/include/Poco/StrategyCollection.h mode change 100644 => 100755 Foundation/include/Poco/StreamChannel.h mode change 100644 => 100755 Foundation/include/Poco/StreamConverter.h mode change 100644 => 100755 Foundation/include/Poco/StreamCopier.h mode change 100644 => 100755 Foundation/include/Poco/StreamTokenizer.h mode change 100644 => 100755 Foundation/include/Poco/StreamUtil.h mode change 100644 => 100755 Foundation/include/Poco/String.h mode change 100644 => 100755 Foundation/include/Poco/StringTokenizer.h mode change 100644 => 100755 Foundation/include/Poco/SynchronizedObject.h mode change 100644 => 100755 Foundation/include/Poco/SyslogChannel.h mode change 100644 => 100755 Foundation/include/Poco/Task.h mode change 100644 => 100755 Foundation/include/Poco/TaskManager.h mode change 100644 => 100755 Foundation/include/Poco/TaskNotification.h mode change 100644 => 100755 Foundation/include/Poco/TeeStream.h mode change 100644 => 100755 Foundation/include/Poco/TemporaryFile.h mode change 100644 => 100755 Foundation/include/Poco/TextBufferIterator.h mode change 100644 => 100755 Foundation/include/Poco/TextConverter.h mode change 100644 => 100755 Foundation/include/Poco/TextEncoding.h mode change 100644 => 100755 Foundation/include/Poco/TextIterator.h mode change 100644 => 100755 Foundation/include/Poco/Thread.h mode change 100644 => 100755 Foundation/include/Poco/ThreadLocal.h mode change 100644 => 100755 Foundation/include/Poco/ThreadPool.h mode change 100644 => 100755 Foundation/include/Poco/ThreadTarget.h mode change 100644 => 100755 Foundation/include/Poco/Thread_POSIX.h mode change 100644 => 100755 Foundation/include/Poco/Thread_VX.h mode change 100644 => 100755 Foundation/include/Poco/Thread_WIN32.h mode change 100644 => 100755 Foundation/include/Poco/Thread_WINCE.h mode change 100644 => 100755 Foundation/include/Poco/TimedNotificationQueue.h mode change 100644 => 100755 Foundation/include/Poco/Timer.h mode change 100644 => 100755 Foundation/include/Poco/Timespan.h mode change 100644 => 100755 Foundation/include/Poco/Timestamp.h mode change 100644 => 100755 Foundation/include/Poco/Timezone.h mode change 100644 => 100755 Foundation/include/Poco/Token.h mode change 100644 => 100755 Foundation/include/Poco/Tuple.h mode change 100644 => 100755 Foundation/include/Poco/TypeList.h mode change 100644 => 100755 Foundation/include/Poco/Types.h mode change 100644 => 100755 Foundation/include/Poco/URI.h mode change 100644 => 100755 Foundation/include/Poco/URIStreamFactory.h mode change 100644 => 100755 Foundation/include/Poco/URIStreamOpener.h mode change 100644 => 100755 Foundation/include/Poco/UTF16Encoding.h mode change 100644 => 100755 Foundation/include/Poco/UTF32Encoding.h mode change 100644 => 100755 Foundation/include/Poco/UTF8Encoding.h mode change 100644 => 100755 Foundation/include/Poco/UTF8String.h mode change 100644 => 100755 Foundation/include/Poco/UTFString.h mode change 100644 => 100755 Foundation/include/Poco/UUID.h mode change 100644 => 100755 Foundation/include/Poco/UUIDGenerator.h mode change 100644 => 100755 Foundation/include/Poco/UnWindows.h mode change 100644 => 100755 Foundation/include/Poco/UnbufferedStreamBuf.h mode change 100644 => 100755 Foundation/include/Poco/Unicode.h mode change 100644 => 100755 Foundation/include/Poco/UnicodeConverter.h mode change 100644 => 100755 Foundation/include/Poco/UniqueAccessExpireCache.h mode change 100644 => 100755 Foundation/include/Poco/UniqueAccessExpireLRUCache.h mode change 100644 => 100755 Foundation/include/Poco/UniqueAccessExpireStrategy.h mode change 100644 => 100755 Foundation/include/Poco/UniqueExpireCache.h mode change 100644 => 100755 Foundation/include/Poco/UniqueExpireLRUCache.h mode change 100644 => 100755 Foundation/include/Poco/UniqueExpireStrategy.h mode change 100644 => 100755 Foundation/include/Poco/ValidArgs.h mode change 100644 => 100755 Foundation/include/Poco/Version.h mode change 100644 => 100755 Foundation/include/Poco/Void.h mode change 100644 => 100755 Foundation/include/Poco/Windows1250Encoding.h mode change 100644 => 100755 Foundation/include/Poco/Windows1251Encoding.h mode change 100644 => 100755 Foundation/include/Poco/Windows1252Encoding.h mode change 100644 => 100755 Foundation/include/Poco/WindowsConsoleChannel.h mode change 100644 => 100755 Foundation/samples/ActiveMethod/src/ActiveMethod.cpp mode change 100644 => 100755 Foundation/samples/Activity/src/Activity.cpp mode change 100644 => 100755 Foundation/samples/BinaryReaderWriter/src/BinaryReaderWriter.cpp mode change 100644 => 100755 Foundation/samples/DateTime/src/DateTime.cpp mode change 100644 => 100755 Foundation/samples/LineEndingConverter/src/LineEndingConverter.cpp mode change 100644 => 100755 Foundation/samples/LogRotation/src/LogRotation.cpp mode change 100644 => 100755 Foundation/samples/Logger/src/Logger.cpp mode change 100644 => 100755 Foundation/samples/NotificationQueue/src/NotificationQueue.cpp mode change 100644 => 100755 Foundation/samples/StringTokenizer/src/StringTokenizer.cpp mode change 100644 => 100755 Foundation/samples/Timer/src/Timer.cpp mode change 100644 => 100755 Foundation/samples/URI/src/URI.cpp mode change 100644 => 100755 Foundation/samples/base64decode/src/base64decode.cpp mode change 100644 => 100755 Foundation/samples/base64encode/src/base64encode.cpp mode change 100644 => 100755 Foundation/samples/deflate/src/deflate.cpp mode change 100644 => 100755 Foundation/samples/dir/src/dir.cpp mode change 100644 => 100755 Foundation/samples/grep/src/grep.cpp mode change 100644 => 100755 Foundation/samples/hmacmd5/src/hmacmd5.cpp mode change 100644 => 100755 Foundation/samples/inflate/src/inflate.cpp mode change 100644 => 100755 Foundation/samples/md5/src/md5.cpp mode change 100644 => 100755 Foundation/samples/uuidgen/src/uuidgen.cpp mode change 100644 => 100755 Foundation/src/ASCIIEncoding.cpp mode change 100644 => 100755 Foundation/src/AbstractObserver.cpp mode change 100644 => 100755 Foundation/src/ActiveDispatcher.cpp mode change 100644 => 100755 Foundation/src/ArchiveStrategy.cpp mode change 100644 => 100755 Foundation/src/Ascii.cpp mode change 100644 => 100755 Foundation/src/AsyncChannel.cpp mode change 100644 => 100755 Foundation/src/AtomicCounter.cpp mode change 100644 => 100755 Foundation/src/Base32Decoder.cpp mode change 100644 => 100755 Foundation/src/Base32Encoder.cpp mode change 100644 => 100755 Foundation/src/Base64Decoder.cpp mode change 100644 => 100755 Foundation/src/Base64Encoder.cpp mode change 100644 => 100755 Foundation/src/BinaryReader.cpp mode change 100644 => 100755 Foundation/src/BinaryWriter.cpp mode change 100644 => 100755 Foundation/src/Bugcheck.cpp mode change 100644 => 100755 Foundation/src/ByteOrder.cpp mode change 100644 => 100755 Foundation/src/Channel.cpp mode change 100644 => 100755 Foundation/src/Checksum.cpp mode change 100644 => 100755 Foundation/src/Clock.cpp mode change 100644 => 100755 Foundation/src/Condition.cpp mode change 100644 => 100755 Foundation/src/Configurable.cpp mode change 100644 => 100755 Foundation/src/ConsoleChannel.cpp mode change 100644 => 100755 Foundation/src/CountingStream.cpp mode change 100644 => 100755 Foundation/src/DateTime.cpp mode change 100644 => 100755 Foundation/src/DateTimeFormat.cpp mode change 100644 => 100755 Foundation/src/DateTimeFormatter.cpp mode change 100644 => 100755 Foundation/src/DateTimeParser.cpp mode change 100644 => 100755 Foundation/src/Debugger.cpp mode change 100644 => 100755 Foundation/src/DeflatingStream.cpp mode change 100644 => 100755 Foundation/src/DigestEngine.cpp mode change 100644 => 100755 Foundation/src/DigestStream.cpp mode change 100644 => 100755 Foundation/src/DirectoryIterator.cpp mode change 100644 => 100755 Foundation/src/DirectoryIteratorStrategy.cpp mode change 100644 => 100755 Foundation/src/DirectoryIterator_UNIX.cpp mode change 100644 => 100755 Foundation/src/DirectoryIterator_VMS.cpp mode change 100644 => 100755 Foundation/src/DirectoryIterator_WIN32.cpp mode change 100644 => 100755 Foundation/src/DirectoryIterator_WIN32U.cpp mode change 100644 => 100755 Foundation/src/DirectoryWatcher.cpp mode change 100644 => 100755 Foundation/src/Environment.cpp mode change 100644 => 100755 Foundation/src/Environment_UNIX.cpp mode change 100644 => 100755 Foundation/src/Environment_VMS.cpp mode change 100644 => 100755 Foundation/src/Environment_VX.cpp mode change 100644 => 100755 Foundation/src/Environment_WIN32.cpp mode change 100644 => 100755 Foundation/src/Environment_WIN32U.cpp mode change 100644 => 100755 Foundation/src/Environment_WINCE.cpp mode change 100644 => 100755 Foundation/src/Error.cpp mode change 100644 => 100755 Foundation/src/ErrorHandler.cpp mode change 100644 => 100755 Foundation/src/Event.cpp mode change 100644 => 100755 Foundation/src/EventArgs.cpp mode change 100644 => 100755 Foundation/src/EventLogChannel.cpp mode change 100644 => 100755 Foundation/src/Event_POSIX.cpp mode change 100644 => 100755 Foundation/src/Event_VX.cpp mode change 100644 => 100755 Foundation/src/Event_WIN32.cpp mode change 100644 => 100755 Foundation/src/Exception.cpp mode change 100644 => 100755 Foundation/src/FIFOBufferStream.cpp mode change 100644 => 100755 Foundation/src/FPEnvironment.cpp mode change 100644 => 100755 Foundation/src/FPEnvironment_C99.cpp mode change 100644 => 100755 Foundation/src/FPEnvironment_DEC.cpp mode change 100644 => 100755 Foundation/src/FPEnvironment_DUMMY.cpp mode change 100644 => 100755 Foundation/src/FPEnvironment_SUN.cpp mode change 100644 => 100755 Foundation/src/FPEnvironment_WIN32.cpp mode change 100644 => 100755 Foundation/src/File.cpp mode change 100644 => 100755 Foundation/src/FileChannel.cpp mode change 100644 => 100755 Foundation/src/FileStream.cpp mode change 100644 => 100755 Foundation/src/FileStreamFactory.cpp mode change 100644 => 100755 Foundation/src/FileStream_POSIX.cpp mode change 100644 => 100755 Foundation/src/FileStream_WIN32.cpp mode change 100644 => 100755 Foundation/src/File_UNIX.cpp mode change 100644 => 100755 Foundation/src/File_VMS.cpp mode change 100644 => 100755 Foundation/src/File_VX.cpp mode change 100644 => 100755 Foundation/src/File_WIN32.cpp mode change 100644 => 100755 Foundation/src/File_WIN32U.cpp mode change 100644 => 100755 Foundation/src/File_WINCE.cpp mode change 100644 => 100755 Foundation/src/Format.cpp mode change 100644 => 100755 Foundation/src/Formatter.cpp mode change 100644 => 100755 Foundation/src/FormattingChannel.cpp mode change 100644 => 100755 Foundation/src/Glob.cpp mode change 100644 => 100755 Foundation/src/Hash.cpp mode change 100644 => 100755 Foundation/src/HashStatistic.cpp mode change 100644 => 100755 Foundation/src/HexBinaryDecoder.cpp mode change 100644 => 100755 Foundation/src/HexBinaryEncoder.cpp mode change 100644 => 100755 Foundation/src/InflatingStream.cpp mode change 100644 => 100755 Foundation/src/Latin1Encoding.cpp mode change 100644 => 100755 Foundation/src/Latin2Encoding.cpp mode change 100644 => 100755 Foundation/src/Latin9Encoding.cpp mode change 100644 => 100755 Foundation/src/LineEndingConverter.cpp mode change 100644 => 100755 Foundation/src/LocalDateTime.cpp mode change 100644 => 100755 Foundation/src/LogFile.cpp mode change 100644 => 100755 Foundation/src/LogFile_STD.cpp mode change 100644 => 100755 Foundation/src/LogFile_VMS.cpp mode change 100644 => 100755 Foundation/src/LogFile_WIN32.cpp mode change 100644 => 100755 Foundation/src/LogFile_WIN32U.cpp mode change 100644 => 100755 Foundation/src/LogStream.cpp mode change 100644 => 100755 Foundation/src/Logger.cpp mode change 100644 => 100755 Foundation/src/LoggingFactory.cpp mode change 100644 => 100755 Foundation/src/LoggingRegistry.cpp mode change 100644 => 100755 Foundation/src/MD4Engine.cpp mode change 100644 => 100755 Foundation/src/MD5Engine.cpp mode change 100644 => 100755 Foundation/src/Manifest.cpp mode change 100644 => 100755 Foundation/src/MemoryPool.cpp mode change 100644 => 100755 Foundation/src/MemoryStream.cpp mode change 100644 => 100755 Foundation/src/Message.cpp mode change 100644 => 100755 Foundation/src/Mutex.cpp mode change 100644 => 100755 Foundation/src/Mutex_POSIX.cpp mode change 100644 => 100755 Foundation/src/Mutex_VX.cpp mode change 100644 => 100755 Foundation/src/Mutex_WIN32.cpp mode change 100644 => 100755 Foundation/src/Mutex_WINCE.cpp mode change 100644 => 100755 Foundation/src/NamedEvent.cpp mode change 100644 => 100755 Foundation/src/NamedEvent_Android.cpp mode change 100644 => 100755 Foundation/src/NamedEvent_UNIX.cpp mode change 100644 => 100755 Foundation/src/NamedEvent_VMS.cpp mode change 100644 => 100755 Foundation/src/NamedEvent_WIN32.cpp mode change 100644 => 100755 Foundation/src/NamedEvent_WIN32U.cpp mode change 100644 => 100755 Foundation/src/NamedMutex.cpp mode change 100644 => 100755 Foundation/src/NamedMutex_Android.cpp mode change 100644 => 100755 Foundation/src/NamedMutex_UNIX.cpp mode change 100644 => 100755 Foundation/src/NamedMutex_VMS.cpp mode change 100644 => 100755 Foundation/src/NamedMutex_WIN32.cpp mode change 100644 => 100755 Foundation/src/NamedMutex_WIN32U.cpp mode change 100644 => 100755 Foundation/src/NestedDiagnosticContext.cpp mode change 100644 => 100755 Foundation/src/Notification.cpp mode change 100644 => 100755 Foundation/src/NotificationCenter.cpp mode change 100644 => 100755 Foundation/src/NotificationQueue.cpp mode change 100644 => 100755 Foundation/src/NullChannel.cpp mode change 100644 => 100755 Foundation/src/NullStream.cpp mode change 100644 => 100755 Foundation/src/NumberFormatter.cpp mode change 100644 => 100755 Foundation/src/NumberParser.cpp mode change 100644 => 100755 Foundation/src/NumericString.cpp mode change 100644 => 100755 Foundation/src/OpcomChannel.cpp mode change 100644 => 100755 Foundation/src/Path.cpp mode change 100644 => 100755 Foundation/src/Path_UNIX.cpp mode change 100644 => 100755 Foundation/src/Path_VMS.cpp mode change 100644 => 100755 Foundation/src/Path_WIN32.cpp mode change 100644 => 100755 Foundation/src/Path_WIN32U.cpp mode change 100644 => 100755 Foundation/src/Path_WINCE.cpp mode change 100644 => 100755 Foundation/src/PatternFormatter.cpp mode change 100644 => 100755 Foundation/src/Pipe.cpp mode change 100644 => 100755 Foundation/src/PipeImpl.cpp mode change 100644 => 100755 Foundation/src/PipeImpl_DUMMY.cpp mode change 100644 => 100755 Foundation/src/PipeImpl_POSIX.cpp mode change 100644 => 100755 Foundation/src/PipeImpl_WIN32.cpp mode change 100644 => 100755 Foundation/src/PipeStream.cpp mode change 100644 => 100755 Foundation/src/PriorityNotificationQueue.cpp mode change 100644 => 100755 Foundation/src/Process.cpp mode change 100644 => 100755 Foundation/src/Process_UNIX.cpp mode change 100644 => 100755 Foundation/src/Process_VMS.cpp mode change 100644 => 100755 Foundation/src/Process_VX.cpp mode change 100644 => 100755 Foundation/src/Process_WIN32.cpp mode change 100644 => 100755 Foundation/src/Process_WIN32U.cpp mode change 100644 => 100755 Foundation/src/Process_WINCE.cpp mode change 100644 => 100755 Foundation/src/PurgeStrategy.cpp mode change 100644 => 100755 Foundation/src/RWLock.cpp mode change 100644 => 100755 Foundation/src/RWLock_Android.cpp mode change 100644 => 100755 Foundation/src/RWLock_POSIX.cpp mode change 100644 => 100755 Foundation/src/RWLock_VX.cpp mode change 100644 => 100755 Foundation/src/RWLock_WIN32.cpp mode change 100644 => 100755 Foundation/src/RWLock_WINCE.cpp mode change 100644 => 100755 Foundation/src/Random.cpp mode change 100644 => 100755 Foundation/src/RandomStream.cpp mode change 100644 => 100755 Foundation/src/RefCountedObject.cpp mode change 100644 => 100755 Foundation/src/RegularExpression.cpp mode change 100644 => 100755 Foundation/src/RotateStrategy.cpp mode change 100644 => 100755 Foundation/src/Runnable.cpp mode change 100644 => 100755 Foundation/src/SHA1Engine.cpp mode change 100644 => 100755 Foundation/src/Semaphore.cpp mode change 100644 => 100755 Foundation/src/Semaphore_POSIX.cpp mode change 100644 => 100755 Foundation/src/Semaphore_VX.cpp mode change 100644 => 100755 Foundation/src/Semaphore_WIN32.cpp mode change 100644 => 100755 Foundation/src/SharedLibrary.cpp mode change 100644 => 100755 Foundation/src/SharedLibrary_HPUX.cpp mode change 100644 => 100755 Foundation/src/SharedLibrary_UNIX.cpp mode change 100644 => 100755 Foundation/src/SharedLibrary_VMS.cpp mode change 100644 => 100755 Foundation/src/SharedLibrary_VX.cpp mode change 100644 => 100755 Foundation/src/SharedLibrary_WIN32.cpp mode change 100644 => 100755 Foundation/src/SharedLibrary_WIN32U.cpp mode change 100644 => 100755 Foundation/src/SharedMemory.cpp mode change 100644 => 100755 Foundation/src/SharedMemory_DUMMY.cpp mode change 100644 => 100755 Foundation/src/SharedMemory_POSIX.cpp mode change 100644 => 100755 Foundation/src/SharedMemory_WIN32.cpp mode change 100644 => 100755 Foundation/src/SignalHandler.cpp mode change 100644 => 100755 Foundation/src/SimpleFileChannel.cpp mode change 100644 => 100755 Foundation/src/SortedDirectoryIterator.cpp mode change 100644 => 100755 Foundation/src/SplitterChannel.cpp mode change 100644 => 100755 Foundation/src/Stopwatch.cpp mode change 100644 => 100755 Foundation/src/StreamChannel.cpp mode change 100644 => 100755 Foundation/src/StreamConverter.cpp mode change 100644 => 100755 Foundation/src/StreamCopier.cpp mode change 100644 => 100755 Foundation/src/StreamTokenizer.cpp mode change 100644 => 100755 Foundation/src/String.cpp mode change 100644 => 100755 Foundation/src/StringTokenizer.cpp mode change 100644 => 100755 Foundation/src/SynchronizedObject.cpp mode change 100644 => 100755 Foundation/src/SyslogChannel.cpp mode change 100644 => 100755 Foundation/src/Task.cpp mode change 100644 => 100755 Foundation/src/TaskManager.cpp mode change 100644 => 100755 Foundation/src/TaskNotification.cpp mode change 100644 => 100755 Foundation/src/TeeStream.cpp mode change 100644 => 100755 Foundation/src/TemporaryFile.cpp mode change 100644 => 100755 Foundation/src/TextBufferIterator.cpp mode change 100644 => 100755 Foundation/src/TextConverter.cpp mode change 100644 => 100755 Foundation/src/TextEncoding.cpp mode change 100644 => 100755 Foundation/src/TextIterator.cpp mode change 100644 => 100755 Foundation/src/Thread.cpp mode change 100644 => 100755 Foundation/src/ThreadLocal.cpp mode change 100644 => 100755 Foundation/src/ThreadPool.cpp mode change 100644 => 100755 Foundation/src/ThreadTarget.cpp mode change 100644 => 100755 Foundation/src/Thread_POSIX.cpp mode change 100644 => 100755 Foundation/src/Thread_VX.cpp mode change 100644 => 100755 Foundation/src/Thread_WIN32.cpp mode change 100644 => 100755 Foundation/src/Thread_WINCE.cpp mode change 100644 => 100755 Foundation/src/TimedNotificationQueue.cpp mode change 100644 => 100755 Foundation/src/Timer.cpp mode change 100644 => 100755 Foundation/src/Timespan.cpp mode change 100644 => 100755 Foundation/src/Timestamp.cpp mode change 100644 => 100755 Foundation/src/Timezone.cpp mode change 100644 => 100755 Foundation/src/Timezone_UNIX.cpp mode change 100644 => 100755 Foundation/src/Timezone_VX.cpp mode change 100644 => 100755 Foundation/src/Timezone_WIN32.cpp mode change 100644 => 100755 Foundation/src/Timezone_WINCE.cpp mode change 100644 => 100755 Foundation/src/Token.cpp mode change 100644 => 100755 Foundation/src/URI.cpp mode change 100644 => 100755 Foundation/src/URIStreamFactory.cpp mode change 100644 => 100755 Foundation/src/URIStreamOpener.cpp mode change 100644 => 100755 Foundation/src/UTF16Encoding.cpp mode change 100644 => 100755 Foundation/src/UTF32Encoding.cpp mode change 100644 => 100755 Foundation/src/UTF8Encoding.cpp mode change 100644 => 100755 Foundation/src/UTF8String.cpp mode change 100644 => 100755 Foundation/src/UUID.cpp mode change 100644 => 100755 Foundation/src/UUIDGenerator.cpp mode change 100644 => 100755 Foundation/src/Unicode.cpp mode change 100644 => 100755 Foundation/src/UnicodeConverter.cpp mode change 100644 => 100755 Foundation/src/Var.cpp mode change 100644 => 100755 Foundation/src/VarHolder.cpp mode change 100644 => 100755 Foundation/src/VarIterator.cpp mode change 100644 => 100755 Foundation/src/Void.cpp mode change 100644 => 100755 Foundation/src/Windows1250Encoding.cpp mode change 100644 => 100755 Foundation/src/Windows1251Encoding.cpp mode change 100644 => 100755 Foundation/src/Windows1252Encoding.cpp mode change 100644 => 100755 Foundation/src/WindowsConsoleChannel.cpp mode change 100644 => 100755 Foundation/testsuite/src/ActiveDispatcherTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ActiveDispatcherTest.h mode change 100644 => 100755 Foundation/testsuite/src/ActiveMethodTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ActiveMethodTest.h mode change 100644 => 100755 Foundation/testsuite/src/ActivityTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ActivityTest.h mode change 100644 => 100755 Foundation/testsuite/src/AnyTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/AnyTest.h mode change 100644 => 100755 Foundation/testsuite/src/ArrayTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ArrayTest.h mode change 100644 => 100755 Foundation/testsuite/src/AutoPtrTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/AutoPtrTest.h mode change 100644 => 100755 Foundation/testsuite/src/AutoReleasePoolTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/AutoReleasePoolTest.h mode change 100644 => 100755 Foundation/testsuite/src/Base32Test.cpp mode change 100644 => 100755 Foundation/testsuite/src/Base32Test.h mode change 100644 => 100755 Foundation/testsuite/src/Base64Test.cpp mode change 100644 => 100755 Foundation/testsuite/src/Base64Test.h mode change 100644 => 100755 Foundation/testsuite/src/BasicEventTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/BasicEventTest.h mode change 100644 => 100755 Foundation/testsuite/src/BinaryReaderWriterTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/BinaryReaderWriterTest.h mode change 100644 => 100755 Foundation/testsuite/src/ByteOrderTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ByteOrderTest.h mode change 100644 => 100755 Foundation/testsuite/src/CacheTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/CacheTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/ChannelTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ChannelTest.h mode change 100644 => 100755 Foundation/testsuite/src/ClassLoaderTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ClassLoaderTest.h mode change 100644 => 100755 Foundation/testsuite/src/ClockTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ClockTest.h mode change 100644 => 100755 Foundation/testsuite/src/ConditionTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ConditionTest.h mode change 100644 => 100755 Foundation/testsuite/src/CoreTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/CoreTest.h mode change 100644 => 100755 Foundation/testsuite/src/CoreTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/CoreTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/CountingStreamTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/CountingStreamTest.h mode change 100644 => 100755 Foundation/testsuite/src/CryptTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/CryptTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/DateTimeFormatterTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/DateTimeFormatterTest.h mode change 100644 => 100755 Foundation/testsuite/src/DateTimeParserTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/DateTimeParserTest.h mode change 100644 => 100755 Foundation/testsuite/src/DateTimeTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/DateTimeTest.h mode change 100644 => 100755 Foundation/testsuite/src/DateTimeTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/DateTimeTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/DigestStreamTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/DigestStreamTest.h mode change 100644 => 100755 Foundation/testsuite/src/DirectoryIteratorsTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/DirectoryIteratorsTest.h mode change 100644 => 100755 Foundation/testsuite/src/DirectoryWatcherTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/DirectoryWatcherTest.h mode change 100644 => 100755 Foundation/testsuite/src/Driver.cpp mode change 100644 => 100755 Foundation/testsuite/src/DummyDelegate.cpp mode change 100644 => 100755 Foundation/testsuite/src/DummyDelegate.h mode change 100644 => 100755 Foundation/testsuite/src/DynamicFactoryTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/DynamicFactoryTest.h mode change 100644 => 100755 Foundation/testsuite/src/DynamicTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/DynamicTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/EventTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/EventTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/ExpireCacheTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ExpireCacheTest.h mode change 100644 => 100755 Foundation/testsuite/src/ExpireLRUCacheTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ExpireLRUCacheTest.h mode change 100644 => 100755 Foundation/testsuite/src/FIFOBufferStreamTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/FIFOBufferStreamTest.h mode change 100644 => 100755 Foundation/testsuite/src/FIFOEventTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/FIFOEventTest.h mode change 100644 => 100755 Foundation/testsuite/src/FPETest.cpp mode change 100644 => 100755 Foundation/testsuite/src/FPETest.h mode change 100644 => 100755 Foundation/testsuite/src/FileChannelTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/FileChannelTest.h mode change 100644 => 100755 Foundation/testsuite/src/FileStreamTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/FileStreamTest.h mode change 100644 => 100755 Foundation/testsuite/src/FileTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/FileTest.h mode change 100644 => 100755 Foundation/testsuite/src/FilesystemTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/FilesystemTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/FormatTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/FormatTest.h mode change 100644 => 100755 Foundation/testsuite/src/FoundationTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/FoundationTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/GlobTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/GlobTest.h mode change 100644 => 100755 Foundation/testsuite/src/HMACEngineTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/HMACEngineTest.h mode change 100644 => 100755 Foundation/testsuite/src/HashMapTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/HashMapTest.h mode change 100644 => 100755 Foundation/testsuite/src/HashSetTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/HashSetTest.h mode change 100644 => 100755 Foundation/testsuite/src/HashTableTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/HashTableTest.h mode change 100644 => 100755 Foundation/testsuite/src/HashingTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/HashingTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/HexBinaryTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/HexBinaryTest.h mode change 100644 => 100755 Foundation/testsuite/src/LRUCacheTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/LRUCacheTest.h mode change 100644 => 100755 Foundation/testsuite/src/LineEndingConverterTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/LineEndingConverterTest.h mode change 100644 => 100755 Foundation/testsuite/src/LinearHashTableTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/LinearHashTableTest.h mode change 100644 => 100755 Foundation/testsuite/src/ListMapTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ListMapTest.h mode change 100644 => 100755 Foundation/testsuite/src/LocalDateTimeTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/LocalDateTimeTest.h mode change 100644 => 100755 Foundation/testsuite/src/LogStreamTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/LogStreamTest.h mode change 100644 => 100755 Foundation/testsuite/src/LoggerTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/LoggerTest.h mode change 100644 => 100755 Foundation/testsuite/src/LoggingFactoryTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/LoggingFactoryTest.h mode change 100644 => 100755 Foundation/testsuite/src/LoggingRegistryTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/LoggingRegistryTest.h mode change 100644 => 100755 Foundation/testsuite/src/LoggingTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/LoggingTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/MD4EngineTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/MD4EngineTest.h mode change 100644 => 100755 Foundation/testsuite/src/MD5EngineTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/MD5EngineTest.h mode change 100644 => 100755 Foundation/testsuite/src/ManifestTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ManifestTest.h mode change 100644 => 100755 Foundation/testsuite/src/MemoryPoolTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/MemoryPoolTest.h mode change 100644 => 100755 Foundation/testsuite/src/MemoryStreamTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/MemoryStreamTest.h mode change 100644 => 100755 Foundation/testsuite/src/NDCTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/NDCTest.h mode change 100644 => 100755 Foundation/testsuite/src/NamedEventTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/NamedEventTest.h mode change 100644 => 100755 Foundation/testsuite/src/NamedMutexTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/NamedMutexTest.h mode change 100644 => 100755 Foundation/testsuite/src/NamedTuplesTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/NamedTuplesTest.h mode change 100644 => 100755 Foundation/testsuite/src/NotificationCenterTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/NotificationCenterTest.h mode change 100644 => 100755 Foundation/testsuite/src/NotificationQueueTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/NotificationQueueTest.h mode change 100644 => 100755 Foundation/testsuite/src/NotificationsTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/NotificationsTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/NullStreamTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/NullStreamTest.h mode change 100644 => 100755 Foundation/testsuite/src/NumberFormatterTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/NumberFormatterTest.h mode change 100644 => 100755 Foundation/testsuite/src/NumberParserTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/NumberParserTest.h mode change 100644 => 100755 Foundation/testsuite/src/ObjectPoolTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ObjectPoolTest.h mode change 100644 => 100755 Foundation/testsuite/src/PBKDF2EngineTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/PBKDF2EngineTest.h mode change 100644 => 100755 Foundation/testsuite/src/PathTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/PathTest.h mode change 100644 => 100755 Foundation/testsuite/src/PatternFormatterTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/PatternFormatterTest.h mode change 100644 => 100755 Foundation/testsuite/src/PriorityEventTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/PriorityEventTest.h mode change 100644 => 100755 Foundation/testsuite/src/PriorityNotificationQueueTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/PriorityNotificationQueueTest.h mode change 100644 => 100755 Foundation/testsuite/src/ProcessTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ProcessTest.h mode change 100644 => 100755 Foundation/testsuite/src/ProcessesTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/ProcessesTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/RWLockTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/RWLockTest.h mode change 100644 => 100755 Foundation/testsuite/src/RandomStreamTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/RandomStreamTest.h mode change 100644 => 100755 Foundation/testsuite/src/RandomTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/RandomTest.h mode change 100644 => 100755 Foundation/testsuite/src/RegularExpressionTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/RegularExpressionTest.h mode change 100644 => 100755 Foundation/testsuite/src/SHA1EngineTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/SHA1EngineTest.h mode change 100644 => 100755 Foundation/testsuite/src/SemaphoreTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/SemaphoreTest.h mode change 100644 => 100755 Foundation/testsuite/src/SharedLibraryTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/SharedLibraryTest.h mode change 100644 => 100755 Foundation/testsuite/src/SharedLibraryTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/SharedLibraryTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/SharedMemoryTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/SharedMemoryTest.h mode change 100644 => 100755 Foundation/testsuite/src/SharedPtrTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/SharedPtrTest.h mode change 100644 => 100755 Foundation/testsuite/src/SimpleFileChannelTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/SimpleFileChannelTest.h mode change 100644 => 100755 Foundation/testsuite/src/SimpleHashTableTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/SimpleHashTableTest.h mode change 100644 => 100755 Foundation/testsuite/src/StopwatchTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/StopwatchTest.h mode change 100644 => 100755 Foundation/testsuite/src/StreamConverterTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/StreamConverterTest.h mode change 100644 => 100755 Foundation/testsuite/src/StreamCopierTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/StreamCopierTest.h mode change 100644 => 100755 Foundation/testsuite/src/StreamTokenizerTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/StreamTokenizerTest.h mode change 100644 => 100755 Foundation/testsuite/src/StreamsTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/StreamsTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/StringTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/StringTest.h mode change 100644 => 100755 Foundation/testsuite/src/StringTokenizerTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/StringTokenizerTest.h mode change 100644 => 100755 Foundation/testsuite/src/TaskManagerTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/TaskManagerTest.h mode change 100644 => 100755 Foundation/testsuite/src/TaskTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/TaskTest.h mode change 100644 => 100755 Foundation/testsuite/src/TaskTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/TaskTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/TeeStreamTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/TeeStreamTest.h mode change 100644 => 100755 Foundation/testsuite/src/TestApp.cpp mode change 100644 => 100755 Foundation/testsuite/src/TestApp_WINCE.cpp mode change 100644 => 100755 Foundation/testsuite/src/TestChannel.cpp mode change 100644 => 100755 Foundation/testsuite/src/TestChannel.h mode change 100644 => 100755 Foundation/testsuite/src/TestLibrary.cpp mode change 100644 => 100755 Foundation/testsuite/src/TestPlugin.cpp mode change 100644 => 100755 Foundation/testsuite/src/TestPlugin.h mode change 100644 => 100755 Foundation/testsuite/src/TextBufferIteratorTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/TextBufferIteratorTest.h mode change 100644 => 100755 Foundation/testsuite/src/TextConverterTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/TextConverterTest.h mode change 100644 => 100755 Foundation/testsuite/src/TextEncodingTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/TextEncodingTest.h mode change 100644 => 100755 Foundation/testsuite/src/TextIteratorTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/TextIteratorTest.h mode change 100644 => 100755 Foundation/testsuite/src/TextTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/TextTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/ThreadLocalTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ThreadLocalTest.h mode change 100644 => 100755 Foundation/testsuite/src/ThreadPoolTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ThreadPoolTest.h mode change 100644 => 100755 Foundation/testsuite/src/ThreadTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ThreadTest.h mode change 100644 => 100755 Foundation/testsuite/src/ThreadingTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/ThreadingTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/TimedNotificationQueueTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/TimedNotificationQueueTest.h mode change 100644 => 100755 Foundation/testsuite/src/TimerTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/TimerTest.h mode change 100644 => 100755 Foundation/testsuite/src/TimespanTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/TimespanTest.h mode change 100644 => 100755 Foundation/testsuite/src/TimestampTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/TimestampTest.h mode change 100644 => 100755 Foundation/testsuite/src/TimezoneTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/TimezoneTest.h mode change 100644 => 100755 Foundation/testsuite/src/TuplesTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/TuplesTest.h mode change 100644 => 100755 Foundation/testsuite/src/TypeListTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/TypeListTest.h mode change 100644 => 100755 Foundation/testsuite/src/URIStreamOpenerTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/URIStreamOpenerTest.h mode change 100644 => 100755 Foundation/testsuite/src/URITest.cpp mode change 100644 => 100755 Foundation/testsuite/src/URITest.h mode change 100644 => 100755 Foundation/testsuite/src/URITestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/URITestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/UTF8StringTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/UTF8StringTest.h mode change 100644 => 100755 Foundation/testsuite/src/UUIDGeneratorTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/UUIDGeneratorTest.h mode change 100644 => 100755 Foundation/testsuite/src/UUIDTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/UUIDTest.h mode change 100644 => 100755 Foundation/testsuite/src/UUIDTestSuite.cpp mode change 100644 => 100755 Foundation/testsuite/src/UUIDTestSuite.h mode change 100644 => 100755 Foundation/testsuite/src/UnicodeConverterTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/UnicodeConverterTest.h mode change 100644 => 100755 Foundation/testsuite/src/UniqueExpireCacheTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/UniqueExpireCacheTest.h mode change 100644 => 100755 Foundation/testsuite/src/UniqueExpireLRUCacheTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/UniqueExpireLRUCacheTest.h mode change 100644 => 100755 Foundation/testsuite/src/VarTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/VarTest.h mode change 100644 => 100755 Foundation/testsuite/src/WinCEDriver.cpp mode change 100644 => 100755 Foundation/testsuite/src/WinDriver.cpp mode change 100644 => 100755 Foundation/testsuite/src/ZLibTest.cpp mode change 100644 => 100755 Foundation/testsuite/src/ZLibTest.h mode change 100644 => 100755 JSON/include/Poco/JSON/Array.h mode change 100644 => 100755 JSON/include/Poco/JSON/Handler.h mode change 100644 => 100755 JSON/include/Poco/JSON/JSON.h mode change 100644 => 100755 JSON/include/Poco/JSON/JSONException.h mode change 100644 => 100755 JSON/include/Poco/JSON/Object.h mode change 100644 => 100755 JSON/include/Poco/JSON/ParseHandler.h mode change 100644 => 100755 JSON/include/Poco/JSON/Parser.h mode change 100644 => 100755 JSON/include/Poco/JSON/PrintHandler.h mode change 100644 => 100755 JSON/include/Poco/JSON/Query.h mode change 100644 => 100755 JSON/include/Poco/JSON/Stringifier.h mode change 100644 => 100755 JSON/include/Poco/JSON/Template.h mode change 100644 => 100755 JSON/include/Poco/JSON/TemplateCache.h mode change 100644 => 100755 JSON/samples/Benchmark/src/Benchmark.cpp mode change 100644 => 100755 JSON/src/Array.cpp mode change 100644 => 100755 JSON/src/Handler.cpp mode change 100644 => 100755 JSON/src/JSONException.cpp mode change 100644 => 100755 JSON/src/Object.cpp mode change 100644 => 100755 JSON/src/ParseHandler.cpp mode change 100644 => 100755 JSON/src/Parser.cpp mode change 100644 => 100755 JSON/src/PrintHandler.cpp mode change 100644 => 100755 JSON/src/Query.cpp mode change 100644 => 100755 JSON/src/Stringifier.cpp mode change 100644 => 100755 JSON/src/Template.cpp mode change 100644 => 100755 JSON/src/TemplateCache.cpp mode change 100644 => 100755 JSON/testsuite/src/Driver.cpp mode change 100644 => 100755 JSON/testsuite/src/JSONTest.cpp mode change 100644 => 100755 JSON/testsuite/src/JSONTest.h mode change 100644 => 100755 JSON/testsuite/src/JSONTestSuite.cpp mode change 100644 => 100755 JSON/testsuite/src/JSONTestSuite.h mode change 100644 => 100755 JSON/testsuite/src/WinCEDriver.cpp mode change 100644 => 100755 JSON/testsuite/src/WinDriver.cpp mode change 100644 => 100755 LICENSE mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/Array.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/BSONReader.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/BSONWriter.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/Binary.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/Connection.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/Cursor.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/Database.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/DeleteRequest.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/Document.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/Element.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/GetMoreRequest.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/InsertRequest.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/JavaScriptCode.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/KillCursorsRequest.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/Message.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/MessageHeader.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/MongoDB.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/ObjectId.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/PoolableConnectionFactory.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/QueryRequest.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/RegularExpression.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/ReplicaSet.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/RequestMessage.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/ResponseMessage.h mode change 100644 => 100755 MongoDB/include/Poco/MongoDB/UpdateRequest.h mode change 100644 => 100755 MongoDB/samples/SQLToMongo/src/SQLToMongo.cpp mode change 100644 => 100755 MongoDB/src/Array.cpp mode change 100644 => 100755 MongoDB/src/Binary.cpp mode change 100644 => 100755 MongoDB/src/Connection.cpp mode change 100644 => 100755 MongoDB/src/Cursor.cpp mode change 100644 => 100755 MongoDB/src/Database.cpp mode change 100644 => 100755 MongoDB/src/DeleteRequest.cpp mode change 100644 => 100755 MongoDB/src/Document.cpp mode change 100644 => 100755 MongoDB/src/Element.cpp mode change 100644 => 100755 MongoDB/src/GetMoreRequest.cpp mode change 100644 => 100755 MongoDB/src/InsertRequest.cpp mode change 100644 => 100755 MongoDB/src/JavaScriptCode.cpp mode change 100644 => 100755 MongoDB/src/KillCursorsRequest.cpp mode change 100644 => 100755 MongoDB/src/Message.cpp mode change 100644 => 100755 MongoDB/src/MessageHeader.cpp mode change 100644 => 100755 MongoDB/src/ObjectId.cpp mode change 100644 => 100755 MongoDB/src/QueryRequest.cpp mode change 100644 => 100755 MongoDB/src/RegularExpression.cpp mode change 100644 => 100755 MongoDB/src/ReplicaSet.cpp mode change 100644 => 100755 MongoDB/src/RequestMessage.cpp mode change 100644 => 100755 MongoDB/src/ResponseMessage.cpp mode change 100644 => 100755 MongoDB/src/UpdateRequest.cpp mode change 100644 => 100755 MongoDB/testsuite/src/Driver.cpp mode change 100644 => 100755 MongoDB/testsuite/src/MongoDBTest.cpp mode change 100644 => 100755 MongoDB/testsuite/src/MongoDBTest.h mode change 100644 => 100755 MongoDB/testsuite/src/MongoDBTestSuite.cpp mode change 100644 => 100755 MongoDB/testsuite/src/MongoDBTestSuite.h mode change 100644 => 100755 MongoDB/testsuite/src/WinCEDriver.cpp mode change 100644 => 100755 MongoDB/testsuite/src/WinDriver.cpp mode change 100644 => 100755 Net/include/Poco/Net/AbstractHTTPRequestHandler.h mode change 100644 => 100755 Net/include/Poco/Net/DNS.h mode change 100644 => 100755 Net/include/Poco/Net/DatagramSocket.h mode change 100644 => 100755 Net/include/Poco/Net/DatagramSocketImpl.h mode change 100644 => 100755 Net/include/Poco/Net/DialogSocket.h mode change 100644 => 100755 Net/include/Poco/Net/FTPClientSession.h mode change 100644 => 100755 Net/include/Poco/Net/FTPStreamFactory.h mode change 100644 => 100755 Net/include/Poco/Net/FilePartSource.h mode change 100644 => 100755 Net/include/Poco/Net/HTMLForm.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPAuthenticationParams.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPBasicCredentials.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPBasicStreamBuf.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPBufferAllocator.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPChunkedStream.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPClientSession.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPCookie.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPCredentials.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPDigestCredentials.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPFixedLengthStream.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPHeaderStream.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPIOStream.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPMessage.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPRequest.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPRequestHandler.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPRequestHandlerFactory.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPResponse.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPServer.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPServerConnection.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPServerConnectionFactory.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPServerParams.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPServerRequest.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPServerRequestImpl.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPServerResponse.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPServerResponseImpl.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPServerSession.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPSession.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPSessionFactory.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPSessionInstantiator.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPStream.h mode change 100644 => 100755 Net/include/Poco/Net/HTTPStreamFactory.h mode change 100644 => 100755 Net/include/Poco/Net/HostEntry.h mode change 100644 => 100755 Net/include/Poco/Net/ICMPClient.h mode change 100644 => 100755 Net/include/Poco/Net/ICMPEventArgs.h mode change 100644 => 100755 Net/include/Poco/Net/ICMPPacket.h mode change 100644 => 100755 Net/include/Poco/Net/ICMPPacketImpl.h mode change 100644 => 100755 Net/include/Poco/Net/ICMPSocket.h mode change 100644 => 100755 Net/include/Poco/Net/ICMPSocketImpl.h mode change 100644 => 100755 Net/include/Poco/Net/ICMPv4PacketImpl.h mode change 100644 => 100755 Net/include/Poco/Net/IPAddress.h mode change 100644 => 100755 Net/include/Poco/Net/IPAddressImpl.h mode change 100644 => 100755 Net/include/Poco/Net/MailMessage.h mode change 100644 => 100755 Net/include/Poco/Net/MailRecipient.h mode change 100644 => 100755 Net/include/Poco/Net/MailStream.h mode change 100644 => 100755 Net/include/Poco/Net/MediaType.h mode change 100644 => 100755 Net/include/Poco/Net/MessageHeader.h mode change 100644 => 100755 Net/include/Poco/Net/MulticastSocket.h mode change 100644 => 100755 Net/include/Poco/Net/MultipartReader.h mode change 100644 => 100755 Net/include/Poco/Net/MultipartWriter.h mode change 100644 => 100755 Net/include/Poco/Net/NTPClient.h mode change 100644 => 100755 Net/include/Poco/Net/NTPEventArgs.h mode change 100644 => 100755 Net/include/Poco/Net/NTPPacket.h mode change 100644 => 100755 Net/include/Poco/Net/NameValueCollection.h mode change 100644 => 100755 Net/include/Poco/Net/Net.h mode change 100644 => 100755 Net/include/Poco/Net/NetException.h mode change 100644 => 100755 Net/include/Poco/Net/NetworkInterface.h mode change 100644 => 100755 Net/include/Poco/Net/NullPartHandler.h mode change 100644 => 100755 Net/include/Poco/Net/POP3ClientSession.h mode change 100644 => 100755 Net/include/Poco/Net/ParallelSocketAcceptor.h mode change 100644 => 100755 Net/include/Poco/Net/ParallelSocketReactor.h mode change 100644 => 100755 Net/include/Poco/Net/PartHandler.h mode change 100644 => 100755 Net/include/Poco/Net/PartSource.h mode change 100644 => 100755 Net/include/Poco/Net/PartStore.h mode change 100644 => 100755 Net/include/Poco/Net/QuotedPrintableDecoder.h mode change 100644 => 100755 Net/include/Poco/Net/QuotedPrintableEncoder.h mode change 100644 => 100755 Net/include/Poco/Net/RawSocket.h mode change 100644 => 100755 Net/include/Poco/Net/RawSocketImpl.h mode change 100644 => 100755 Net/include/Poco/Net/RemoteSyslogChannel.h mode change 100644 => 100755 Net/include/Poco/Net/RemoteSyslogListener.h mode change 100644 => 100755 Net/include/Poco/Net/SMTPChannel.h mode change 100644 => 100755 Net/include/Poco/Net/SMTPClientSession.h mode change 100644 => 100755 Net/include/Poco/Net/ServerSocket.h mode change 100644 => 100755 Net/include/Poco/Net/ServerSocketImpl.h mode change 100644 => 100755 Net/include/Poco/Net/Socket.h mode change 100644 => 100755 Net/include/Poco/Net/SocketAcceptor.h mode change 100644 => 100755 Net/include/Poco/Net/SocketAddress.h mode change 100644 => 100755 Net/include/Poco/Net/SocketAddressImpl.h mode change 100644 => 100755 Net/include/Poco/Net/SocketConnector.h mode change 100644 => 100755 Net/include/Poco/Net/SocketDefs.h mode change 100644 => 100755 Net/include/Poco/Net/SocketImpl.h mode change 100644 => 100755 Net/include/Poco/Net/SocketNotification.h mode change 100644 => 100755 Net/include/Poco/Net/SocketNotifier.h mode change 100644 => 100755 Net/include/Poco/Net/SocketReactor.h mode change 100644 => 100755 Net/include/Poco/Net/SocketStream.h mode change 100644 => 100755 Net/include/Poco/Net/StreamSocket.h mode change 100644 => 100755 Net/include/Poco/Net/StreamSocketImpl.h mode change 100644 => 100755 Net/include/Poco/Net/StringPartSource.h mode change 100644 => 100755 Net/include/Poco/Net/TCPServer.h mode change 100644 => 100755 Net/include/Poco/Net/TCPServerConnection.h mode change 100644 => 100755 Net/include/Poco/Net/TCPServerConnectionFactory.h mode change 100644 => 100755 Net/include/Poco/Net/TCPServerDispatcher.h mode change 100644 => 100755 Net/include/Poco/Net/TCPServerParams.h mode change 100644 => 100755 Net/include/Poco/Net/WebSocket.h mode change 100644 => 100755 Net/include/Poco/Net/WebSocketImpl.h mode change 100644 => 100755 Net/samples/EchoServer/src/EchoServer.cpp mode change 100644 => 100755 Net/samples/HTTPFormServer/src/HTTPFormServer.cpp mode change 100644 => 100755 Net/samples/HTTPLoadTest/src/HTTPLoadTest.cpp mode change 100644 => 100755 Net/samples/HTTPTimeServer/src/HTTPTimeServer.cpp mode change 100644 => 100755 Net/samples/Mail/src/Mail.cpp mode change 100644 => 100755 Net/samples/Ping/src/Ping.cpp mode change 100644 => 100755 Net/samples/SMTPLogger/src/SMTPLogger.cpp mode change 100644 => 100755 Net/samples/TimeServer/src/TimeServer.cpp mode change 100644 => 100755 Net/samples/TwitterClient/src/TweetApp.cpp mode change 100644 => 100755 Net/samples/TwitterClient/src/Twitter.cpp mode change 100644 => 100755 Net/samples/TwitterClient/src/Twitter.h mode change 100644 => 100755 Net/samples/WebSocketServer/src/WebSocketServer.cpp mode change 100644 => 100755 Net/samples/dict/src/dict.cpp mode change 100644 => 100755 Net/samples/download/src/download.cpp mode change 100644 => 100755 Net/samples/httpget/src/httpget.cpp mode change 100644 => 100755 Net/samples/ifconfig/src/ifconfig.cpp mode change 100644 => 100755 Net/src/AbstractHTTPRequestHandler.cpp mode change 100644 => 100755 Net/src/DNS.cpp mode change 100644 => 100755 Net/src/DatagramSocket.cpp mode change 100644 => 100755 Net/src/DatagramSocketImpl.cpp mode change 100644 => 100755 Net/src/DialogSocket.cpp mode change 100644 => 100755 Net/src/FTPClientSession.cpp mode change 100644 => 100755 Net/src/FTPStreamFactory.cpp mode change 100644 => 100755 Net/src/FilePartSource.cpp mode change 100644 => 100755 Net/src/HTMLForm.cpp mode change 100644 => 100755 Net/src/HTTPAuthenticationParams.cpp mode change 100644 => 100755 Net/src/HTTPBasicCredentials.cpp mode change 100644 => 100755 Net/src/HTTPBufferAllocator.cpp mode change 100644 => 100755 Net/src/HTTPChunkedStream.cpp mode change 100644 => 100755 Net/src/HTTPClientSession.cpp mode change 100644 => 100755 Net/src/HTTPCookie.cpp mode change 100644 => 100755 Net/src/HTTPCredentials.cpp mode change 100644 => 100755 Net/src/HTTPDigestCredentials.cpp mode change 100644 => 100755 Net/src/HTTPFixedLengthStream.cpp mode change 100644 => 100755 Net/src/HTTPHeaderStream.cpp mode change 100644 => 100755 Net/src/HTTPIOStream.cpp mode change 100644 => 100755 Net/src/HTTPMessage.cpp mode change 100644 => 100755 Net/src/HTTPRequest.cpp mode change 100644 => 100755 Net/src/HTTPRequestHandler.cpp mode change 100644 => 100755 Net/src/HTTPRequestHandlerFactory.cpp mode change 100644 => 100755 Net/src/HTTPResponse.cpp mode change 100644 => 100755 Net/src/HTTPServer.cpp mode change 100644 => 100755 Net/src/HTTPServerConnection.cpp mode change 100644 => 100755 Net/src/HTTPServerConnectionFactory.cpp mode change 100644 => 100755 Net/src/HTTPServerParams.cpp mode change 100644 => 100755 Net/src/HTTPServerRequest.cpp mode change 100644 => 100755 Net/src/HTTPServerRequestImpl.cpp mode change 100644 => 100755 Net/src/HTTPServerResponse.cpp mode change 100644 => 100755 Net/src/HTTPServerResponseImpl.cpp mode change 100644 => 100755 Net/src/HTTPServerSession.cpp mode change 100644 => 100755 Net/src/HTTPSession.cpp mode change 100644 => 100755 Net/src/HTTPSessionFactory.cpp mode change 100644 => 100755 Net/src/HTTPSessionInstantiator.cpp mode change 100644 => 100755 Net/src/HTTPStream.cpp mode change 100644 => 100755 Net/src/HTTPStreamFactory.cpp mode change 100644 => 100755 Net/src/HostEntry.cpp mode change 100644 => 100755 Net/src/ICMPClient.cpp mode change 100644 => 100755 Net/src/ICMPEventArgs.cpp mode change 100644 => 100755 Net/src/ICMPPacket.cpp mode change 100644 => 100755 Net/src/ICMPPacketImpl.cpp mode change 100644 => 100755 Net/src/ICMPSocket.cpp mode change 100644 => 100755 Net/src/ICMPSocketImpl.cpp mode change 100644 => 100755 Net/src/ICMPv4PacketImpl.cpp mode change 100644 => 100755 Net/src/IPAddress.cpp mode change 100644 => 100755 Net/src/IPAddressImpl.cpp mode change 100644 => 100755 Net/src/MailMessage.cpp mode change 100644 => 100755 Net/src/MailRecipient.cpp mode change 100644 => 100755 Net/src/MailStream.cpp mode change 100644 => 100755 Net/src/MediaType.cpp mode change 100644 => 100755 Net/src/MessageHeader.cpp mode change 100644 => 100755 Net/src/MulticastSocket.cpp mode change 100644 => 100755 Net/src/MultipartReader.cpp mode change 100644 => 100755 Net/src/MultipartWriter.cpp mode change 100644 => 100755 Net/src/NTPClient.cpp mode change 100644 => 100755 Net/src/NTPEventArgs.cpp mode change 100644 => 100755 Net/src/NTPPacket.cpp mode change 100644 => 100755 Net/src/NameValueCollection.cpp mode change 100644 => 100755 Net/src/Net.cpp mode change 100644 => 100755 Net/src/NetException.cpp mode change 100644 => 100755 Net/src/NetworkInterface.cpp mode change 100644 => 100755 Net/src/NullPartHandler.cpp mode change 100644 => 100755 Net/src/POP3ClientSession.cpp mode change 100644 => 100755 Net/src/PartHandler.cpp mode change 100644 => 100755 Net/src/PartSource.cpp mode change 100644 => 100755 Net/src/PartStore.cpp mode change 100644 => 100755 Net/src/QuotedPrintableDecoder.cpp mode change 100644 => 100755 Net/src/QuotedPrintableEncoder.cpp mode change 100644 => 100755 Net/src/RawSocket.cpp mode change 100644 => 100755 Net/src/RawSocketImpl.cpp mode change 100644 => 100755 Net/src/RemoteSyslogChannel.cpp mode change 100644 => 100755 Net/src/RemoteSyslogListener.cpp mode change 100644 => 100755 Net/src/SMTPChannel.cpp mode change 100644 => 100755 Net/src/SMTPClientSession.cpp mode change 100644 => 100755 Net/src/ServerSocket.cpp mode change 100644 => 100755 Net/src/ServerSocketImpl.cpp mode change 100644 => 100755 Net/src/Socket.cpp mode change 100644 => 100755 Net/src/SocketAddress.cpp mode change 100644 => 100755 Net/src/SocketAddressImpl.cpp mode change 100644 => 100755 Net/src/SocketImpl.cpp mode change 100644 => 100755 Net/src/SocketNotification.cpp mode change 100644 => 100755 Net/src/SocketNotifier.cpp mode change 100644 => 100755 Net/src/SocketReactor.cpp mode change 100644 => 100755 Net/src/SocketStream.cpp mode change 100644 => 100755 Net/src/StreamSocket.cpp mode change 100644 => 100755 Net/src/StreamSocketImpl.cpp mode change 100644 => 100755 Net/src/StringPartSource.cpp mode change 100644 => 100755 Net/src/TCPServer.cpp mode change 100644 => 100755 Net/src/TCPServerConnection.cpp mode change 100644 => 100755 Net/src/TCPServerConnectionFactory.cpp mode change 100644 => 100755 Net/src/TCPServerDispatcher.cpp mode change 100644 => 100755 Net/src/TCPServerParams.cpp mode change 100644 => 100755 Net/src/WebSocket.cpp mode change 100644 => 100755 Net/src/WebSocketImpl.cpp mode change 100644 => 100755 Net/testsuite/src/DNSTest.cpp mode change 100644 => 100755 Net/testsuite/src/DNSTest.h mode change 100644 => 100755 Net/testsuite/src/DatagramSocketTest.cpp mode change 100644 => 100755 Net/testsuite/src/DatagramSocketTest.h mode change 100644 => 100755 Net/testsuite/src/DialogServer.cpp mode change 100644 => 100755 Net/testsuite/src/DialogServer.h mode change 100644 => 100755 Net/testsuite/src/DialogSocketTest.cpp mode change 100644 => 100755 Net/testsuite/src/DialogSocketTest.h mode change 100644 => 100755 Net/testsuite/src/Driver.cpp mode change 100644 => 100755 Net/testsuite/src/EchoServer.cpp mode change 100644 => 100755 Net/testsuite/src/EchoServer.h mode change 100644 => 100755 Net/testsuite/src/FTPClientSessionTest.cpp mode change 100644 => 100755 Net/testsuite/src/FTPClientSessionTest.h mode change 100644 => 100755 Net/testsuite/src/FTPClientTestSuite.cpp mode change 100644 => 100755 Net/testsuite/src/FTPClientTestSuite.h mode change 100644 => 100755 Net/testsuite/src/FTPStreamFactoryTest.cpp mode change 100644 => 100755 Net/testsuite/src/FTPStreamFactoryTest.h mode change 100644 => 100755 Net/testsuite/src/HTMLFormTest.cpp mode change 100644 => 100755 Net/testsuite/src/HTMLFormTest.h mode change 100644 => 100755 Net/testsuite/src/HTMLTestSuite.cpp mode change 100644 => 100755 Net/testsuite/src/HTMLTestSuite.h mode change 100644 => 100755 Net/testsuite/src/HTTPClientSessionTest.cpp mode change 100644 => 100755 Net/testsuite/src/HTTPClientSessionTest.h mode change 100644 => 100755 Net/testsuite/src/HTTPClientTestSuite.cpp mode change 100644 => 100755 Net/testsuite/src/HTTPClientTestSuite.h mode change 100644 => 100755 Net/testsuite/src/HTTPCookieTest.cpp mode change 100644 => 100755 Net/testsuite/src/HTTPCookieTest.h mode change 100644 => 100755 Net/testsuite/src/HTTPCredentialsTest.cpp mode change 100644 => 100755 Net/testsuite/src/HTTPCredentialsTest.h mode change 100644 => 100755 Net/testsuite/src/HTTPRequestTest.cpp mode change 100644 => 100755 Net/testsuite/src/HTTPRequestTest.h mode change 100644 => 100755 Net/testsuite/src/HTTPResponseTest.cpp mode change 100644 => 100755 Net/testsuite/src/HTTPResponseTest.h mode change 100644 => 100755 Net/testsuite/src/HTTPServerTest.cpp mode change 100644 => 100755 Net/testsuite/src/HTTPServerTest.h mode change 100644 => 100755 Net/testsuite/src/HTTPServerTestSuite.cpp mode change 100644 => 100755 Net/testsuite/src/HTTPServerTestSuite.h mode change 100644 => 100755 Net/testsuite/src/HTTPStreamFactoryTest.cpp mode change 100644 => 100755 Net/testsuite/src/HTTPStreamFactoryTest.h mode change 100644 => 100755 Net/testsuite/src/HTTPTestServer.cpp mode change 100644 => 100755 Net/testsuite/src/HTTPTestServer.h mode change 100644 => 100755 Net/testsuite/src/HTTPTestSuite.cpp mode change 100644 => 100755 Net/testsuite/src/HTTPTestSuite.h mode change 100644 => 100755 Net/testsuite/src/ICMPClientTest.cpp mode change 100644 => 100755 Net/testsuite/src/ICMPClientTest.h mode change 100644 => 100755 Net/testsuite/src/ICMPClientTestSuite.cpp mode change 100644 => 100755 Net/testsuite/src/ICMPClientTestSuite.h mode change 100644 => 100755 Net/testsuite/src/ICMPSocketTest.cpp mode change 100644 => 100755 Net/testsuite/src/ICMPSocketTest.h mode change 100644 => 100755 Net/testsuite/src/IPAddressTest.cpp mode change 100644 => 100755 Net/testsuite/src/IPAddressTest.h mode change 100644 => 100755 Net/testsuite/src/MailMessageTest.cpp mode change 100644 => 100755 Net/testsuite/src/MailMessageTest.h mode change 100644 => 100755 Net/testsuite/src/MailStreamTest.cpp mode change 100644 => 100755 Net/testsuite/src/MailStreamTest.h mode change 100644 => 100755 Net/testsuite/src/MailTestSuite.cpp mode change 100644 => 100755 Net/testsuite/src/MailTestSuite.h mode change 100644 => 100755 Net/testsuite/src/MediaTypeTest.cpp mode change 100644 => 100755 Net/testsuite/src/MediaTypeTest.h mode change 100644 => 100755 Net/testsuite/src/MessageHeaderTest.cpp mode change 100644 => 100755 Net/testsuite/src/MessageHeaderTest.h mode change 100644 => 100755 Net/testsuite/src/MessagesTestSuite.cpp mode change 100644 => 100755 Net/testsuite/src/MessagesTestSuite.h mode change 100644 => 100755 Net/testsuite/src/MulticastEchoServer.cpp mode change 100644 => 100755 Net/testsuite/src/MulticastEchoServer.h mode change 100644 => 100755 Net/testsuite/src/MulticastSocketTest.cpp mode change 100644 => 100755 Net/testsuite/src/MulticastSocketTest.h mode change 100644 => 100755 Net/testsuite/src/MultipartReaderTest.cpp mode change 100644 => 100755 Net/testsuite/src/MultipartReaderTest.h mode change 100644 => 100755 Net/testsuite/src/MultipartWriterTest.cpp mode change 100644 => 100755 Net/testsuite/src/MultipartWriterTest.h mode change 100644 => 100755 Net/testsuite/src/NTPClientTest.cpp mode change 100644 => 100755 Net/testsuite/src/NTPClientTest.h mode change 100644 => 100755 Net/testsuite/src/NTPClientTestSuite.cpp mode change 100644 => 100755 Net/testsuite/src/NTPClientTestSuite.h mode change 100644 => 100755 Net/testsuite/src/NameValueCollectionTest.cpp mode change 100644 => 100755 Net/testsuite/src/NameValueCollectionTest.h mode change 100644 => 100755 Net/testsuite/src/NetCoreTestSuite.cpp mode change 100644 => 100755 Net/testsuite/src/NetCoreTestSuite.h mode change 100644 => 100755 Net/testsuite/src/NetTestSuite.cpp mode change 100644 => 100755 Net/testsuite/src/NetTestSuite.h mode change 100644 => 100755 Net/testsuite/src/NetworkInterfaceTest.cpp mode change 100644 => 100755 Net/testsuite/src/NetworkInterfaceTest.h mode change 100644 => 100755 Net/testsuite/src/POP3ClientSessionTest.cpp mode change 100644 => 100755 Net/testsuite/src/POP3ClientSessionTest.h mode change 100644 => 100755 Net/testsuite/src/QuotedPrintableTest.cpp mode change 100644 => 100755 Net/testsuite/src/QuotedPrintableTest.h mode change 100644 => 100755 Net/testsuite/src/RawSocketTest.cpp mode change 100644 => 100755 Net/testsuite/src/RawSocketTest.h mode change 100644 => 100755 Net/testsuite/src/ReactorTestSuite.cpp mode change 100644 => 100755 Net/testsuite/src/ReactorTestSuite.h mode change 100644 => 100755 Net/testsuite/src/SMTPClientSessionTest.cpp mode change 100644 => 100755 Net/testsuite/src/SMTPClientSessionTest.h mode change 100644 => 100755 Net/testsuite/src/SocketAddressTest.cpp mode change 100644 => 100755 Net/testsuite/src/SocketAddressTest.h mode change 100644 => 100755 Net/testsuite/src/SocketReactorTest.cpp mode change 100644 => 100755 Net/testsuite/src/SocketReactorTest.h mode change 100644 => 100755 Net/testsuite/src/SocketStreamTest.cpp mode change 100644 => 100755 Net/testsuite/src/SocketStreamTest.h mode change 100644 => 100755 Net/testsuite/src/SocketTest.cpp mode change 100644 => 100755 Net/testsuite/src/SocketTest.h mode change 100644 => 100755 Net/testsuite/src/SocketsTestSuite.cpp mode change 100644 => 100755 Net/testsuite/src/SocketsTestSuite.h mode change 100644 => 100755 Net/testsuite/src/SyslogTest.cpp mode change 100644 => 100755 Net/testsuite/src/SyslogTest.h mode change 100644 => 100755 Net/testsuite/src/TCPServerTest.cpp mode change 100644 => 100755 Net/testsuite/src/TCPServerTest.h mode change 100644 => 100755 Net/testsuite/src/TCPServerTestSuite.cpp mode change 100644 => 100755 Net/testsuite/src/TCPServerTestSuite.h mode change 100644 => 100755 Net/testsuite/src/UDPEchoServer.cpp mode change 100644 => 100755 Net/testsuite/src/UDPEchoServer.h mode change 100644 => 100755 Net/testsuite/src/WebSocketTest.cpp mode change 100644 => 100755 Net/testsuite/src/WebSocketTest.h mode change 100644 => 100755 Net/testsuite/src/WebSocketTestSuite.cpp mode change 100644 => 100755 Net/testsuite/src/WebSocketTestSuite.h mode change 100644 => 100755 Net/testsuite/src/WinCEDriver.cpp mode change 100644 => 100755 Net/testsuite/src/WinDriver.cpp mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/AcceptCertificateHandler.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/CertificateHandlerFactory.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/CertificateHandlerFactoryMgr.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/ConsoleCertificateHandler.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/Context.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/HTTPSClientSession.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/HTTPSSessionInstantiator.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/HTTPSStreamFactory.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/InvalidCertificateHandler.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/KeyConsoleHandler.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/KeyFileHandler.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/NetSSL.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/PrivateKeyFactory.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/PrivateKeyFactoryMgr.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/PrivateKeyPassphraseHandler.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/RejectCertificateHandler.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/SSLException.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/SSLManager.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/SecureSMTPClientSession.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/SecureServerSocket.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/SecureServerSocketImpl.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/SecureSocketImpl.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/SecureStreamSocket.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/SecureStreamSocketImpl.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/Session.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/Utility.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/VerificationErrorArgs.h mode change 100644 => 100755 NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h mode change 100644 => 100755 NetSSL_OpenSSL/samples/HTTPSTimeServer/src/HTTPSTimeServer.cpp mode change 100644 => 100755 NetSSL_OpenSSL/samples/Mail/src/Mail.cpp mode change 100644 => 100755 NetSSL_OpenSSL/samples/download/src/download.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/AcceptCertificateHandler.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/CertificateHandlerFactory.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/CertificateHandlerFactoryMgr.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/ConsoleCertificateHandler.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/Context.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/HTTPSClientSession.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/HTTPSSessionInstantiator.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/HTTPSStreamFactory.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/InvalidCertificateHandler.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/KeyConsoleHandler.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/KeyFileHandler.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/PrivateKeyFactory.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/PrivateKeyFactoryMgr.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/PrivateKeyPassphraseHandler.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/RejectCertificateHandler.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/SSLException.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/SSLManager.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/SecureSMTPClientSession.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/SecureServerSocket.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/SecureServerSocketImpl.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/SecureSocketImpl.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/SecureStreamSocket.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/SecureStreamSocketImpl.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/Session.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/Utility.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/VerificationErrorArgs.cpp mode change 100644 => 100755 NetSSL_OpenSSL/src/X509Certificate.cpp mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/Driver.cpp mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/HTTPSClientSessionTest.cpp mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/HTTPSClientSessionTest.h mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/HTTPSClientTestSuite.cpp mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/HTTPSClientTestSuite.h mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/HTTPSServerTest.cpp mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/HTTPSServerTest.h mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/HTTPSServerTestSuite.cpp mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/HTTPSServerTestSuite.h mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/HTTPSStreamFactoryTest.cpp mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/HTTPSStreamFactoryTest.h mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/HTTPSTestServer.cpp mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/HTTPSTestServer.h mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/NetSSLTestSuite.cpp mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/NetSSLTestSuite.h mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/TCPServerTest.cpp mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/TCPServerTest.h mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/TCPServerTestSuite.cpp mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/TCPServerTestSuite.h mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/WinCEDriver.cpp mode change 100644 => 100755 NetSSL_OpenSSL/testsuite/src/WinDriver.cpp mode change 100644 => 100755 PDF/include/Poco/PDF/Destination.h mode change 100644 => 100755 PDF/include/Poco/PDF/Document.h mode change 100644 => 100755 PDF/include/Poco/PDF/Encoder.h mode change 100644 => 100755 PDF/include/Poco/PDF/Font.h mode change 100644 => 100755 PDF/include/Poco/PDF/Image.h mode change 100644 => 100755 PDF/include/Poco/PDF/LinkAnnotation.h mode change 100644 => 100755 PDF/include/Poco/PDF/Outline.h mode change 100644 => 100755 PDF/include/Poco/PDF/PDF.h mode change 100644 => 100755 PDF/include/Poco/PDF/PDFException.h mode change 100644 => 100755 PDF/include/Poco/PDF/Page.h mode change 100644 => 100755 PDF/include/Poco/PDF/Resource.h mode change 100644 => 100755 PDF/include/Poco/PDF/TextAnnotation.h mode change 100644 => 100755 PDF/src/Destination.cpp mode change 100644 => 100755 PDF/src/Document.cpp mode change 100644 => 100755 PDF/src/Encoder.cpp mode change 100644 => 100755 PDF/src/Font.cpp mode change 100644 => 100755 PDF/src/Image.cpp mode change 100644 => 100755 PDF/src/LinkAnnotation.cpp mode change 100644 => 100755 PDF/src/Outline.cpp mode change 100644 => 100755 PDF/src/PDFException.cpp mode change 100644 => 100755 PDF/src/Page.cpp mode change 100644 => 100755 PDF/src/TextAnnotation.cpp mode change 100644 => 100755 PDF/testsuite/src/Driver.cpp mode change 100644 => 100755 PDF/testsuite/src/PDFTest.cpp mode change 100644 => 100755 PDF/testsuite/src/PDFTest.h mode change 100644 => 100755 PDF/testsuite/src/PDFTestSuite.cpp mode change 100644 => 100755 PDF/testsuite/src/PDFTestSuite.h mode change 100644 => 100755 PDF/testsuite/src/WinDriver.cpp mode change 100644 => 100755 PageCompiler/File2Page/src/File2Page.cpp mode change 100644 => 100755 PageCompiler/samples/HTTPTimeServer/src/HTTPTimeServerApp.cpp mode change 100644 => 100755 PageCompiler/src/ApacheCodeWriter.cpp mode change 100644 => 100755 PageCompiler/src/ApacheCodeWriter.h mode change 100644 => 100755 PageCompiler/src/CodeWriter.cpp mode change 100644 => 100755 PageCompiler/src/CodeWriter.h mode change 100644 => 100755 PageCompiler/src/OSPCodeWriter.cpp mode change 100644 => 100755 PageCompiler/src/OSPCodeWriter.h mode change 100644 => 100755 PageCompiler/src/Page.cpp mode change 100644 => 100755 PageCompiler/src/Page.h mode change 100644 => 100755 PageCompiler/src/PageCompiler.cpp mode change 100644 => 100755 PageCompiler/src/PageReader.cpp mode change 100644 => 100755 PageCompiler/src/PageReader.h mode change 100644 => 100755 PocoDoc/src/DocWriter.cpp mode change 100644 => 100755 PocoDoc/src/DocWriter.h mode change 100644 => 100755 PocoDoc/src/PocoDoc.cpp mode change 100644 => 100755 ProGen/src/ProGen.cpp mode change 100644 => 100755 ProGen/src/VSXMLWriter.cpp mode change 100644 => 100755 ProGen/src/VSXMLWriter.h mode change 100644 => 100755 SevenZip/include/Poco/SevenZip/Archive.h mode change 100644 => 100755 SevenZip/include/Poco/SevenZip/ArchiveEntry.h mode change 100644 => 100755 SevenZip/include/Poco/SevenZip/SevenZip.h mode change 100644 => 100755 SevenZip/samples/un7zip/src/un7zip.cpp mode change 100644 => 100755 SevenZip/src/Archive.cpp mode change 100644 => 100755 SevenZip/src/ArchiveEntry.cpp mode change 100644 => 100755 Util/include/Poco/Util/AbstractConfiguration.h mode change 100644 => 100755 Util/include/Poco/Util/Application.h mode change 100644 => 100755 Util/include/Poco/Util/ConfigurationMapper.h mode change 100644 => 100755 Util/include/Poco/Util/ConfigurationView.h mode change 100644 => 100755 Util/include/Poco/Util/FilesystemConfiguration.h mode change 100644 => 100755 Util/include/Poco/Util/HelpFormatter.h mode change 100644 => 100755 Util/include/Poco/Util/IniFileConfiguration.h mode change 100644 => 100755 Util/include/Poco/Util/IntValidator.h mode change 100644 => 100755 Util/include/Poco/Util/JSONConfiguration.h mode change 100644 => 100755 Util/include/Poco/Util/LayeredConfiguration.h mode change 100644 => 100755 Util/include/Poco/Util/LoggingConfigurator.h mode change 100644 => 100755 Util/include/Poco/Util/LoggingSubsystem.h mode change 100644 => 100755 Util/include/Poco/Util/MapConfiguration.h mode change 100644 => 100755 Util/include/Poco/Util/Option.h mode change 100644 => 100755 Util/include/Poco/Util/OptionCallback.h mode change 100644 => 100755 Util/include/Poco/Util/OptionException.h mode change 100644 => 100755 Util/include/Poco/Util/OptionProcessor.h mode change 100644 => 100755 Util/include/Poco/Util/OptionSet.h mode change 100644 => 100755 Util/include/Poco/Util/PropertyFileConfiguration.h mode change 100644 => 100755 Util/include/Poco/Util/RegExpValidator.h mode change 100644 => 100755 Util/include/Poco/Util/ServerApplication.h mode change 100644 => 100755 Util/include/Poco/Util/Subsystem.h mode change 100644 => 100755 Util/include/Poco/Util/SystemConfiguration.h mode change 100644 => 100755 Util/include/Poco/Util/Timer.h mode change 100644 => 100755 Util/include/Poco/Util/TimerTask.h mode change 100644 => 100755 Util/include/Poco/Util/TimerTaskAdapter.h mode change 100644 => 100755 Util/include/Poco/Util/Units.h mode change 100644 => 100755 Util/include/Poco/Util/Util.h mode change 100644 => 100755 Util/include/Poco/Util/Validator.h mode change 100644 => 100755 Util/include/Poco/Util/WinRegistryConfiguration.h mode change 100644 => 100755 Util/include/Poco/Util/WinRegistryKey.h mode change 100644 => 100755 Util/include/Poco/Util/WinService.h mode change 100644 => 100755 Util/include/Poco/Util/XMLConfiguration.h mode change 100644 => 100755 Util/samples/SampleApp/src/SampleApp.cpp mode change 100644 => 100755 Util/samples/SampleServer/src/SampleServer.cpp mode change 100644 => 100755 Util/samples/Units/src/Units.cpp mode change 100644 => 100755 Util/samples/pkill/src/pkill.cpp mode change 100644 => 100755 Util/src/AbstractConfiguration.cpp mode change 100644 => 100755 Util/src/Application.cpp mode change 100644 => 100755 Util/src/ConfigurationMapper.cpp mode change 100644 => 100755 Util/src/ConfigurationView.cpp mode change 100644 => 100755 Util/src/FilesystemConfiguration.cpp mode change 100644 => 100755 Util/src/HelpFormatter.cpp mode change 100644 => 100755 Util/src/IniFileConfiguration.cpp mode change 100644 => 100755 Util/src/IntValidator.cpp mode change 100644 => 100755 Util/src/JSONConfiguration.cpp mode change 100644 => 100755 Util/src/LayeredConfiguration.cpp mode change 100644 => 100755 Util/src/LoggingConfigurator.cpp mode change 100644 => 100755 Util/src/LoggingSubsystem.cpp mode change 100644 => 100755 Util/src/MapConfiguration.cpp mode change 100644 => 100755 Util/src/Option.cpp mode change 100644 => 100755 Util/src/OptionCallback.cpp mode change 100644 => 100755 Util/src/OptionException.cpp mode change 100644 => 100755 Util/src/OptionProcessor.cpp mode change 100644 => 100755 Util/src/OptionSet.cpp mode change 100644 => 100755 Util/src/PropertyFileConfiguration.cpp mode change 100644 => 100755 Util/src/RegExpValidator.cpp mode change 100644 => 100755 Util/src/ServerApplication.cpp mode change 100644 => 100755 Util/src/Subsystem.cpp mode change 100644 => 100755 Util/src/SystemConfiguration.cpp mode change 100644 => 100755 Util/src/Timer.cpp mode change 100644 => 100755 Util/src/TimerTask.cpp mode change 100644 => 100755 Util/src/Validator.cpp mode change 100644 => 100755 Util/src/WinRegistryConfiguration.cpp mode change 100644 => 100755 Util/src/WinRegistryKey.cpp mode change 100644 => 100755 Util/src/WinService.cpp mode change 100644 => 100755 Util/src/XMLConfiguration.cpp mode change 100644 => 100755 Util/testsuite/src/AbstractConfigurationTest.cpp mode change 100644 => 100755 Util/testsuite/src/AbstractConfigurationTest.h mode change 100644 => 100755 Util/testsuite/src/ConfigurationMapperTest.cpp mode change 100644 => 100755 Util/testsuite/src/ConfigurationMapperTest.h mode change 100644 => 100755 Util/testsuite/src/ConfigurationTestSuite.cpp mode change 100644 => 100755 Util/testsuite/src/ConfigurationTestSuite.h mode change 100644 => 100755 Util/testsuite/src/ConfigurationViewTest.cpp mode change 100644 => 100755 Util/testsuite/src/ConfigurationViewTest.h mode change 100644 => 100755 Util/testsuite/src/Driver.cpp mode change 100644 => 100755 Util/testsuite/src/FilesystemConfigurationTest.cpp mode change 100644 => 100755 Util/testsuite/src/FilesystemConfigurationTest.h mode change 100644 => 100755 Util/testsuite/src/HelpFormatterTest.cpp mode change 100644 => 100755 Util/testsuite/src/HelpFormatterTest.h mode change 100644 => 100755 Util/testsuite/src/IniFileConfigurationTest.cpp mode change 100644 => 100755 Util/testsuite/src/IniFileConfigurationTest.h mode change 100644 => 100755 Util/testsuite/src/JSONConfigurationTest.cpp mode change 100644 => 100755 Util/testsuite/src/JSONConfigurationTest.h mode change 100644 => 100755 Util/testsuite/src/LayeredConfigurationTest.cpp mode change 100644 => 100755 Util/testsuite/src/LayeredConfigurationTest.h mode change 100644 => 100755 Util/testsuite/src/LoggingConfiguratorTest.cpp mode change 100644 => 100755 Util/testsuite/src/LoggingConfiguratorTest.h mode change 100644 => 100755 Util/testsuite/src/MapConfigurationTest.cpp mode change 100644 => 100755 Util/testsuite/src/MapConfigurationTest.h mode change 100644 => 100755 Util/testsuite/src/OptionProcessorTest.cpp mode change 100644 => 100755 Util/testsuite/src/OptionProcessorTest.h mode change 100644 => 100755 Util/testsuite/src/OptionSetTest.cpp mode change 100644 => 100755 Util/testsuite/src/OptionSetTest.h mode change 100644 => 100755 Util/testsuite/src/OptionTest.cpp mode change 100644 => 100755 Util/testsuite/src/OptionTest.h mode change 100644 => 100755 Util/testsuite/src/OptionsTestSuite.cpp mode change 100644 => 100755 Util/testsuite/src/OptionsTestSuite.h mode change 100644 => 100755 Util/testsuite/src/PropertyFileConfigurationTest.cpp mode change 100644 => 100755 Util/testsuite/src/PropertyFileConfigurationTest.h mode change 100644 => 100755 Util/testsuite/src/SystemConfigurationTest.cpp mode change 100644 => 100755 Util/testsuite/src/SystemConfigurationTest.h mode change 100644 => 100755 Util/testsuite/src/TimerTest.cpp mode change 100644 => 100755 Util/testsuite/src/TimerTest.h mode change 100644 => 100755 Util/testsuite/src/TimerTestSuite.cpp mode change 100644 => 100755 Util/testsuite/src/TimerTestSuite.h mode change 100644 => 100755 Util/testsuite/src/UtilTestSuite.cpp mode change 100644 => 100755 Util/testsuite/src/UtilTestSuite.h mode change 100644 => 100755 Util/testsuite/src/ValidatorTest.cpp mode change 100644 => 100755 Util/testsuite/src/ValidatorTest.h mode change 100644 => 100755 Util/testsuite/src/WinCEDriver.cpp mode change 100644 => 100755 Util/testsuite/src/WinConfigurationTest.cpp mode change 100644 => 100755 Util/testsuite/src/WinConfigurationTest.h mode change 100644 => 100755 Util/testsuite/src/WinDriver.cpp mode change 100644 => 100755 Util/testsuite/src/WinRegistryTest.cpp mode change 100644 => 100755 Util/testsuite/src/WinRegistryTest.h mode change 100644 => 100755 Util/testsuite/src/WindowsTestSuite.cpp mode change 100644 => 100755 Util/testsuite/src/WindowsTestSuite.h mode change 100644 => 100755 Util/testsuite/src/XMLConfigurationTest.cpp mode change 100644 => 100755 Util/testsuite/src/XMLConfigurationTest.h mode change 100644 => 100755 XML/include/Poco/DOM/AbstractContainerNode.h mode change 100644 => 100755 XML/include/Poco/DOM/AbstractNode.h mode change 100644 => 100755 XML/include/Poco/DOM/Attr.h mode change 100644 => 100755 XML/include/Poco/DOM/AttrMap.h mode change 100644 => 100755 XML/include/Poco/DOM/AutoPtr.h mode change 100644 => 100755 XML/include/Poco/DOM/CDATASection.h mode change 100644 => 100755 XML/include/Poco/DOM/CharacterData.h mode change 100644 => 100755 XML/include/Poco/DOM/ChildNodesList.h mode change 100644 => 100755 XML/include/Poco/DOM/Comment.h mode change 100644 => 100755 XML/include/Poco/DOM/DOMBuilder.h mode change 100644 => 100755 XML/include/Poco/DOM/DOMException.h mode change 100644 => 100755 XML/include/Poco/DOM/DOMImplementation.h mode change 100644 => 100755 XML/include/Poco/DOM/DOMObject.h mode change 100644 => 100755 XML/include/Poco/DOM/DOMParser.h mode change 100644 => 100755 XML/include/Poco/DOM/DOMSerializer.h mode change 100644 => 100755 XML/include/Poco/DOM/DOMWriter.h mode change 100644 => 100755 XML/include/Poco/DOM/DTDMap.h mode change 100644 => 100755 XML/include/Poco/DOM/Document.h mode change 100644 => 100755 XML/include/Poco/DOM/DocumentEvent.h mode change 100644 => 100755 XML/include/Poco/DOM/DocumentFragment.h mode change 100644 => 100755 XML/include/Poco/DOM/DocumentType.h mode change 100644 => 100755 XML/include/Poco/DOM/Element.h mode change 100644 => 100755 XML/include/Poco/DOM/ElementsByTagNameList.h mode change 100644 => 100755 XML/include/Poco/DOM/Entity.h mode change 100644 => 100755 XML/include/Poco/DOM/EntityReference.h mode change 100644 => 100755 XML/include/Poco/DOM/Event.h mode change 100644 => 100755 XML/include/Poco/DOM/EventDispatcher.h mode change 100644 => 100755 XML/include/Poco/DOM/EventException.h mode change 100644 => 100755 XML/include/Poco/DOM/EventListener.h mode change 100644 => 100755 XML/include/Poco/DOM/EventTarget.h mode change 100644 => 100755 XML/include/Poco/DOM/MutationEvent.h mode change 100644 => 100755 XML/include/Poco/DOM/NamedNodeMap.h mode change 100644 => 100755 XML/include/Poco/DOM/Node.h mode change 100644 => 100755 XML/include/Poco/DOM/NodeAppender.h mode change 100644 => 100755 XML/include/Poco/DOM/NodeFilter.h mode change 100644 => 100755 XML/include/Poco/DOM/NodeIterator.h mode change 100644 => 100755 XML/include/Poco/DOM/NodeList.h mode change 100644 => 100755 XML/include/Poco/DOM/Notation.h mode change 100644 => 100755 XML/include/Poco/DOM/ProcessingInstruction.h mode change 100644 => 100755 XML/include/Poco/DOM/Text.h mode change 100644 => 100755 XML/include/Poco/DOM/TreeWalker.h mode change 100644 => 100755 XML/include/Poco/SAX/Attributes.h mode change 100644 => 100755 XML/include/Poco/SAX/AttributesImpl.h mode change 100644 => 100755 XML/include/Poco/SAX/ContentHandler.h mode change 100644 => 100755 XML/include/Poco/SAX/DTDHandler.h mode change 100644 => 100755 XML/include/Poco/SAX/DeclHandler.h mode change 100644 => 100755 XML/include/Poco/SAX/DefaultHandler.h mode change 100644 => 100755 XML/include/Poco/SAX/EntityResolver.h mode change 100644 => 100755 XML/include/Poco/SAX/EntityResolverImpl.h mode change 100644 => 100755 XML/include/Poco/SAX/ErrorHandler.h mode change 100644 => 100755 XML/include/Poco/SAX/InputSource.h mode change 100644 => 100755 XML/include/Poco/SAX/LexicalHandler.h mode change 100644 => 100755 XML/include/Poco/SAX/Locator.h mode change 100644 => 100755 XML/include/Poco/SAX/LocatorImpl.h mode change 100644 => 100755 XML/include/Poco/SAX/NamespaceSupport.h mode change 100644 => 100755 XML/include/Poco/SAX/SAXException.h mode change 100644 => 100755 XML/include/Poco/SAX/SAXParser.h mode change 100644 => 100755 XML/include/Poco/SAX/WhitespaceFilter.h mode change 100644 => 100755 XML/include/Poco/SAX/XMLFilter.h mode change 100644 => 100755 XML/include/Poco/SAX/XMLFilterImpl.h mode change 100644 => 100755 XML/include/Poco/SAX/XMLReader.h mode change 100644 => 100755 XML/include/Poco/XML/Name.h mode change 100644 => 100755 XML/include/Poco/XML/NamePool.h mode change 100644 => 100755 XML/include/Poco/XML/NamespaceStrategy.h mode change 100644 => 100755 XML/include/Poco/XML/ParserEngine.h mode change 100644 => 100755 XML/include/Poco/XML/XML.h mode change 100644 => 100755 XML/include/Poco/XML/XMLException.h mode change 100644 => 100755 XML/include/Poco/XML/XMLStream.h mode change 100644 => 100755 XML/include/Poco/XML/XMLString.h mode change 100644 => 100755 XML/include/Poco/XML/XMLWriter.h mode change 100644 => 100755 XML/samples/DOMParser/src/DOMParser.cpp mode change 100644 => 100755 XML/samples/DOMWriter/src/DOMWriter.cpp mode change 100644 => 100755 XML/samples/PrettyPrint/src/PrettyPrint.cpp mode change 100644 => 100755 XML/samples/SAXParser/src/SAXParser.cpp mode change 100644 => 100755 XML/src/AbstractContainerNode.cpp mode change 100644 => 100755 XML/src/AbstractNode.cpp mode change 100644 => 100755 XML/src/Attr.cpp mode change 100644 => 100755 XML/src/AttrMap.cpp mode change 100644 => 100755 XML/src/Attributes.cpp mode change 100644 => 100755 XML/src/AttributesImpl.cpp mode change 100644 => 100755 XML/src/CDATASection.cpp mode change 100644 => 100755 XML/src/CharacterData.cpp mode change 100644 => 100755 XML/src/ChildNodesList.cpp mode change 100644 => 100755 XML/src/Comment.cpp mode change 100644 => 100755 XML/src/ContentHandler.cpp mode change 100644 => 100755 XML/src/DOMBuilder.cpp mode change 100644 => 100755 XML/src/DOMException.cpp mode change 100644 => 100755 XML/src/DOMImplementation.cpp mode change 100644 => 100755 XML/src/DOMObject.cpp mode change 100644 => 100755 XML/src/DOMParser.cpp mode change 100644 => 100755 XML/src/DOMSerializer.cpp mode change 100644 => 100755 XML/src/DOMWriter.cpp mode change 100644 => 100755 XML/src/DTDHandler.cpp mode change 100644 => 100755 XML/src/DTDMap.cpp mode change 100644 => 100755 XML/src/DeclHandler.cpp mode change 100644 => 100755 XML/src/DefaultHandler.cpp mode change 100644 => 100755 XML/src/Document.cpp mode change 100644 => 100755 XML/src/DocumentEvent.cpp mode change 100644 => 100755 XML/src/DocumentFragment.cpp mode change 100644 => 100755 XML/src/DocumentType.cpp mode change 100644 => 100755 XML/src/Element.cpp mode change 100644 => 100755 XML/src/ElementsByTagNameList.cpp mode change 100644 => 100755 XML/src/Entity.cpp mode change 100644 => 100755 XML/src/EntityReference.cpp mode change 100644 => 100755 XML/src/EntityResolver.cpp mode change 100644 => 100755 XML/src/EntityResolverImpl.cpp mode change 100644 => 100755 XML/src/ErrorHandler.cpp mode change 100644 => 100755 XML/src/Event.cpp mode change 100644 => 100755 XML/src/EventDispatcher.cpp mode change 100644 => 100755 XML/src/EventException.cpp mode change 100644 => 100755 XML/src/EventListener.cpp mode change 100644 => 100755 XML/src/EventTarget.cpp mode change 100644 => 100755 XML/src/InputSource.cpp mode change 100644 => 100755 XML/src/LexicalHandler.cpp mode change 100644 => 100755 XML/src/Locator.cpp mode change 100644 => 100755 XML/src/LocatorImpl.cpp mode change 100644 => 100755 XML/src/MutationEvent.cpp mode change 100644 => 100755 XML/src/Name.cpp mode change 100644 => 100755 XML/src/NamePool.cpp mode change 100644 => 100755 XML/src/NamedNodeMap.cpp mode change 100644 => 100755 XML/src/NamespaceStrategy.cpp mode change 100644 => 100755 XML/src/NamespaceSupport.cpp mode change 100644 => 100755 XML/src/Node.cpp mode change 100644 => 100755 XML/src/NodeAppender.cpp mode change 100644 => 100755 XML/src/NodeFilter.cpp mode change 100644 => 100755 XML/src/NodeIterator.cpp mode change 100644 => 100755 XML/src/NodeList.cpp mode change 100644 => 100755 XML/src/Notation.cpp mode change 100644 => 100755 XML/src/ParserEngine.cpp mode change 100644 => 100755 XML/src/ProcessingInstruction.cpp mode change 100644 => 100755 XML/src/SAXException.cpp mode change 100644 => 100755 XML/src/SAXParser.cpp mode change 100644 => 100755 XML/src/Text.cpp mode change 100644 => 100755 XML/src/TreeWalker.cpp mode change 100644 => 100755 XML/src/WhitespaceFilter.cpp mode change 100644 => 100755 XML/src/XMLException.cpp mode change 100644 => 100755 XML/src/XMLFilter.cpp mode change 100644 => 100755 XML/src/XMLFilterImpl.cpp mode change 100644 => 100755 XML/src/XMLReader.cpp mode change 100644 => 100755 XML/src/XMLString.cpp mode change 100644 => 100755 XML/src/XMLWriter.cpp mode change 100644 => 100755 XML/src/expat_config.h mode change 100644 => 100755 XML/testsuite/src/AttributesImplTest.cpp mode change 100644 => 100755 XML/testsuite/src/AttributesImplTest.h mode change 100644 => 100755 XML/testsuite/src/ChildNodesTest.cpp mode change 100644 => 100755 XML/testsuite/src/ChildNodesTest.h mode change 100644 => 100755 XML/testsuite/src/DOMTestSuite.cpp mode change 100644 => 100755 XML/testsuite/src/DOMTestSuite.h mode change 100644 => 100755 XML/testsuite/src/DocumentTest.cpp mode change 100644 => 100755 XML/testsuite/src/DocumentTest.h mode change 100644 => 100755 XML/testsuite/src/DocumentTypeTest.cpp mode change 100644 => 100755 XML/testsuite/src/DocumentTypeTest.h mode change 100644 => 100755 XML/testsuite/src/Driver.cpp mode change 100644 => 100755 XML/testsuite/src/ElementTest.cpp mode change 100644 => 100755 XML/testsuite/src/ElementTest.h mode change 100644 => 100755 XML/testsuite/src/EventTest.cpp mode change 100644 => 100755 XML/testsuite/src/EventTest.h mode change 100644 => 100755 XML/testsuite/src/NamePoolTest.cpp mode change 100644 => 100755 XML/testsuite/src/NamePoolTest.h mode change 100644 => 100755 XML/testsuite/src/NameTest.cpp mode change 100644 => 100755 XML/testsuite/src/NameTest.h mode change 100644 => 100755 XML/testsuite/src/NamespaceSupportTest.cpp mode change 100644 => 100755 XML/testsuite/src/NamespaceSupportTest.h mode change 100644 => 100755 XML/testsuite/src/NodeAppenderTest.cpp mode change 100644 => 100755 XML/testsuite/src/NodeAppenderTest.h mode change 100644 => 100755 XML/testsuite/src/NodeIteratorTest.cpp mode change 100644 => 100755 XML/testsuite/src/NodeIteratorTest.h mode change 100644 => 100755 XML/testsuite/src/NodeTest.cpp mode change 100644 => 100755 XML/testsuite/src/NodeTest.h mode change 100644 => 100755 XML/testsuite/src/ParserWriterTest.cpp mode change 100644 => 100755 XML/testsuite/src/ParserWriterTest.h mode change 100644 => 100755 XML/testsuite/src/SAXParserTest.cpp mode change 100644 => 100755 XML/testsuite/src/SAXParserTest.h mode change 100644 => 100755 XML/testsuite/src/SAXTestSuite.cpp mode change 100644 => 100755 XML/testsuite/src/SAXTestSuite.h mode change 100644 => 100755 XML/testsuite/src/TextTest.cpp mode change 100644 => 100755 XML/testsuite/src/TextTest.h mode change 100644 => 100755 XML/testsuite/src/TreeWalkerTest.cpp mode change 100644 => 100755 XML/testsuite/src/TreeWalkerTest.h mode change 100644 => 100755 XML/testsuite/src/WinCEDriver.cpp mode change 100644 => 100755 XML/testsuite/src/WinDriver.cpp mode change 100644 => 100755 XML/testsuite/src/XMLTestSuite.cpp mode change 100644 => 100755 XML/testsuite/src/XMLTestSuite.h mode change 100644 => 100755 XML/testsuite/src/XMLWriterTest.cpp mode change 100644 => 100755 XML/testsuite/src/XMLWriterTest.h mode change 100644 => 100755 Zip/include/Poco/Zip/Add.h mode change 100644 => 100755 Zip/include/Poco/Zip/AutoDetectStream.h mode change 100644 => 100755 Zip/include/Poco/Zip/Compress.h mode change 100644 => 100755 Zip/include/Poco/Zip/Decompress.h mode change 100644 => 100755 Zip/include/Poco/Zip/Delete.h mode change 100644 => 100755 Zip/include/Poco/Zip/Keep.h mode change 100644 => 100755 Zip/include/Poco/Zip/ParseCallback.h mode change 100644 => 100755 Zip/include/Poco/Zip/PartialStream.h mode change 100644 => 100755 Zip/include/Poco/Zip/Rename.h mode change 100644 => 100755 Zip/include/Poco/Zip/Replace.h mode change 100644 => 100755 Zip/include/Poco/Zip/SkipCallback.h mode change 100644 => 100755 Zip/include/Poco/Zip/Zip.h mode change 100644 => 100755 Zip/include/Poco/Zip/ZipArchive.h mode change 100644 => 100755 Zip/include/Poco/Zip/ZipArchiveInfo.h mode change 100644 => 100755 Zip/include/Poco/Zip/ZipCommon.h mode change 100644 => 100755 Zip/include/Poco/Zip/ZipDataInfo.h mode change 100644 => 100755 Zip/include/Poco/Zip/ZipException.h mode change 100644 => 100755 Zip/include/Poco/Zip/ZipFileInfo.h mode change 100644 => 100755 Zip/include/Poco/Zip/ZipLocalFileHeader.h mode change 100644 => 100755 Zip/include/Poco/Zip/ZipManipulator.h mode change 100644 => 100755 Zip/include/Poco/Zip/ZipOperation.h mode change 100644 => 100755 Zip/include/Poco/Zip/ZipStream.h mode change 100644 => 100755 Zip/include/Poco/Zip/ZipUtil.h mode change 100644 => 100755 Zip/samples/unzip/src/unzip.cpp mode change 100644 => 100755 Zip/samples/zip/src/zip.cpp mode change 100644 => 100755 Zip/src/Add.cpp mode change 100644 => 100755 Zip/src/AutoDetectStream.cpp mode change 100644 => 100755 Zip/src/Compress.cpp mode change 100644 => 100755 Zip/src/Decompress.cpp mode change 100644 => 100755 Zip/src/Delete.cpp mode change 100644 => 100755 Zip/src/Keep.cpp mode change 100644 => 100755 Zip/src/ParseCallback.cpp mode change 100644 => 100755 Zip/src/PartialStream.cpp mode change 100644 => 100755 Zip/src/Rename.cpp mode change 100644 => 100755 Zip/src/Replace.cpp mode change 100644 => 100755 Zip/src/SkipCallback.cpp mode change 100644 => 100755 Zip/src/ZipArchive.cpp mode change 100644 => 100755 Zip/src/ZipArchiveInfo.cpp mode change 100644 => 100755 Zip/src/ZipCommon.cpp mode change 100644 => 100755 Zip/src/ZipDataInfo.cpp mode change 100644 => 100755 Zip/src/ZipException.cpp mode change 100644 => 100755 Zip/src/ZipFileInfo.cpp mode change 100644 => 100755 Zip/src/ZipLocalFileHeader.cpp mode change 100644 => 100755 Zip/src/ZipManipulator.cpp mode change 100644 => 100755 Zip/src/ZipOperation.cpp mode change 100644 => 100755 Zip/src/ZipStream.cpp mode change 100644 => 100755 Zip/src/ZipUtil.cpp mode change 100644 => 100755 Zip/testsuite/src/CompressTest.cpp mode change 100644 => 100755 Zip/testsuite/src/CompressTest.h mode change 100644 => 100755 Zip/testsuite/src/Driver.cpp mode change 100644 => 100755 Zip/testsuite/src/PartialStreamTest.cpp mode change 100644 => 100755 Zip/testsuite/src/PartialStreamTest.h mode change 100644 => 100755 Zip/testsuite/src/WinCEDriver.cpp mode change 100644 => 100755 Zip/testsuite/src/WinDriver.cpp mode change 100644 => 100755 Zip/testsuite/src/ZipTest.cpp mode change 100644 => 100755 Zip/testsuite/src/ZipTest.h mode change 100644 => 100755 Zip/testsuite/src/ZipTestSuite.cpp mode change 100644 => 100755 Zip/testsuite/src/ZipTestSuite.h diff --git a/ApacheConnector/include/ApacheApplication.h b/ApacheConnector/include/ApacheApplication.h old mode 100644 new mode 100755 index 0aabd1eae..3450bc1a5 --- a/ApacheConnector/include/ApacheApplication.h +++ b/ApacheConnector/include/ApacheApplication.h @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ApacheConnector/include/ApacheChannel.h b/ApacheConnector/include/ApacheChannel.h old mode 100644 new mode 100755 index 8cf3f266a..cc66d3d00 --- a/ApacheConnector/include/ApacheChannel.h +++ b/ApacheConnector/include/ApacheChannel.h @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ApacheConnector/include/ApacheConnector.h b/ApacheConnector/include/ApacheConnector.h old mode 100644 new mode 100755 index 4fa9d5f03..48ea96cef --- a/ApacheConnector/include/ApacheConnector.h +++ b/ApacheConnector/include/ApacheConnector.h @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ApacheConnector/include/ApacheRequestHandlerFactory.h b/ApacheConnector/include/ApacheRequestHandlerFactory.h old mode 100644 new mode 100755 index d746c0e22..f5fdc6e03 --- a/ApacheConnector/include/ApacheRequestHandlerFactory.h +++ b/ApacheConnector/include/ApacheRequestHandlerFactory.h @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ApacheConnector/include/ApacheServerRequest.h b/ApacheConnector/include/ApacheServerRequest.h old mode 100644 new mode 100755 index ef05f6dd7..e28b953a5 --- a/ApacheConnector/include/ApacheServerRequest.h +++ b/ApacheConnector/include/ApacheServerRequest.h @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ApacheConnector/include/ApacheServerResponse.h b/ApacheConnector/include/ApacheServerResponse.h old mode 100644 new mode 100755 index c24bab31a..7518f62ee --- a/ApacheConnector/include/ApacheServerResponse.h +++ b/ApacheConnector/include/ApacheServerResponse.h @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ApacheConnector/include/ApacheStream.h b/ApacheConnector/include/ApacheStream.h old mode 100644 new mode 100755 index 8b26c9c8b..634794cc7 --- a/ApacheConnector/include/ApacheStream.h +++ b/ApacheConnector/include/ApacheStream.h @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ApacheConnector/samples/FormServer/src/FormServer.cpp b/ApacheConnector/samples/FormServer/src/FormServer.cpp old mode 100644 new mode 100755 index 04992d352..e08ff07b3 --- a/ApacheConnector/samples/FormServer/src/FormServer.cpp +++ b/ApacheConnector/samples/FormServer/src/FormServer.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ApacheConnector/samples/TimeServer/src/TimeServer.cpp b/ApacheConnector/samples/TimeServer/src/TimeServer.cpp old mode 100644 new mode 100755 index 9c41565f4..6e40e900d --- a/ApacheConnector/samples/TimeServer/src/TimeServer.cpp +++ b/ApacheConnector/samples/TimeServer/src/TimeServer.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ApacheConnector/src/ApacheApplication.cpp b/ApacheConnector/src/ApacheApplication.cpp old mode 100644 new mode 100755 index e5b3830e8..d187b3b94 --- a/ApacheConnector/src/ApacheApplication.cpp +++ b/ApacheConnector/src/ApacheApplication.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ApacheConnector/src/ApacheChannel.cpp b/ApacheConnector/src/ApacheChannel.cpp old mode 100644 new mode 100755 index 4c8d603de..881ece3f5 --- a/ApacheConnector/src/ApacheChannel.cpp +++ b/ApacheConnector/src/ApacheChannel.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ApacheConnector/src/ApacheConnector.cpp b/ApacheConnector/src/ApacheConnector.cpp old mode 100644 new mode 100755 index 62eb29ba8..725cffd23 --- a/ApacheConnector/src/ApacheConnector.cpp +++ b/ApacheConnector/src/ApacheConnector.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ApacheConnector/src/ApacheRequestHandlerFactory.cpp b/ApacheConnector/src/ApacheRequestHandlerFactory.cpp old mode 100644 new mode 100755 index 18e1832ca..f8ddb04ec --- a/ApacheConnector/src/ApacheRequestHandlerFactory.cpp +++ b/ApacheConnector/src/ApacheRequestHandlerFactory.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ApacheConnector/src/ApacheServerRequest.cpp b/ApacheConnector/src/ApacheServerRequest.cpp old mode 100644 new mode 100755 index a836f74ad..14d16931b --- a/ApacheConnector/src/ApacheServerRequest.cpp +++ b/ApacheConnector/src/ApacheServerRequest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ApacheConnector/src/ApacheServerResponse.cpp b/ApacheConnector/src/ApacheServerResponse.cpp old mode 100644 new mode 100755 index 3906bac8b..17ce2db6b --- a/ApacheConnector/src/ApacheServerResponse.cpp +++ b/ApacheConnector/src/ApacheServerResponse.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ApacheConnector/src/ApacheStream.cpp b/ApacheConnector/src/ApacheStream.cpp old mode 100644 new mode 100755 index 3ec484045..4e00e078f --- a/ApacheConnector/src/ApacheStream.cpp +++ b/ApacheConnector/src/ApacheStream.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/Attributes.h b/CppParser/include/Poco/CppParser/Attributes.h old mode 100644 new mode 100755 index 027d8c3d8..83d77f235 --- a/CppParser/include/Poco/CppParser/Attributes.h +++ b/CppParser/include/Poco/CppParser/Attributes.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/AttributesParser.h b/CppParser/include/Poco/CppParser/AttributesParser.h old mode 100644 new mode 100755 index 84973514b..3ae5f9d52 --- a/CppParser/include/Poco/CppParser/AttributesParser.h +++ b/CppParser/include/Poco/CppParser/AttributesParser.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/BuiltIn.h b/CppParser/include/Poco/CppParser/BuiltIn.h old mode 100644 new mode 100755 index 5b17dcbe6..c360f6a84 --- a/CppParser/include/Poco/CppParser/BuiltIn.h +++ b/CppParser/include/Poco/CppParser/BuiltIn.h @@ -12,27 +12,7 @@ // Copyright (c) 2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/CppParser.h b/CppParser/include/Poco/CppParser/CppParser.h old mode 100644 new mode 100755 index 7bce0e187..4e60b8daa --- a/CppParser/include/Poco/CppParser/CppParser.h +++ b/CppParser/include/Poco/CppParser/CppParser.h @@ -14,27 +14,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/CppToken.h b/CppParser/include/Poco/CppParser/CppToken.h old mode 100644 new mode 100755 index ed57c5f2e..659cd6303 --- a/CppParser/include/Poco/CppParser/CppToken.h +++ b/CppParser/include/Poco/CppParser/CppToken.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/Decl.h b/CppParser/include/Poco/CppParser/Decl.h old mode 100644 new mode 100755 index 428977da6..f24ed93dc --- a/CppParser/include/Poco/CppParser/Decl.h +++ b/CppParser/include/Poco/CppParser/Decl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/Enum.h b/CppParser/include/Poco/CppParser/Enum.h old mode 100644 new mode 100755 index 26a4c8e9b..a78a42b6a --- a/CppParser/include/Poco/CppParser/Enum.h +++ b/CppParser/include/Poco/CppParser/Enum.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/EnumValue.h b/CppParser/include/Poco/CppParser/EnumValue.h old mode 100644 new mode 100755 index 647e67e28..d5c4af798 --- a/CppParser/include/Poco/CppParser/EnumValue.h +++ b/CppParser/include/Poco/CppParser/EnumValue.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/Function.h b/CppParser/include/Poco/CppParser/Function.h old mode 100644 new mode 100755 index b390086d2..08e6cd55d --- a/CppParser/include/Poco/CppParser/Function.h +++ b/CppParser/include/Poco/CppParser/Function.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/NameSpace.h b/CppParser/include/Poco/CppParser/NameSpace.h old mode 100644 new mode 100755 index ff29da571..f632ee754 --- a/CppParser/include/Poco/CppParser/NameSpace.h +++ b/CppParser/include/Poco/CppParser/NameSpace.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/Parameter.h b/CppParser/include/Poco/CppParser/Parameter.h old mode 100644 new mode 100755 index 41d4aa40f..04713ffe1 --- a/CppParser/include/Poco/CppParser/Parameter.h +++ b/CppParser/include/Poco/CppParser/Parameter.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/Parser.h b/CppParser/include/Poco/CppParser/Parser.h old mode 100644 new mode 100755 index 8ce381260..8ba4b406f --- a/CppParser/include/Poco/CppParser/Parser.h +++ b/CppParser/include/Poco/CppParser/Parser.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/Struct.h b/CppParser/include/Poco/CppParser/Struct.h old mode 100644 new mode 100755 index bda5c6498..28c86765e --- a/CppParser/include/Poco/CppParser/Struct.h +++ b/CppParser/include/Poco/CppParser/Struct.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/Symbol.h b/CppParser/include/Poco/CppParser/Symbol.h old mode 100644 new mode 100755 index daf89ce7f..1e0c17be2 --- a/CppParser/include/Poco/CppParser/Symbol.h +++ b/CppParser/include/Poco/CppParser/Symbol.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/Tokenizer.h b/CppParser/include/Poco/CppParser/Tokenizer.h old mode 100644 new mode 100755 index ca20fd9eb..4fa23f613 --- a/CppParser/include/Poco/CppParser/Tokenizer.h +++ b/CppParser/include/Poco/CppParser/Tokenizer.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/TypeDef.h b/CppParser/include/Poco/CppParser/TypeDef.h old mode 100644 new mode 100755 index 443273fcd..564ad3ae5 --- a/CppParser/include/Poco/CppParser/TypeDef.h +++ b/CppParser/include/Poco/CppParser/TypeDef.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/Utility.h b/CppParser/include/Poco/CppParser/Utility.h old mode 100644 new mode 100755 index 57274ca3d..7c2ba7479 --- a/CppParser/include/Poco/CppParser/Utility.h +++ b/CppParser/include/Poco/CppParser/Utility.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/include/Poco/CppParser/Variable.h b/CppParser/include/Poco/CppParser/Variable.h old mode 100644 new mode 100755 index 39e8936c4..448207698 --- a/CppParser/include/Poco/CppParser/Variable.h +++ b/CppParser/include/Poco/CppParser/Variable.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/Attributes.cpp b/CppParser/src/Attributes.cpp old mode 100644 new mode 100755 index 37d26fac4..f8ca91c0a --- a/CppParser/src/Attributes.cpp +++ b/CppParser/src/Attributes.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/AttributesParser.cpp b/CppParser/src/AttributesParser.cpp old mode 100644 new mode 100755 index dc3504e31..0f14dc2ea --- a/CppParser/src/AttributesParser.cpp +++ b/CppParser/src/AttributesParser.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/BuiltIn.cpp b/CppParser/src/BuiltIn.cpp old mode 100644 new mode 100755 index 15b695c8e..753d1bcd1 --- a/CppParser/src/BuiltIn.cpp +++ b/CppParser/src/BuiltIn.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/CppToken.cpp b/CppParser/src/CppToken.cpp old mode 100644 new mode 100755 index ee82e7ffe..a31027a61 --- a/CppParser/src/CppToken.cpp +++ b/CppParser/src/CppToken.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/Decl.cpp b/CppParser/src/Decl.cpp old mode 100644 new mode 100755 index bfd10f79b..aab14be52 --- a/CppParser/src/Decl.cpp +++ b/CppParser/src/Decl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/Enum.cpp b/CppParser/src/Enum.cpp old mode 100644 new mode 100755 index 0085021d3..ff5af9e51 --- a/CppParser/src/Enum.cpp +++ b/CppParser/src/Enum.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/EnumValue.cpp b/CppParser/src/EnumValue.cpp old mode 100644 new mode 100755 index e08bf6464..a193806ec --- a/CppParser/src/EnumValue.cpp +++ b/CppParser/src/EnumValue.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/Function.cpp b/CppParser/src/Function.cpp old mode 100644 new mode 100755 index 406863989..583010037 --- a/CppParser/src/Function.cpp +++ b/CppParser/src/Function.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/NameSpace.cpp b/CppParser/src/NameSpace.cpp old mode 100644 new mode 100755 index da31c3388..30bb2ad95 --- a/CppParser/src/NameSpace.cpp +++ b/CppParser/src/NameSpace.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/Parameter.cpp b/CppParser/src/Parameter.cpp old mode 100644 new mode 100755 index 71b5e50a0..40a8a765c --- a/CppParser/src/Parameter.cpp +++ b/CppParser/src/Parameter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/Parser.cpp b/CppParser/src/Parser.cpp old mode 100644 new mode 100755 index 019a9ce16..bb782bbc8 --- a/CppParser/src/Parser.cpp +++ b/CppParser/src/Parser.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/Struct.cpp b/CppParser/src/Struct.cpp old mode 100644 new mode 100755 index 638b21183..df1397d69 --- a/CppParser/src/Struct.cpp +++ b/CppParser/src/Struct.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/Symbol.cpp b/CppParser/src/Symbol.cpp old mode 100644 new mode 100755 index cbcc74f9d..3553986ea --- a/CppParser/src/Symbol.cpp +++ b/CppParser/src/Symbol.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/Tokenizer.cpp b/CppParser/src/Tokenizer.cpp old mode 100644 new mode 100755 index bd9c86baa..5b549eea3 --- a/CppParser/src/Tokenizer.cpp +++ b/CppParser/src/Tokenizer.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/TypeDef.cpp b/CppParser/src/TypeDef.cpp old mode 100644 new mode 100755 index 7de61b1a9..e799dd054 --- a/CppParser/src/TypeDef.cpp +++ b/CppParser/src/TypeDef.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/Utility.cpp b/CppParser/src/Utility.cpp old mode 100644 new mode 100755 index 8158bfbf7..c46cdf544 --- a/CppParser/src/Utility.cpp +++ b/CppParser/src/Utility.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/src/Variable.cpp b/CppParser/src/Variable.cpp old mode 100644 new mode 100755 index 40b2f67ac..099217d17 --- a/CppParser/src/Variable.cpp +++ b/CppParser/src/Variable.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/testsuite/src/AttributesParserTest.cpp b/CppParser/testsuite/src/AttributesParserTest.cpp old mode 100644 new mode 100755 index a15c2e28f..bcc8fcc6d --- a/CppParser/testsuite/src/AttributesParserTest.cpp +++ b/CppParser/testsuite/src/AttributesParserTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/testsuite/src/AttributesParserTest.h b/CppParser/testsuite/src/AttributesParserTest.h old mode 100644 new mode 100755 index 4fe23f629..78ff718b8 --- a/CppParser/testsuite/src/AttributesParserTest.h +++ b/CppParser/testsuite/src/AttributesParserTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/testsuite/src/AttributesTestSuite.cpp b/CppParser/testsuite/src/AttributesTestSuite.cpp old mode 100644 new mode 100755 index 4b34e3d1e..2e6f49568 --- a/CppParser/testsuite/src/AttributesTestSuite.cpp +++ b/CppParser/testsuite/src/AttributesTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/testsuite/src/AttributesTestSuite.h b/CppParser/testsuite/src/AttributesTestSuite.h old mode 100644 new mode 100755 index ae2c4fe3f..6d62a98e6 --- a/CppParser/testsuite/src/AttributesTestSuite.h +++ b/CppParser/testsuite/src/AttributesTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/testsuite/src/CppParserTest.cpp b/CppParser/testsuite/src/CppParserTest.cpp old mode 100644 new mode 100755 index b1cc39b05..004ce4f82 --- a/CppParser/testsuite/src/CppParserTest.cpp +++ b/CppParser/testsuite/src/CppParserTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/testsuite/src/CppParserTest.h b/CppParser/testsuite/src/CppParserTest.h old mode 100644 new mode 100755 index 4ff575740..006ac6d37 --- a/CppParser/testsuite/src/CppParserTest.h +++ b/CppParser/testsuite/src/CppParserTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/testsuite/src/CppParserTestSuite.cpp b/CppParser/testsuite/src/CppParserTestSuite.cpp old mode 100644 new mode 100755 index 9292ff353..e71d2b0d4 --- a/CppParser/testsuite/src/CppParserTestSuite.cpp +++ b/CppParser/testsuite/src/CppParserTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/testsuite/src/CppParserTestSuite.h b/CppParser/testsuite/src/CppParserTestSuite.h old mode 100644 new mode 100755 index b1d2aac6f..3ba97606d --- a/CppParser/testsuite/src/CppParserTestSuite.h +++ b/CppParser/testsuite/src/CppParserTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/testsuite/src/Driver.cpp b/CppParser/testsuite/src/Driver.cpp old mode 100644 new mode 100755 index ffe92f90f..b03341e07 --- a/CppParser/testsuite/src/Driver.cpp +++ b/CppParser/testsuite/src/Driver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/CppParser/testsuite/src/WinDriver.cpp b/CppParser/testsuite/src/WinDriver.cpp old mode 100644 new mode 100755 index bb93971f2..2c82cd75c --- a/CppParser/testsuite/src/WinDriver.cpp +++ b/CppParser/testsuite/src/WinDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/include/Poco/Crypto/Cipher.h b/Crypto/include/Poco/Crypto/Cipher.h old mode 100644 new mode 100755 index ba552f437..30d17f3cd --- a/Crypto/include/Poco/Crypto/Cipher.h +++ b/Crypto/include/Poco/Crypto/Cipher.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/include/Poco/Crypto/CipherFactory.h b/Crypto/include/Poco/Crypto/CipherFactory.h old mode 100644 new mode 100755 index b1c06d4df..7cfd73e6f --- a/Crypto/include/Poco/Crypto/CipherFactory.h +++ b/Crypto/include/Poco/Crypto/CipherFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/include/Poco/Crypto/CipherImpl.h b/Crypto/include/Poco/Crypto/CipherImpl.h old mode 100644 new mode 100755 index 66f48360e..1a1f10b6e --- a/Crypto/include/Poco/Crypto/CipherImpl.h +++ b/Crypto/include/Poco/Crypto/CipherImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/include/Poco/Crypto/CipherKey.h b/Crypto/include/Poco/Crypto/CipherKey.h old mode 100644 new mode 100755 index 28b502ff0..792de73b2 --- a/Crypto/include/Poco/Crypto/CipherKey.h +++ b/Crypto/include/Poco/Crypto/CipherKey.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/include/Poco/Crypto/CipherKeyImpl.h b/Crypto/include/Poco/Crypto/CipherKeyImpl.h old mode 100644 new mode 100755 index ae03d5b3f..3b9e7bfce --- a/Crypto/include/Poco/Crypto/CipherKeyImpl.h +++ b/Crypto/include/Poco/Crypto/CipherKeyImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/include/Poco/Crypto/Crypto.h b/Crypto/include/Poco/Crypto/Crypto.h old mode 100644 new mode 100755 index b9161beed..fcfb20ec2 --- a/Crypto/include/Poco/Crypto/Crypto.h +++ b/Crypto/include/Poco/Crypto/Crypto.h @@ -14,27 +14,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/include/Poco/Crypto/CryptoStream.h b/Crypto/include/Poco/Crypto/CryptoStream.h old mode 100644 new mode 100755 index 895dc50a9..469b05cf6 --- a/Crypto/include/Poco/Crypto/CryptoStream.h +++ b/Crypto/include/Poco/Crypto/CryptoStream.h @@ -13,27 +13,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/include/Poco/Crypto/CryptoTransform.h b/Crypto/include/Poco/Crypto/CryptoTransform.h old mode 100644 new mode 100755 index 8c0f9cbad..1bae01ff5 --- a/Crypto/include/Poco/Crypto/CryptoTransform.h +++ b/Crypto/include/Poco/Crypto/CryptoTransform.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/include/Poco/Crypto/DigestEngine.h b/Crypto/include/Poco/Crypto/DigestEngine.h old mode 100644 new mode 100755 index 7f3e2e177..b6e1b2d37 --- a/Crypto/include/Poco/Crypto/DigestEngine.h +++ b/Crypto/include/Poco/Crypto/DigestEngine.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/include/Poco/Crypto/OpenSSLInitializer.h b/Crypto/include/Poco/Crypto/OpenSSLInitializer.h old mode 100644 new mode 100755 index 0ca331699..f4f128dcb --- a/Crypto/include/Poco/Crypto/OpenSSLInitializer.h +++ b/Crypto/include/Poco/Crypto/OpenSSLInitializer.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/include/Poco/Crypto/RSACipherImpl.h b/Crypto/include/Poco/Crypto/RSACipherImpl.h old mode 100644 new mode 100755 index ea96ddd1b..6d433ed1f --- a/Crypto/include/Poco/Crypto/RSACipherImpl.h +++ b/Crypto/include/Poco/Crypto/RSACipherImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/include/Poco/Crypto/RSADigestEngine.h b/Crypto/include/Poco/Crypto/RSADigestEngine.h old mode 100644 new mode 100755 index 4a7ff7a02..e4e847915 --- a/Crypto/include/Poco/Crypto/RSADigestEngine.h +++ b/Crypto/include/Poco/Crypto/RSADigestEngine.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/include/Poco/Crypto/RSAKey.h b/Crypto/include/Poco/Crypto/RSAKey.h old mode 100644 new mode 100755 index f765739c8..6aa26f171 --- a/Crypto/include/Poco/Crypto/RSAKey.h +++ b/Crypto/include/Poco/Crypto/RSAKey.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/include/Poco/Crypto/RSAKeyImpl.h b/Crypto/include/Poco/Crypto/RSAKeyImpl.h old mode 100644 new mode 100755 index 54ef84bce..10c074b0d --- a/Crypto/include/Poco/Crypto/RSAKeyImpl.h +++ b/Crypto/include/Poco/Crypto/RSAKeyImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/include/Poco/Crypto/X509Certificate.h b/Crypto/include/Poco/Crypto/X509Certificate.h old mode 100644 new mode 100755 index 56325d05a..472c53763 --- a/Crypto/include/Poco/Crypto/X509Certificate.h +++ b/Crypto/include/Poco/Crypto/X509Certificate.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/samples/genrsakey/src/genrsakey.cpp b/Crypto/samples/genrsakey/src/genrsakey.cpp old mode 100644 new mode 100755 index 35af7456c..40ffc0a16 --- a/Crypto/samples/genrsakey/src/genrsakey.cpp +++ b/Crypto/samples/genrsakey/src/genrsakey.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/src/Cipher.cpp b/Crypto/src/Cipher.cpp old mode 100644 new mode 100755 index 66ed7ee60..55ebff756 --- a/Crypto/src/Cipher.cpp +++ b/Crypto/src/Cipher.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/src/CipherFactory.cpp b/Crypto/src/CipherFactory.cpp old mode 100644 new mode 100755 index 4c460babd..e8f5f6fb0 --- a/Crypto/src/CipherFactory.cpp +++ b/Crypto/src/CipherFactory.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/src/CipherImpl.cpp b/Crypto/src/CipherImpl.cpp old mode 100644 new mode 100755 index 0ead03e10..b115ede8f --- a/Crypto/src/CipherImpl.cpp +++ b/Crypto/src/CipherImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/src/CipherKey.cpp b/Crypto/src/CipherKey.cpp old mode 100644 new mode 100755 index 4b570c055..eb535e9d8 --- a/Crypto/src/CipherKey.cpp +++ b/Crypto/src/CipherKey.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/src/CipherKeyImpl.cpp b/Crypto/src/CipherKeyImpl.cpp old mode 100644 new mode 100755 index fabbead67..bcd7452c6 --- a/Crypto/src/CipherKeyImpl.cpp +++ b/Crypto/src/CipherKeyImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/src/CryptoStream.cpp b/Crypto/src/CryptoStream.cpp old mode 100644 new mode 100755 index e01786709..97e73ce81 --- a/Crypto/src/CryptoStream.cpp +++ b/Crypto/src/CryptoStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/src/CryptoTransform.cpp b/Crypto/src/CryptoTransform.cpp old mode 100644 new mode 100755 index 52b724231..20157ab7d --- a/Crypto/src/CryptoTransform.cpp +++ b/Crypto/src/CryptoTransform.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/src/DigestEngine.cpp b/Crypto/src/DigestEngine.cpp old mode 100644 new mode 100755 index 05d9daacc..6e574ab42 --- a/Crypto/src/DigestEngine.cpp +++ b/Crypto/src/DigestEngine.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/src/OpenSSLInitializer.cpp b/Crypto/src/OpenSSLInitializer.cpp old mode 100644 new mode 100755 index ccd8c5998..0172eec5d --- a/Crypto/src/OpenSSLInitializer.cpp +++ b/Crypto/src/OpenSSLInitializer.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/src/RSACipherImpl.cpp b/Crypto/src/RSACipherImpl.cpp old mode 100644 new mode 100755 index 2c9d2caee..91c5b815d --- a/Crypto/src/RSACipherImpl.cpp +++ b/Crypto/src/RSACipherImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/src/RSADigestEngine.cpp b/Crypto/src/RSADigestEngine.cpp old mode 100644 new mode 100755 index 774ebfb94..f0ae5c980 --- a/Crypto/src/RSADigestEngine.cpp +++ b/Crypto/src/RSADigestEngine.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/src/RSAKey.cpp b/Crypto/src/RSAKey.cpp old mode 100644 new mode 100755 index 69c83338f..3dfcd138e --- a/Crypto/src/RSAKey.cpp +++ b/Crypto/src/RSAKey.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/src/RSAKeyImpl.cpp b/Crypto/src/RSAKeyImpl.cpp old mode 100644 new mode 100755 index 581606604..2fbd555f2 --- a/Crypto/src/RSAKeyImpl.cpp +++ b/Crypto/src/RSAKeyImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/src/X509Certificate.cpp b/Crypto/src/X509Certificate.cpp old mode 100644 new mode 100755 index ff24ea4c2..91c274ddd --- a/Crypto/src/X509Certificate.cpp +++ b/Crypto/src/X509Certificate.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/testsuite/src/CryptoTest.cpp b/Crypto/testsuite/src/CryptoTest.cpp old mode 100644 new mode 100755 index 5457cba78..5eccdf5cf --- a/Crypto/testsuite/src/CryptoTest.cpp +++ b/Crypto/testsuite/src/CryptoTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/testsuite/src/CryptoTest.h b/Crypto/testsuite/src/CryptoTest.h old mode 100644 new mode 100755 index ea5c6d101..2c90762c0 --- a/Crypto/testsuite/src/CryptoTest.h +++ b/Crypto/testsuite/src/CryptoTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/testsuite/src/CryptoTestSuite.cpp b/Crypto/testsuite/src/CryptoTestSuite.cpp old mode 100644 new mode 100755 index fd7674d07..2cd239623 --- a/Crypto/testsuite/src/CryptoTestSuite.cpp +++ b/Crypto/testsuite/src/CryptoTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/testsuite/src/CryptoTestSuite.h b/Crypto/testsuite/src/CryptoTestSuite.h old mode 100644 new mode 100755 index c054b1ff2..0469b7cae --- a/Crypto/testsuite/src/CryptoTestSuite.h +++ b/Crypto/testsuite/src/CryptoTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/testsuite/src/DigestEngineTest.cpp b/Crypto/testsuite/src/DigestEngineTest.cpp old mode 100644 new mode 100755 index ed3be1688..e1763e6bf --- a/Crypto/testsuite/src/DigestEngineTest.cpp +++ b/Crypto/testsuite/src/DigestEngineTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/testsuite/src/DigestEngineTest.h b/Crypto/testsuite/src/DigestEngineTest.h old mode 100644 new mode 100755 index 9872f6a59..89fc24d30 --- a/Crypto/testsuite/src/DigestEngineTest.h +++ b/Crypto/testsuite/src/DigestEngineTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/testsuite/src/Driver.cpp b/Crypto/testsuite/src/Driver.cpp old mode 100644 new mode 100755 index 5cc1360cb..96ff4f221 --- a/Crypto/testsuite/src/Driver.cpp +++ b/Crypto/testsuite/src/Driver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/testsuite/src/RSATest.cpp b/Crypto/testsuite/src/RSATest.cpp old mode 100644 new mode 100755 index f79fbc6a5..63157a771 --- a/Crypto/testsuite/src/RSATest.cpp +++ b/Crypto/testsuite/src/RSATest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/testsuite/src/RSATest.h b/Crypto/testsuite/src/RSATest.h old mode 100644 new mode 100755 index 36cfe002b..0014ecde6 --- a/Crypto/testsuite/src/RSATest.h +++ b/Crypto/testsuite/src/RSATest.h @@ -8,27 +8,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/testsuite/src/WinCEDriver.cpp b/Crypto/testsuite/src/WinCEDriver.cpp old mode 100644 new mode 100755 index dc7dcc425..704c23157 --- a/Crypto/testsuite/src/WinCEDriver.cpp +++ b/Crypto/testsuite/src/WinCEDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Crypto/testsuite/src/WinDriver.cpp b/Crypto/testsuite/src/WinDriver.cpp old mode 100644 new mode 100755 index ec55c3e83..7bbef8179 --- a/Crypto/testsuite/src/WinDriver.cpp +++ b/Crypto/testsuite/src/WinDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/include/Poco/Data/MySQL/Binder.h b/Data/MySQL/include/Poco/Data/MySQL/Binder.h old mode 100644 new mode 100755 index df2690ac6..6f6374acd --- a/Data/MySQL/include/Poco/Data/MySQL/Binder.h +++ b/Data/MySQL/include/Poco/Data/MySQL/Binder.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/include/Poco/Data/MySQL/Connector.h b/Data/MySQL/include/Poco/Data/MySQL/Connector.h old mode 100644 new mode 100755 index 1bb4f641f..6ac80106a --- a/Data/MySQL/include/Poco/Data/MySQL/Connector.h +++ b/Data/MySQL/include/Poco/Data/MySQL/Connector.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/include/Poco/Data/MySQL/Extractor.h b/Data/MySQL/include/Poco/Data/MySQL/Extractor.h old mode 100644 new mode 100755 index 992a6028f..24fa60e80 --- a/Data/MySQL/include/Poco/Data/MySQL/Extractor.h +++ b/Data/MySQL/include/Poco/Data/MySQL/Extractor.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/include/Poco/Data/MySQL/MySQL.h b/Data/MySQL/include/Poco/Data/MySQL/MySQL.h old mode 100644 new mode 100755 index 0f4b4070f..34902d699 --- a/Data/MySQL/include/Poco/Data/MySQL/MySQL.h +++ b/Data/MySQL/include/Poco/Data/MySQL/MySQL.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/include/Poco/Data/MySQL/MySQLException.h b/Data/MySQL/include/Poco/Data/MySQL/MySQLException.h old mode 100644 new mode 100755 index 294a34c5c..6585ceaad --- a/Data/MySQL/include/Poco/Data/MySQL/MySQLException.h +++ b/Data/MySQL/include/Poco/Data/MySQL/MySQLException.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/include/Poco/Data/MySQL/MySQLStatementImpl.h b/Data/MySQL/include/Poco/Data/MySQL/MySQLStatementImpl.h old mode 100644 new mode 100755 index 5e4e8747d..d178ae666 --- a/Data/MySQL/include/Poco/Data/MySQL/MySQLStatementImpl.h +++ b/Data/MySQL/include/Poco/Data/MySQL/MySQLStatementImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/include/Poco/Data/MySQL/ResultMetadata.h b/Data/MySQL/include/Poco/Data/MySQL/ResultMetadata.h old mode 100644 new mode 100755 index ebdc5ce87..8e645ad87 --- a/Data/MySQL/include/Poco/Data/MySQL/ResultMetadata.h +++ b/Data/MySQL/include/Poco/Data/MySQL/ResultMetadata.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/include/Poco/Data/MySQL/SessionHandle.h b/Data/MySQL/include/Poco/Data/MySQL/SessionHandle.h old mode 100644 new mode 100755 index fd0f1ad80..d07ebd726 --- a/Data/MySQL/include/Poco/Data/MySQL/SessionHandle.h +++ b/Data/MySQL/include/Poco/Data/MySQL/SessionHandle.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/include/Poco/Data/MySQL/SessionImpl.h b/Data/MySQL/include/Poco/Data/MySQL/SessionImpl.h old mode 100644 new mode 100755 index 47fb2ced7..e2010ddaa --- a/Data/MySQL/include/Poco/Data/MySQL/SessionImpl.h +++ b/Data/MySQL/include/Poco/Data/MySQL/SessionImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/include/Poco/Data/MySQL/StatementExecutor.h b/Data/MySQL/include/Poco/Data/MySQL/StatementExecutor.h old mode 100644 new mode 100755 index fdaf26cd7..4aa05c725 --- a/Data/MySQL/include/Poco/Data/MySQL/StatementExecutor.h +++ b/Data/MySQL/include/Poco/Data/MySQL/StatementExecutor.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/include/Poco/Data/MySQL/Utility.h b/Data/MySQL/include/Poco/Data/MySQL/Utility.h old mode 100644 new mode 100755 index fb82506bc..c4427c332 --- a/Data/MySQL/include/Poco/Data/MySQL/Utility.h +++ b/Data/MySQL/include/Poco/Data/MySQL/Utility.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/src/Binder.cpp b/Data/MySQL/src/Binder.cpp old mode 100644 new mode 100755 index 5cd44e719..6a97f0e1d --- a/Data/MySQL/src/Binder.cpp +++ b/Data/MySQL/src/Binder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/src/Connector.cpp b/Data/MySQL/src/Connector.cpp old mode 100644 new mode 100755 index 6e21ef2fd..84e16db2c --- a/Data/MySQL/src/Connector.cpp +++ b/Data/MySQL/src/Connector.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/src/Extractor.cpp b/Data/MySQL/src/Extractor.cpp old mode 100644 new mode 100755 index 26459396c..8bdad64a7 --- a/Data/MySQL/src/Extractor.cpp +++ b/Data/MySQL/src/Extractor.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/src/MySQLException.cpp b/Data/MySQL/src/MySQLException.cpp old mode 100644 new mode 100755 index fb82636d1..2ed0ae7cb --- a/Data/MySQL/src/MySQLException.cpp +++ b/Data/MySQL/src/MySQLException.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/src/MySQLStatementImpl.cpp b/Data/MySQL/src/MySQLStatementImpl.cpp old mode 100644 new mode 100755 index 9c692109c..c3325ce53 --- a/Data/MySQL/src/MySQLStatementImpl.cpp +++ b/Data/MySQL/src/MySQLStatementImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/src/ResultMetadata.cpp b/Data/MySQL/src/ResultMetadata.cpp old mode 100644 new mode 100755 index da11232b6..f94439b22 --- a/Data/MySQL/src/ResultMetadata.cpp +++ b/Data/MySQL/src/ResultMetadata.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/src/SessionHandle.cpp b/Data/MySQL/src/SessionHandle.cpp old mode 100644 new mode 100755 index 6304577ba..9815e4243 --- a/Data/MySQL/src/SessionHandle.cpp +++ b/Data/MySQL/src/SessionHandle.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/src/SessionImpl.cpp b/Data/MySQL/src/SessionImpl.cpp old mode 100644 new mode 100755 index ed0bc08d4..b234639e6 --- a/Data/MySQL/src/SessionImpl.cpp +++ b/Data/MySQL/src/SessionImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/src/StatementExecutor.cpp b/Data/MySQL/src/StatementExecutor.cpp old mode 100644 new mode 100755 index 681245705..a63ff3142 --- a/Data/MySQL/src/StatementExecutor.cpp +++ b/Data/MySQL/src/StatementExecutor.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/src/Utility.cpp b/Data/MySQL/src/Utility.cpp old mode 100644 new mode 100755 index 9c9059309..71106d371 --- a/Data/MySQL/src/Utility.cpp +++ b/Data/MySQL/src/Utility.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/testsuite/src/Driver.cpp b/Data/MySQL/testsuite/src/Driver.cpp old mode 100644 new mode 100755 index d73871d84..fc1b33660 --- a/Data/MySQL/testsuite/src/Driver.cpp +++ b/Data/MySQL/testsuite/src/Driver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/testsuite/src/MySQLTest.cpp b/Data/MySQL/testsuite/src/MySQLTest.cpp old mode 100644 new mode 100755 index be54e019f..237f20530 --- a/Data/MySQL/testsuite/src/MySQLTest.cpp +++ b/Data/MySQL/testsuite/src/MySQLTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/testsuite/src/MySQLTest.h b/Data/MySQL/testsuite/src/MySQLTest.h old mode 100644 new mode 100755 index f6619a909..655a7d028 --- a/Data/MySQL/testsuite/src/MySQLTest.h +++ b/Data/MySQL/testsuite/src/MySQLTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/testsuite/src/MySQLTestSuite.cpp b/Data/MySQL/testsuite/src/MySQLTestSuite.cpp old mode 100644 new mode 100755 index aa0da332e..2063a7951 --- a/Data/MySQL/testsuite/src/MySQLTestSuite.cpp +++ b/Data/MySQL/testsuite/src/MySQLTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/testsuite/src/MySQLTestSuite.h b/Data/MySQL/testsuite/src/MySQLTestSuite.h old mode 100644 new mode 100755 index c42449619..c6bc62f65 --- a/Data/MySQL/testsuite/src/MySQLTestSuite.h +++ b/Data/MySQL/testsuite/src/MySQLTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/testsuite/src/SQLExecutor.cpp b/Data/MySQL/testsuite/src/SQLExecutor.cpp old mode 100644 new mode 100755 index cc839e1f7..00cfb351f --- a/Data/MySQL/testsuite/src/SQLExecutor.cpp +++ b/Data/MySQL/testsuite/src/SQLExecutor.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/testsuite/src/SQLExecutor.h b/Data/MySQL/testsuite/src/SQLExecutor.h old mode 100644 new mode 100755 index 8840e249c..e39baf81c --- a/Data/MySQL/testsuite/src/SQLExecutor.h +++ b/Data/MySQL/testsuite/src/SQLExecutor.h @@ -8,27 +8,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/MySQL/testsuite/src/WinDriver.cpp b/Data/MySQL/testsuite/src/WinDriver.cpp old mode 100644 new mode 100755 index d24d77efa..3ee6bbfc8 --- a/Data/MySQL/testsuite/src/WinDriver.cpp +++ b/Data/MySQL/testsuite/src/WinDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/Binder.h b/Data/ODBC/include/Poco/Data/ODBC/Binder.h old mode 100644 new mode 100755 index 3d9e82100..c52e8c721 --- a/Data/ODBC/include/Poco/Data/ODBC/Binder.h +++ b/Data/ODBC/include/Poco/Data/ODBC/Binder.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/ConnectionHandle.h b/Data/ODBC/include/Poco/Data/ODBC/ConnectionHandle.h old mode 100644 new mode 100755 index dba245a08..693f61b21 --- a/Data/ODBC/include/Poco/Data/ODBC/ConnectionHandle.h +++ b/Data/ODBC/include/Poco/Data/ODBC/ConnectionHandle.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/Connector.h b/Data/ODBC/include/Poco/Data/ODBC/Connector.h old mode 100644 new mode 100755 index ab5f887ef..71b336af5 --- a/Data/ODBC/include/Poco/Data/ODBC/Connector.h +++ b/Data/ODBC/include/Poco/Data/ODBC/Connector.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/Diagnostics.h b/Data/ODBC/include/Poco/Data/ODBC/Diagnostics.h old mode 100644 new mode 100755 index 9f8b5bdcd..48d268af9 --- a/Data/ODBC/include/Poco/Data/ODBC/Diagnostics.h +++ b/Data/ODBC/include/Poco/Data/ODBC/Diagnostics.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/EnvironmentHandle.h b/Data/ODBC/include/Poco/Data/ODBC/EnvironmentHandle.h old mode 100644 new mode 100755 index 8d2d336aa..cbc4821e3 --- a/Data/ODBC/include/Poco/Data/ODBC/EnvironmentHandle.h +++ b/Data/ODBC/include/Poco/Data/ODBC/EnvironmentHandle.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/Error.h b/Data/ODBC/include/Poco/Data/ODBC/Error.h old mode 100644 new mode 100755 index 62c08b369..5e03a99d3 --- a/Data/ODBC/include/Poco/Data/ODBC/Error.h +++ b/Data/ODBC/include/Poco/Data/ODBC/Error.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/Extractor.h b/Data/ODBC/include/Poco/Data/ODBC/Extractor.h old mode 100644 new mode 100755 index 07c5795c5..a870016a6 --- a/Data/ODBC/include/Poco/Data/ODBC/Extractor.h +++ b/Data/ODBC/include/Poco/Data/ODBC/Extractor.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/Handle.h b/Data/ODBC/include/Poco/Data/ODBC/Handle.h old mode 100644 new mode 100755 index 0d5fc9e67..43b02cb49 --- a/Data/ODBC/include/Poco/Data/ODBC/Handle.h +++ b/Data/ODBC/include/Poco/Data/ODBC/Handle.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/ODBC.h b/Data/ODBC/include/Poco/Data/ODBC/ODBC.h old mode 100644 new mode 100755 index b9a6fe6a5..74edf1673 --- a/Data/ODBC/include/Poco/Data/ODBC/ODBC.h +++ b/Data/ODBC/include/Poco/Data/ODBC/ODBC.h @@ -14,27 +14,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/ODBCException.h b/Data/ODBC/include/Poco/Data/ODBC/ODBCException.h old mode 100644 new mode 100755 index 6031043ee..cb785152c --- a/Data/ODBC/include/Poco/Data/ODBC/ODBCException.h +++ b/Data/ODBC/include/Poco/Data/ODBC/ODBCException.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/ODBCMetaColumn.h b/Data/ODBC/include/Poco/Data/ODBC/ODBCMetaColumn.h old mode 100644 new mode 100755 index c34ed60fc..f706c06e2 --- a/Data/ODBC/include/Poco/Data/ODBC/ODBCMetaColumn.h +++ b/Data/ODBC/include/Poco/Data/ODBC/ODBCMetaColumn.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/ODBCStatementImpl.h b/Data/ODBC/include/Poco/Data/ODBC/ODBCStatementImpl.h old mode 100644 new mode 100755 index 98126ac14..1d01c8296 --- a/Data/ODBC/include/Poco/Data/ODBC/ODBCStatementImpl.h +++ b/Data/ODBC/include/Poco/Data/ODBC/ODBCStatementImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/Parameter.h b/Data/ODBC/include/Poco/Data/ODBC/Parameter.h old mode 100644 new mode 100755 index 5dbe681a6..b6b7eeb39 --- a/Data/ODBC/include/Poco/Data/ODBC/Parameter.h +++ b/Data/ODBC/include/Poco/Data/ODBC/Parameter.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/Preparator.h b/Data/ODBC/include/Poco/Data/ODBC/Preparator.h old mode 100644 new mode 100755 index b3d0ba76f..e96f795c3 --- a/Data/ODBC/include/Poco/Data/ODBC/Preparator.h +++ b/Data/ODBC/include/Poco/Data/ODBC/Preparator.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/SessionImpl.h b/Data/ODBC/include/Poco/Data/ODBC/SessionImpl.h old mode 100644 new mode 100755 index b272f51a7..8701b0959 --- a/Data/ODBC/include/Poco/Data/ODBC/SessionImpl.h +++ b/Data/ODBC/include/Poco/Data/ODBC/SessionImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/TypeInfo.h b/Data/ODBC/include/Poco/Data/ODBC/TypeInfo.h old mode 100644 new mode 100755 index 44525e696..0af4ece96 --- a/Data/ODBC/include/Poco/Data/ODBC/TypeInfo.h +++ b/Data/ODBC/include/Poco/Data/ODBC/TypeInfo.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/Unicode.h b/Data/ODBC/include/Poco/Data/ODBC/Unicode.h old mode 100644 new mode 100755 index 8f0e54b88..0bd4dec69 --- a/Data/ODBC/include/Poco/Data/ODBC/Unicode.h +++ b/Data/ODBC/include/Poco/Data/ODBC/Unicode.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/Unicode_UNIXODBC.h b/Data/ODBC/include/Poco/Data/ODBC/Unicode_UNIXODBC.h old mode 100644 new mode 100755 index 5e0746e96..466f6d0a5 --- a/Data/ODBC/include/Poco/Data/ODBC/Unicode_UNIXODBC.h +++ b/Data/ODBC/include/Poco/Data/ODBC/Unicode_UNIXODBC.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/Unicode_WIN32.h b/Data/ODBC/include/Poco/Data/ODBC/Unicode_WIN32.h old mode 100644 new mode 100755 index 78846ed32..355a087d8 --- a/Data/ODBC/include/Poco/Data/ODBC/Unicode_WIN32.h +++ b/Data/ODBC/include/Poco/Data/ODBC/Unicode_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/include/Poco/Data/ODBC/Utility.h b/Data/ODBC/include/Poco/Data/ODBC/Utility.h old mode 100644 new mode 100755 index 22cc70ca9..47b1b9250 --- a/Data/ODBC/include/Poco/Data/ODBC/Utility.h +++ b/Data/ODBC/include/Poco/Data/ODBC/Utility.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/Binder.cpp b/Data/ODBC/src/Binder.cpp old mode 100644 new mode 100755 index 890d11f7b..98295db96 --- a/Data/ODBC/src/Binder.cpp +++ b/Data/ODBC/src/Binder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/ConnectionHandle.cpp b/Data/ODBC/src/ConnectionHandle.cpp old mode 100644 new mode 100755 index dfe144a8a..5652a2413 --- a/Data/ODBC/src/ConnectionHandle.cpp +++ b/Data/ODBC/src/ConnectionHandle.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/Connector.cpp b/Data/ODBC/src/Connector.cpp old mode 100644 new mode 100755 index 28139fe58..094d8b15a --- a/Data/ODBC/src/Connector.cpp +++ b/Data/ODBC/src/Connector.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/EnvironmentHandle.cpp b/Data/ODBC/src/EnvironmentHandle.cpp old mode 100644 new mode 100755 index 295ef2b05..85f1ec10c --- a/Data/ODBC/src/EnvironmentHandle.cpp +++ b/Data/ODBC/src/EnvironmentHandle.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/Extractor.cpp b/Data/ODBC/src/Extractor.cpp old mode 100644 new mode 100755 index 44c789770..eb3c6f5d6 --- a/Data/ODBC/src/Extractor.cpp +++ b/Data/ODBC/src/Extractor.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/ODBCException.cpp b/Data/ODBC/src/ODBCException.cpp old mode 100644 new mode 100755 index 009cb3475..1d752bc3a --- a/Data/ODBC/src/ODBCException.cpp +++ b/Data/ODBC/src/ODBCException.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/ODBCMetaColumn.cpp b/Data/ODBC/src/ODBCMetaColumn.cpp old mode 100644 new mode 100755 index 91189b070..0b4daa5ba --- a/Data/ODBC/src/ODBCMetaColumn.cpp +++ b/Data/ODBC/src/ODBCMetaColumn.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/ODBCStatementImpl.cpp b/Data/ODBC/src/ODBCStatementImpl.cpp old mode 100644 new mode 100755 index 9bdcf2ade..0a3ab4953 --- a/Data/ODBC/src/ODBCStatementImpl.cpp +++ b/Data/ODBC/src/ODBCStatementImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/Parameter.cpp b/Data/ODBC/src/Parameter.cpp old mode 100644 new mode 100755 index cef84e82d..0edebb5b8 --- a/Data/ODBC/src/Parameter.cpp +++ b/Data/ODBC/src/Parameter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/Preparator.cpp b/Data/ODBC/src/Preparator.cpp old mode 100644 new mode 100755 index f236b6299..2d1b7fd60 --- a/Data/ODBC/src/Preparator.cpp +++ b/Data/ODBC/src/Preparator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/SessionImpl.cpp b/Data/ODBC/src/SessionImpl.cpp old mode 100644 new mode 100755 index 01dee5546..36f4ca689 --- a/Data/ODBC/src/SessionImpl.cpp +++ b/Data/ODBC/src/SessionImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/TypeInfo.cpp b/Data/ODBC/src/TypeInfo.cpp old mode 100644 new mode 100755 index 4d0588111..25809b4fa --- a/Data/ODBC/src/TypeInfo.cpp +++ b/Data/ODBC/src/TypeInfo.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/Unicode.cpp b/Data/ODBC/src/Unicode.cpp old mode 100644 new mode 100755 index b1202e8d1..9492dc855 --- a/Data/ODBC/src/Unicode.cpp +++ b/Data/ODBC/src/Unicode.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/Unicode_UNIXODBC.cpp b/Data/ODBC/src/Unicode_UNIXODBC.cpp old mode 100644 new mode 100755 index 5e453a529..4b7231d27 --- a/Data/ODBC/src/Unicode_UNIXODBC.cpp +++ b/Data/ODBC/src/Unicode_UNIXODBC.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/Unicode_WIN32.cpp b/Data/ODBC/src/Unicode_WIN32.cpp old mode 100644 new mode 100755 index ac075d21f..1f71aee02 --- a/Data/ODBC/src/Unicode_WIN32.cpp +++ b/Data/ODBC/src/Unicode_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/src/Utility.cpp b/Data/ODBC/src/Utility.cpp old mode 100644 new mode 100755 index fa18dee97..74b61a2cd --- a/Data/ODBC/src/Utility.cpp +++ b/Data/ODBC/src/Utility.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/Driver.cpp b/Data/ODBC/testsuite/src/Driver.cpp old mode 100644 new mode 100755 index 9a7786a60..599ad5460 --- a/Data/ODBC/testsuite/src/Driver.cpp +++ b/Data/ODBC/testsuite/src/Driver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCAccessTest.cpp b/Data/ODBC/testsuite/src/ODBCAccessTest.cpp old mode 100644 new mode 100755 index dcd4040d3..c93838e97 --- a/Data/ODBC/testsuite/src/ODBCAccessTest.cpp +++ b/Data/ODBC/testsuite/src/ODBCAccessTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCAccessTest.h b/Data/ODBC/testsuite/src/ODBCAccessTest.h old mode 100644 new mode 100755 index 09efc0100..d29587b02 --- a/Data/ODBC/testsuite/src/ODBCAccessTest.h +++ b/Data/ODBC/testsuite/src/ODBCAccessTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCDB2Test.cpp b/Data/ODBC/testsuite/src/ODBCDB2Test.cpp old mode 100644 new mode 100755 index 5b83a8cbb..296f58e31 --- a/Data/ODBC/testsuite/src/ODBCDB2Test.cpp +++ b/Data/ODBC/testsuite/src/ODBCDB2Test.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCDB2Test.h b/Data/ODBC/testsuite/src/ODBCDB2Test.h old mode 100644 new mode 100755 index d3775de05..dee55a7c8 --- a/Data/ODBC/testsuite/src/ODBCDB2Test.h +++ b/Data/ODBC/testsuite/src/ODBCDB2Test.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCMySQLTest.cpp b/Data/ODBC/testsuite/src/ODBCMySQLTest.cpp old mode 100644 new mode 100755 index aff66a8c1..023477041 --- a/Data/ODBC/testsuite/src/ODBCMySQLTest.cpp +++ b/Data/ODBC/testsuite/src/ODBCMySQLTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCMySQLTest.h b/Data/ODBC/testsuite/src/ODBCMySQLTest.h old mode 100644 new mode 100755 index 2381044ac..28da3e1f8 --- a/Data/ODBC/testsuite/src/ODBCMySQLTest.h +++ b/Data/ODBC/testsuite/src/ODBCMySQLTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCOracleTest.cpp b/Data/ODBC/testsuite/src/ODBCOracleTest.cpp old mode 100644 new mode 100755 index 35b057b06..823ac9cfb --- a/Data/ODBC/testsuite/src/ODBCOracleTest.cpp +++ b/Data/ODBC/testsuite/src/ODBCOracleTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCOracleTest.h b/Data/ODBC/testsuite/src/ODBCOracleTest.h old mode 100644 new mode 100755 index 3e72c9f05..3dd082488 --- a/Data/ODBC/testsuite/src/ODBCOracleTest.h +++ b/Data/ODBC/testsuite/src/ODBCOracleTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCPostgreSQLTest.cpp b/Data/ODBC/testsuite/src/ODBCPostgreSQLTest.cpp old mode 100644 new mode 100755 index 93c9b8b75..7a38e2172 --- a/Data/ODBC/testsuite/src/ODBCPostgreSQLTest.cpp +++ b/Data/ODBC/testsuite/src/ODBCPostgreSQLTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCPostgreSQLTest.h b/Data/ODBC/testsuite/src/ODBCPostgreSQLTest.h old mode 100644 new mode 100755 index 01d09f65c..fd8a19106 --- a/Data/ODBC/testsuite/src/ODBCPostgreSQLTest.h +++ b/Data/ODBC/testsuite/src/ODBCPostgreSQLTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCSQLServerTest.cpp b/Data/ODBC/testsuite/src/ODBCSQLServerTest.cpp old mode 100644 new mode 100755 index e0b69a057..7489d4960 --- a/Data/ODBC/testsuite/src/ODBCSQLServerTest.cpp +++ b/Data/ODBC/testsuite/src/ODBCSQLServerTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCSQLServerTest.h b/Data/ODBC/testsuite/src/ODBCSQLServerTest.h old mode 100644 new mode 100755 index 188624cf7..61dc2c54c --- a/Data/ODBC/testsuite/src/ODBCSQLServerTest.h +++ b/Data/ODBC/testsuite/src/ODBCSQLServerTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCSQLiteTest.cpp b/Data/ODBC/testsuite/src/ODBCSQLiteTest.cpp old mode 100644 new mode 100755 index d5e31cca0..73a3e29d9 --- a/Data/ODBC/testsuite/src/ODBCSQLiteTest.cpp +++ b/Data/ODBC/testsuite/src/ODBCSQLiteTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCSQLiteTest.h b/Data/ODBC/testsuite/src/ODBCSQLiteTest.h old mode 100644 new mode 100755 index 471bce92e..242c96c39 --- a/Data/ODBC/testsuite/src/ODBCSQLiteTest.h +++ b/Data/ODBC/testsuite/src/ODBCSQLiteTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCTest.cpp b/Data/ODBC/testsuite/src/ODBCTest.cpp old mode 100644 new mode 100755 index 1ff616f71..a5f567482 --- a/Data/ODBC/testsuite/src/ODBCTest.cpp +++ b/Data/ODBC/testsuite/src/ODBCTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCTest.h b/Data/ODBC/testsuite/src/ODBCTest.h old mode 100644 new mode 100755 index 254c310f7..bf27cc575 --- a/Data/ODBC/testsuite/src/ODBCTest.h +++ b/Data/ODBC/testsuite/src/ODBCTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCTestSuite.cpp b/Data/ODBC/testsuite/src/ODBCTestSuite.cpp old mode 100644 new mode 100755 index aeaa2693a..08d8e4138 --- a/Data/ODBC/testsuite/src/ODBCTestSuite.cpp +++ b/Data/ODBC/testsuite/src/ODBCTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/ODBCTestSuite.h b/Data/ODBC/testsuite/src/ODBCTestSuite.h old mode 100644 new mode 100755 index 5e055ddb2..4c967fca9 --- a/Data/ODBC/testsuite/src/ODBCTestSuite.h +++ b/Data/ODBC/testsuite/src/ODBCTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/SQLExecutor.cpp b/Data/ODBC/testsuite/src/SQLExecutor.cpp old mode 100644 new mode 100755 index bcb5c7484..d8a06c6b8 --- a/Data/ODBC/testsuite/src/SQLExecutor.cpp +++ b/Data/ODBC/testsuite/src/SQLExecutor.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/SQLExecutor.h b/Data/ODBC/testsuite/src/SQLExecutor.h old mode 100644 new mode 100755 index 1bdec261c..823a1d6e0 --- a/Data/ODBC/testsuite/src/SQLExecutor.h +++ b/Data/ODBC/testsuite/src/SQLExecutor.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/ODBC/testsuite/src/WinDriver.cpp b/Data/ODBC/testsuite/src/WinDriver.cpp old mode 100644 new mode 100755 index a5ab1b1cc..2733e6ddf --- a/Data/ODBC/testsuite/src/WinDriver.cpp +++ b/Data/ODBC/testsuite/src/WinDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/include/Poco/Data/SQLite/Binder.h b/Data/SQLite/include/Poco/Data/SQLite/Binder.h old mode 100644 new mode 100755 index 4b15bbc57..c19770f41 --- a/Data/SQLite/include/Poco/Data/SQLite/Binder.h +++ b/Data/SQLite/include/Poco/Data/SQLite/Binder.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/include/Poco/Data/SQLite/Connector.h b/Data/SQLite/include/Poco/Data/SQLite/Connector.h old mode 100644 new mode 100755 index 167ac6fe9..ce1fbc3bb --- a/Data/SQLite/include/Poco/Data/SQLite/Connector.h +++ b/Data/SQLite/include/Poco/Data/SQLite/Connector.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/include/Poco/Data/SQLite/Extractor.h b/Data/SQLite/include/Poco/Data/SQLite/Extractor.h old mode 100644 new mode 100755 index d95dd184e..2e7fa4cb3 --- a/Data/SQLite/include/Poco/Data/SQLite/Extractor.h +++ b/Data/SQLite/include/Poco/Data/SQLite/Extractor.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/include/Poco/Data/SQLite/Notifier.h b/Data/SQLite/include/Poco/Data/SQLite/Notifier.h old mode 100644 new mode 100755 index dfddb1127..77ec24775 --- a/Data/SQLite/include/Poco/Data/SQLite/Notifier.h +++ b/Data/SQLite/include/Poco/Data/SQLite/Notifier.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/include/Poco/Data/SQLite/SQLite.h b/Data/SQLite/include/Poco/Data/SQLite/SQLite.h old mode 100644 new mode 100755 index cc8ad624a..36590001b --- a/Data/SQLite/include/Poco/Data/SQLite/SQLite.h +++ b/Data/SQLite/include/Poco/Data/SQLite/SQLite.h @@ -14,27 +14,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/include/Poco/Data/SQLite/SQLiteException.h b/Data/SQLite/include/Poco/Data/SQLite/SQLiteException.h old mode 100644 new mode 100755 index 36bc13fbe..708093739 --- a/Data/SQLite/include/Poco/Data/SQLite/SQLiteException.h +++ b/Data/SQLite/include/Poco/Data/SQLite/SQLiteException.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/include/Poco/Data/SQLite/SQLiteStatementImpl.h b/Data/SQLite/include/Poco/Data/SQLite/SQLiteStatementImpl.h old mode 100644 new mode 100755 index 40864e0e7..eb2a6ccdc --- a/Data/SQLite/include/Poco/Data/SQLite/SQLiteStatementImpl.h +++ b/Data/SQLite/include/Poco/Data/SQLite/SQLiteStatementImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/include/Poco/Data/SQLite/SessionImpl.h b/Data/SQLite/include/Poco/Data/SQLite/SessionImpl.h old mode 100644 new mode 100755 index dd758f583..1be2dd1e7 --- a/Data/SQLite/include/Poco/Data/SQLite/SessionImpl.h +++ b/Data/SQLite/include/Poco/Data/SQLite/SessionImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/include/Poco/Data/SQLite/Utility.h b/Data/SQLite/include/Poco/Data/SQLite/Utility.h old mode 100644 new mode 100755 index 1ee7a7524..305bae873 --- a/Data/SQLite/include/Poco/Data/SQLite/Utility.h +++ b/Data/SQLite/include/Poco/Data/SQLite/Utility.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/src/Binder.cpp b/Data/SQLite/src/Binder.cpp old mode 100644 new mode 100755 index da10efda1..2375645a8 --- a/Data/SQLite/src/Binder.cpp +++ b/Data/SQLite/src/Binder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/src/Connector.cpp b/Data/SQLite/src/Connector.cpp old mode 100644 new mode 100755 index 70de69a80..62ca1fce7 --- a/Data/SQLite/src/Connector.cpp +++ b/Data/SQLite/src/Connector.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/src/Extractor.cpp b/Data/SQLite/src/Extractor.cpp old mode 100644 new mode 100755 index 2023a1d9d..1db985fba --- a/Data/SQLite/src/Extractor.cpp +++ b/Data/SQLite/src/Extractor.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/src/Notifier.cpp b/Data/SQLite/src/Notifier.cpp old mode 100644 new mode 100755 index 00a77a8f3..2aff29a77 --- a/Data/SQLite/src/Notifier.cpp +++ b/Data/SQLite/src/Notifier.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/src/SQLiteException.cpp b/Data/SQLite/src/SQLiteException.cpp old mode 100644 new mode 100755 index dee3bc2fc..8b3a9f66e --- a/Data/SQLite/src/SQLiteException.cpp +++ b/Data/SQLite/src/SQLiteException.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/src/SQLiteStatementImpl.cpp b/Data/SQLite/src/SQLiteStatementImpl.cpp old mode 100644 new mode 100755 index 99b451639..d67f2649f --- a/Data/SQLite/src/SQLiteStatementImpl.cpp +++ b/Data/SQLite/src/SQLiteStatementImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/src/SessionImpl.cpp b/Data/SQLite/src/SessionImpl.cpp old mode 100644 new mode 100755 index ef5ec456f..d3f542a55 --- a/Data/SQLite/src/SessionImpl.cpp +++ b/Data/SQLite/src/SessionImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/src/Utility.cpp b/Data/SQLite/src/Utility.cpp old mode 100644 new mode 100755 index 01c1d8398..0d412fe12 --- a/Data/SQLite/src/Utility.cpp +++ b/Data/SQLite/src/Utility.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/testsuite/src/Driver.cpp b/Data/SQLite/testsuite/src/Driver.cpp old mode 100644 new mode 100755 index 4644f01a4..2688cddb2 --- a/Data/SQLite/testsuite/src/Driver.cpp +++ b/Data/SQLite/testsuite/src/Driver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/testsuite/src/SQLiteTest.cpp b/Data/SQLite/testsuite/src/SQLiteTest.cpp old mode 100644 new mode 100755 index 423d919af..47368f534 --- a/Data/SQLite/testsuite/src/SQLiteTest.cpp +++ b/Data/SQLite/testsuite/src/SQLiteTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/testsuite/src/SQLiteTest.h b/Data/SQLite/testsuite/src/SQLiteTest.h old mode 100644 new mode 100755 index ecbd3f830..8f3045032 --- a/Data/SQLite/testsuite/src/SQLiteTest.h +++ b/Data/SQLite/testsuite/src/SQLiteTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/testsuite/src/SQLiteTestSuite.cpp b/Data/SQLite/testsuite/src/SQLiteTestSuite.cpp old mode 100644 new mode 100755 index 081d4dbff..28d9bb56f --- a/Data/SQLite/testsuite/src/SQLiteTestSuite.cpp +++ b/Data/SQLite/testsuite/src/SQLiteTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/testsuite/src/SQLiteTestSuite.h b/Data/SQLite/testsuite/src/SQLiteTestSuite.h old mode 100644 new mode 100755 index ca0390548..b52d2b9dd --- a/Data/SQLite/testsuite/src/SQLiteTestSuite.h +++ b/Data/SQLite/testsuite/src/SQLiteTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/testsuite/src/WinCEDriver.cpp b/Data/SQLite/testsuite/src/WinCEDriver.cpp old mode 100644 new mode 100755 index bb2b64876..9027a28be --- a/Data/SQLite/testsuite/src/WinCEDriver.cpp +++ b/Data/SQLite/testsuite/src/WinCEDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/SQLite/testsuite/src/WinDriver.cpp b/Data/SQLite/testsuite/src/WinDriver.cpp old mode 100644 new mode 100755 index 8f4737264..c79148653 --- a/Data/SQLite/testsuite/src/WinDriver.cpp +++ b/Data/SQLite/testsuite/src/WinDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/AbstractBinder.h b/Data/include/Poco/Data/AbstractBinder.h old mode 100644 new mode 100755 index b6387d62f..e622d4951 --- a/Data/include/Poco/Data/AbstractBinder.h +++ b/Data/include/Poco/Data/AbstractBinder.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/AbstractBinding.h b/Data/include/Poco/Data/AbstractBinding.h old mode 100644 new mode 100755 index 0a200afd2..318b78ef0 --- a/Data/include/Poco/Data/AbstractBinding.h +++ b/Data/include/Poco/Data/AbstractBinding.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/AbstractExtraction.h b/Data/include/Poco/Data/AbstractExtraction.h old mode 100644 new mode 100755 index 8197a6578..adf861e41 --- a/Data/include/Poco/Data/AbstractExtraction.h +++ b/Data/include/Poco/Data/AbstractExtraction.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/AbstractExtractor.h b/Data/include/Poco/Data/AbstractExtractor.h old mode 100644 new mode 100755 index d898948ee..915f171c7 --- a/Data/include/Poco/Data/AbstractExtractor.h +++ b/Data/include/Poco/Data/AbstractExtractor.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/AbstractPreparation.h b/Data/include/Poco/Data/AbstractPreparation.h old mode 100644 new mode 100755 index 6dcaebdbf..41cabd083 --- a/Data/include/Poco/Data/AbstractPreparation.h +++ b/Data/include/Poco/Data/AbstractPreparation.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/AbstractPreparator.h b/Data/include/Poco/Data/AbstractPreparator.h old mode 100644 new mode 100755 index 7a2381454..e47dce279 --- a/Data/include/Poco/Data/AbstractPreparator.h +++ b/Data/include/Poco/Data/AbstractPreparator.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/AbstractSessionImpl.h b/Data/include/Poco/Data/AbstractSessionImpl.h old mode 100644 new mode 100755 index 5e68579df..c7b6e26f0 --- a/Data/include/Poco/Data/AbstractSessionImpl.h +++ b/Data/include/Poco/Data/AbstractSessionImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/ArchiveStrategy.h b/Data/include/Poco/Data/ArchiveStrategy.h old mode 100644 new mode 100755 index 6cfbc0990..89c9013c6 --- a/Data/include/Poco/Data/ArchiveStrategy.h +++ b/Data/include/Poco/Data/ArchiveStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/AutoTransaction.h b/Data/include/Poco/Data/AutoTransaction.h old mode 100644 new mode 100755 index b3104fc9b..bc4f49687 --- a/Data/include/Poco/Data/AutoTransaction.h +++ b/Data/include/Poco/Data/AutoTransaction.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Binding.h b/Data/include/Poco/Data/Binding.h old mode 100644 new mode 100755 index 30ea6109f..70758f98f --- a/Data/include/Poco/Data/Binding.h +++ b/Data/include/Poco/Data/Binding.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Bulk.h b/Data/include/Poco/Data/Bulk.h old mode 100644 new mode 100755 index d331bc59c..92630d146 --- a/Data/include/Poco/Data/Bulk.h +++ b/Data/include/Poco/Data/Bulk.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/BulkBinding.h b/Data/include/Poco/Data/BulkBinding.h old mode 100644 new mode 100755 index 82de6eee7..de54d4ba1 --- a/Data/include/Poco/Data/BulkBinding.h +++ b/Data/include/Poco/Data/BulkBinding.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/BulkExtraction.h b/Data/include/Poco/Data/BulkExtraction.h old mode 100644 new mode 100755 index 413c6881c..7b329bec5 --- a/Data/include/Poco/Data/BulkExtraction.h +++ b/Data/include/Poco/Data/BulkExtraction.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Column.h b/Data/include/Poco/Data/Column.h old mode 100644 new mode 100755 index 0f0a3ff70..fb2a9d80b --- a/Data/include/Poco/Data/Column.h +++ b/Data/include/Poco/Data/Column.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Connector.h b/Data/include/Poco/Data/Connector.h old mode 100644 new mode 100755 index a44ae3feb..58551da5b --- a/Data/include/Poco/Data/Connector.h +++ b/Data/include/Poco/Data/Connector.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Constants.h b/Data/include/Poco/Data/Constants.h old mode 100644 new mode 100755 index 74ead6018..54fb77984 --- a/Data/include/Poco/Data/Constants.h +++ b/Data/include/Poco/Data/Constants.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Data.h b/Data/include/Poco/Data/Data.h old mode 100644 new mode 100755 index 5ddf088f8..542c48031 --- a/Data/include/Poco/Data/Data.h +++ b/Data/include/Poco/Data/Data.h @@ -14,27 +14,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/DataException.h b/Data/include/Poco/Data/DataException.h old mode 100644 new mode 100755 index 164a4f632..a8801d94e --- a/Data/include/Poco/Data/DataException.h +++ b/Data/include/Poco/Data/DataException.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Date.h b/Data/include/Poco/Data/Date.h old mode 100644 new mode 100755 index 5b433892b..289066848 --- a/Data/include/Poco/Data/Date.h +++ b/Data/include/Poco/Data/Date.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/DynamicDateTime.h b/Data/include/Poco/Data/DynamicDateTime.h old mode 100644 new mode 100755 index b5291571b..ee006db96 --- a/Data/include/Poco/Data/DynamicDateTime.h +++ b/Data/include/Poco/Data/DynamicDateTime.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/DynamicLOB.h b/Data/include/Poco/Data/DynamicLOB.h old mode 100644 new mode 100755 index 85bb2b995..9c748618b --- a/Data/include/Poco/Data/DynamicLOB.h +++ b/Data/include/Poco/Data/DynamicLOB.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Extraction.h b/Data/include/Poco/Data/Extraction.h old mode 100644 new mode 100755 index 90b4ad32a..e929e7da8 --- a/Data/include/Poco/Data/Extraction.h +++ b/Data/include/Poco/Data/Extraction.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/LOB.h b/Data/include/Poco/Data/LOB.h old mode 100644 new mode 100755 index cbaa98416..8bcb6b8b0 --- a/Data/include/Poco/Data/LOB.h +++ b/Data/include/Poco/Data/LOB.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/LOBStream.h b/Data/include/Poco/Data/LOBStream.h old mode 100644 new mode 100755 index 9d7cfd819..826466342 --- a/Data/include/Poco/Data/LOBStream.h +++ b/Data/include/Poco/Data/LOBStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Limit.h b/Data/include/Poco/Data/Limit.h old mode 100644 new mode 100755 index 8cc394b2f..f3b0451d8 --- a/Data/include/Poco/Data/Limit.h +++ b/Data/include/Poco/Data/Limit.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/MetaColumn.h b/Data/include/Poco/Data/MetaColumn.h old mode 100644 new mode 100755 index 02e235416..b9f844c8b --- a/Data/include/Poco/Data/MetaColumn.h +++ b/Data/include/Poco/Data/MetaColumn.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/PooledSessionHolder.h b/Data/include/Poco/Data/PooledSessionHolder.h old mode 100644 new mode 100755 index b88792bca..8bf3e356c --- a/Data/include/Poco/Data/PooledSessionHolder.h +++ b/Data/include/Poco/Data/PooledSessionHolder.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/PooledSessionImpl.h b/Data/include/Poco/Data/PooledSessionImpl.h old mode 100644 new mode 100755 index 6ee85b415..6e9cbd96b --- a/Data/include/Poco/Data/PooledSessionImpl.h +++ b/Data/include/Poco/Data/PooledSessionImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Position.h b/Data/include/Poco/Data/Position.h old mode 100644 new mode 100755 index 898d70ad1..0d0f251eb --- a/Data/include/Poco/Data/Position.h +++ b/Data/include/Poco/Data/Position.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Preparation.h b/Data/include/Poco/Data/Preparation.h old mode 100644 new mode 100755 index 004e3e8c7..53564ff31 --- a/Data/include/Poco/Data/Preparation.h +++ b/Data/include/Poco/Data/Preparation.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Range.h b/Data/include/Poco/Data/Range.h old mode 100644 new mode 100755 index bb746b8cb..bb91c4203 --- a/Data/include/Poco/Data/Range.h +++ b/Data/include/Poco/Data/Range.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/RecordSet.h b/Data/include/Poco/Data/RecordSet.h old mode 100644 new mode 100755 index 30db9ebb4..48fe0c14d --- a/Data/include/Poco/Data/RecordSet.h +++ b/Data/include/Poco/Data/RecordSet.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Row.h b/Data/include/Poco/Data/Row.h old mode 100644 new mode 100755 index ef41ed13c..ba3351226 --- a/Data/include/Poco/Data/Row.h +++ b/Data/include/Poco/Data/Row.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/RowFilter.h b/Data/include/Poco/Data/RowFilter.h old mode 100644 new mode 100755 index 0b997889b..6ce35c55d --- a/Data/include/Poco/Data/RowFilter.h +++ b/Data/include/Poco/Data/RowFilter.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/RowFormatter.h b/Data/include/Poco/Data/RowFormatter.h old mode 100644 new mode 100755 index 579e38b47..90e144aba --- a/Data/include/Poco/Data/RowFormatter.h +++ b/Data/include/Poco/Data/RowFormatter.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/RowIterator.h b/Data/include/Poco/Data/RowIterator.h old mode 100644 new mode 100755 index 8ba0998d0..e91118ca3 --- a/Data/include/Poco/Data/RowIterator.h +++ b/Data/include/Poco/Data/RowIterator.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/SQLChannel.h b/Data/include/Poco/Data/SQLChannel.h old mode 100644 new mode 100755 index 46402e607..8b66c5ca4 --- a/Data/include/Poco/Data/SQLChannel.h +++ b/Data/include/Poco/Data/SQLChannel.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Session.h b/Data/include/Poco/Data/Session.h old mode 100644 new mode 100755 index 5811ff1ae..c93bb1a96 --- a/Data/include/Poco/Data/Session.h +++ b/Data/include/Poco/Data/Session.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/SessionFactory.h b/Data/include/Poco/Data/SessionFactory.h old mode 100644 new mode 100755 index 7865d679a..1580d33c0 --- a/Data/include/Poco/Data/SessionFactory.h +++ b/Data/include/Poco/Data/SessionFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/SessionImpl.h b/Data/include/Poco/Data/SessionImpl.h old mode 100644 new mode 100755 index abc21ea98..2e71291d8 --- a/Data/include/Poco/Data/SessionImpl.h +++ b/Data/include/Poco/Data/SessionImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/SessionPool.h b/Data/include/Poco/Data/SessionPool.h old mode 100644 new mode 100755 index 1edc58608..0c4f19ca0 --- a/Data/include/Poco/Data/SessionPool.h +++ b/Data/include/Poco/Data/SessionPool.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/SessionPoolContainer.h b/Data/include/Poco/Data/SessionPoolContainer.h old mode 100644 new mode 100755 index 20f65eae1..b1e4c8ee3 --- a/Data/include/Poco/Data/SessionPoolContainer.h +++ b/Data/include/Poco/Data/SessionPoolContainer.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/SimpleRowFormatter.h b/Data/include/Poco/Data/SimpleRowFormatter.h old mode 100644 new mode 100755 index e8c67fc34..c9a26da71 --- a/Data/include/Poco/Data/SimpleRowFormatter.h +++ b/Data/include/Poco/Data/SimpleRowFormatter.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Statement.h b/Data/include/Poco/Data/Statement.h old mode 100644 new mode 100755 index fa5ec0365..acbf89a10 --- a/Data/include/Poco/Data/Statement.h +++ b/Data/include/Poco/Data/Statement.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/StatementCreator.h b/Data/include/Poco/Data/StatementCreator.h old mode 100644 new mode 100755 index e440f8481..76421136c --- a/Data/include/Poco/Data/StatementCreator.h +++ b/Data/include/Poco/Data/StatementCreator.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/StatementImpl.h b/Data/include/Poco/Data/StatementImpl.h old mode 100644 new mode 100755 index 0a1ae4f22..04f2df568 --- a/Data/include/Poco/Data/StatementImpl.h +++ b/Data/include/Poco/Data/StatementImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Time.h b/Data/include/Poco/Data/Time.h old mode 100644 new mode 100755 index b96d57d09..f62ef9537 --- a/Data/include/Poco/Data/Time.h +++ b/Data/include/Poco/Data/Time.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/Transaction.h b/Data/include/Poco/Data/Transaction.h old mode 100644 new mode 100755 index 784f59e85..c00e18332 --- a/Data/include/Poco/Data/Transaction.h +++ b/Data/include/Poco/Data/Transaction.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/include/Poco/Data/TypeHandler.h b/Data/include/Poco/Data/TypeHandler.h old mode 100644 new mode 100755 index 8bca1bdef..bd3c5d510 --- a/Data/include/Poco/Data/TypeHandler.h +++ b/Data/include/Poco/Data/TypeHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/samples/Binding/src/Binding.cpp b/Data/samples/Binding/src/Binding.cpp old mode 100644 new mode 100755 index 07964acd8..d4929af93 --- a/Data/samples/Binding/src/Binding.cpp +++ b/Data/samples/Binding/src/Binding.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 #include "Poco/Data/Session.h" diff --git a/Data/samples/RecordSet/src/RecordSet.cpp b/Data/samples/RecordSet/src/RecordSet.cpp old mode 100644 new mode 100755 index bec933b92..0502f9e3f --- a/Data/samples/RecordSet/src/RecordSet.cpp +++ b/Data/samples/RecordSet/src/RecordSet.cpp @@ -8,27 +8,7 @@ /// Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 #include "Poco/SharedPtr.h" diff --git a/Data/samples/RowFormatter/src/RowFormatter.cpp b/Data/samples/RowFormatter/src/RowFormatter.cpp old mode 100644 new mode 100755 index b93e8bd20..18eaadfeb --- a/Data/samples/RowFormatter/src/RowFormatter.cpp +++ b/Data/samples/RowFormatter/src/RowFormatter.cpp @@ -9,27 +9,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 #include "Poco/SharedPtr.h" diff --git a/Data/samples/Tuple/src/Tuple.cpp b/Data/samples/Tuple/src/Tuple.cpp old mode 100644 new mode 100755 index 91c60384b..1e9af2337 --- a/Data/samples/Tuple/src/Tuple.cpp +++ b/Data/samples/Tuple/src/Tuple.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 #include "Poco/SharedPtr.h" diff --git a/Data/samples/TypeHandler/src/TypeHandler.cpp b/Data/samples/TypeHandler/src/TypeHandler.cpp old mode 100644 new mode 100755 index 5f83daedb..02d31ea53 --- a/Data/samples/TypeHandler/src/TypeHandler.cpp +++ b/Data/samples/TypeHandler/src/TypeHandler.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 #include "Poco/SharedPtr.h" diff --git a/Data/samples/WebNotifier/src/WebNotifier.cpp b/Data/samples/WebNotifier/src/WebNotifier.cpp old mode 100644 new mode 100755 index 4314ac6a0..d0fdc1622 --- a/Data/samples/WebNotifier/src/WebNotifier.cpp +++ b/Data/samples/WebNotifier/src/WebNotifier.cpp @@ -17,27 +17,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 #include "Poco/Delegate.h" diff --git a/Data/src/AbstractBinder.cpp b/Data/src/AbstractBinder.cpp old mode 100644 new mode 100755 index de71ed4f2..9f82631aa --- a/Data/src/AbstractBinder.cpp +++ b/Data/src/AbstractBinder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/AbstractBinding.cpp b/Data/src/AbstractBinding.cpp old mode 100644 new mode 100755 index 44bea3f06..fae8ed3a5 --- a/Data/src/AbstractBinding.cpp +++ b/Data/src/AbstractBinding.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/AbstractExtraction.cpp b/Data/src/AbstractExtraction.cpp old mode 100644 new mode 100755 index 900a73c63..b8dc5cd2a --- a/Data/src/AbstractExtraction.cpp +++ b/Data/src/AbstractExtraction.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/AbstractExtractor.cpp b/Data/src/AbstractExtractor.cpp old mode 100644 new mode 100755 index e396a6311..d5f0b85e2 --- a/Data/src/AbstractExtractor.cpp +++ b/Data/src/AbstractExtractor.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/AbstractPreparation.cpp b/Data/src/AbstractPreparation.cpp old mode 100644 new mode 100755 index c407681aa..53b81da87 --- a/Data/src/AbstractPreparation.cpp +++ b/Data/src/AbstractPreparation.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/AbstractPreparator.cpp b/Data/src/AbstractPreparator.cpp old mode 100644 new mode 100755 index 41db287ff..06c30d347 --- a/Data/src/AbstractPreparator.cpp +++ b/Data/src/AbstractPreparator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/ArchiveStrategy.cpp b/Data/src/ArchiveStrategy.cpp old mode 100644 new mode 100755 index baec24dcb..dfcaa7e5a --- a/Data/src/ArchiveStrategy.cpp +++ b/Data/src/ArchiveStrategy.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/Bulk.cpp b/Data/src/Bulk.cpp old mode 100644 new mode 100755 index 93928fa4f..e4a0b7be7 --- a/Data/src/Bulk.cpp +++ b/Data/src/Bulk.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/Connector.cpp b/Data/src/Connector.cpp old mode 100644 new mode 100755 index 4290bce78..126c07f6f --- a/Data/src/Connector.cpp +++ b/Data/src/Connector.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/DataException.cpp b/Data/src/DataException.cpp old mode 100644 new mode 100755 index f252fa811..feb90cbb2 --- a/Data/src/DataException.cpp +++ b/Data/src/DataException.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/Date.cpp b/Data/src/Date.cpp old mode 100644 new mode 100755 index c4d014753..c1d52b55f --- a/Data/src/Date.cpp +++ b/Data/src/Date.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/DynamicLOB.cpp b/Data/src/DynamicLOB.cpp old mode 100644 new mode 100755 index 5b76e4a28..65f501cb2 --- a/Data/src/DynamicLOB.cpp +++ b/Data/src/DynamicLOB.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/Limit.cpp b/Data/src/Limit.cpp old mode 100644 new mode 100755 index 582b24dc5..4f49642bf --- a/Data/src/Limit.cpp +++ b/Data/src/Limit.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/MetaColumn.cpp b/Data/src/MetaColumn.cpp old mode 100644 new mode 100755 index b114f20fc..d1d9cd4ac --- a/Data/src/MetaColumn.cpp +++ b/Data/src/MetaColumn.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/PooledSessionHolder.cpp b/Data/src/PooledSessionHolder.cpp old mode 100644 new mode 100755 index 12ea2f882..4fdc1d1c4 --- a/Data/src/PooledSessionHolder.cpp +++ b/Data/src/PooledSessionHolder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/PooledSessionImpl.cpp b/Data/src/PooledSessionImpl.cpp old mode 100644 new mode 100755 index 8c8c0bd78..f79d6e51f --- a/Data/src/PooledSessionImpl.cpp +++ b/Data/src/PooledSessionImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/Position.cpp b/Data/src/Position.cpp old mode 100644 new mode 100755 index cfc1885c9..53ea1b0a6 --- a/Data/src/Position.cpp +++ b/Data/src/Position.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/Range.cpp b/Data/src/Range.cpp old mode 100644 new mode 100755 index 13e0ffaf1..8c38e0c7e --- a/Data/src/Range.cpp +++ b/Data/src/Range.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/RecordSet.cpp b/Data/src/RecordSet.cpp old mode 100644 new mode 100755 index 1e3374b4d..b5378f9d4 --- a/Data/src/RecordSet.cpp +++ b/Data/src/RecordSet.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/Row.cpp b/Data/src/Row.cpp old mode 100644 new mode 100755 index 16f0f680c..032d0e68c --- a/Data/src/Row.cpp +++ b/Data/src/Row.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/RowFilter.cpp b/Data/src/RowFilter.cpp old mode 100644 new mode 100755 index fe0e3ec74..8cbb16357 --- a/Data/src/RowFilter.cpp +++ b/Data/src/RowFilter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/RowFormatter.cpp b/Data/src/RowFormatter.cpp old mode 100644 new mode 100755 index 05bc9b0cb..6c1c2cdc3 --- a/Data/src/RowFormatter.cpp +++ b/Data/src/RowFormatter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/RowIterator.cpp b/Data/src/RowIterator.cpp old mode 100644 new mode 100755 index 1acd1a64c..e8629665f --- a/Data/src/RowIterator.cpp +++ b/Data/src/RowIterator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/SQLChannel.cpp b/Data/src/SQLChannel.cpp old mode 100644 new mode 100755 index a7abf68a7..32b520a73 --- a/Data/src/SQLChannel.cpp +++ b/Data/src/SQLChannel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/Session.cpp b/Data/src/Session.cpp old mode 100644 new mode 100755 index f17361a61..350ce2c57 --- a/Data/src/Session.cpp +++ b/Data/src/Session.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/SessionFactory.cpp b/Data/src/SessionFactory.cpp old mode 100644 new mode 100755 index b957bef04..c4628c134 --- a/Data/src/SessionFactory.cpp +++ b/Data/src/SessionFactory.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/SessionImpl.cpp b/Data/src/SessionImpl.cpp old mode 100644 new mode 100755 index 7228255ce..de26cc17f --- a/Data/src/SessionImpl.cpp +++ b/Data/src/SessionImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/SessionPool.cpp b/Data/src/SessionPool.cpp old mode 100644 new mode 100755 index 3165b3afa..7f2b54421 --- a/Data/src/SessionPool.cpp +++ b/Data/src/SessionPool.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/SessionPoolContainer.cpp b/Data/src/SessionPoolContainer.cpp old mode 100644 new mode 100755 index 742802403..5a9af38c7 --- a/Data/src/SessionPoolContainer.cpp +++ b/Data/src/SessionPoolContainer.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/SimpleRowFormatter.cpp b/Data/src/SimpleRowFormatter.cpp old mode 100644 new mode 100755 index 5a055b828..b510be137 --- a/Data/src/SimpleRowFormatter.cpp +++ b/Data/src/SimpleRowFormatter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/Statement.cpp b/Data/src/Statement.cpp old mode 100644 new mode 100755 index df31345de..b505e5fb6 --- a/Data/src/Statement.cpp +++ b/Data/src/Statement.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/StatementCreator.cpp b/Data/src/StatementCreator.cpp old mode 100644 new mode 100755 index 4a619f6cc..f3e03c9ae --- a/Data/src/StatementCreator.cpp +++ b/Data/src/StatementCreator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/StatementImpl.cpp b/Data/src/StatementImpl.cpp old mode 100644 new mode 100755 index 154e5777f..0fc701c69 --- a/Data/src/StatementImpl.cpp +++ b/Data/src/StatementImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/Time.cpp b/Data/src/Time.cpp old mode 100644 new mode 100755 index bd8adc247..e10817962 --- a/Data/src/Time.cpp +++ b/Data/src/Time.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/src/Transaction.cpp b/Data/src/Transaction.cpp old mode 100644 new mode 100755 index aae1287f9..8ac6f1424 --- a/Data/src/Transaction.cpp +++ b/Data/src/Transaction.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/Binder.cpp b/Data/testsuite/src/Binder.cpp old mode 100644 new mode 100755 index 56b241a5b..1c84d0c4a --- a/Data/testsuite/src/Binder.cpp +++ b/Data/testsuite/src/Binder.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/Binder.h b/Data/testsuite/src/Binder.h old mode 100644 new mode 100755 index 388ef82a7..575e9be82 --- a/Data/testsuite/src/Binder.h +++ b/Data/testsuite/src/Binder.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/Connector.cpp b/Data/testsuite/src/Connector.cpp old mode 100644 new mode 100755 index 924558eb8..1b7ad0f04 --- a/Data/testsuite/src/Connector.cpp +++ b/Data/testsuite/src/Connector.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/Connector.h b/Data/testsuite/src/Connector.h old mode 100644 new mode 100755 index ce2eb299f..05ded2f0e --- a/Data/testsuite/src/Connector.h +++ b/Data/testsuite/src/Connector.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/DataTest.cpp b/Data/testsuite/src/DataTest.cpp old mode 100644 new mode 100755 index f478d411f..7eab951a2 --- a/Data/testsuite/src/DataTest.cpp +++ b/Data/testsuite/src/DataTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/DataTest.h b/Data/testsuite/src/DataTest.h old mode 100644 new mode 100755 index fc96dc559..7f1c42757 --- a/Data/testsuite/src/DataTest.h +++ b/Data/testsuite/src/DataTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/DataTestSuite.cpp b/Data/testsuite/src/DataTestSuite.cpp old mode 100644 new mode 100755 index e239da160..de5d58e16 --- a/Data/testsuite/src/DataTestSuite.cpp +++ b/Data/testsuite/src/DataTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/DataTestSuite.h b/Data/testsuite/src/DataTestSuite.h old mode 100644 new mode 100755 index ca137b2d7..670d7911b --- a/Data/testsuite/src/DataTestSuite.h +++ b/Data/testsuite/src/DataTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/Driver.cpp b/Data/testsuite/src/Driver.cpp old mode 100644 new mode 100755 index 760cb0b5b..7aa0003a2 --- a/Data/testsuite/src/Driver.cpp +++ b/Data/testsuite/src/Driver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/Extractor.cpp b/Data/testsuite/src/Extractor.cpp old mode 100644 new mode 100755 index 61b06438d..ac4f3f3d6 --- a/Data/testsuite/src/Extractor.cpp +++ b/Data/testsuite/src/Extractor.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/Extractor.h b/Data/testsuite/src/Extractor.h old mode 100644 new mode 100755 index 6f6bcb0b1..5565b6811 --- a/Data/testsuite/src/Extractor.h +++ b/Data/testsuite/src/Extractor.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/Preparator.cpp b/Data/testsuite/src/Preparator.cpp old mode 100644 new mode 100755 index 3b4464aae..29be02e38 --- a/Data/testsuite/src/Preparator.cpp +++ b/Data/testsuite/src/Preparator.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/Preparator.h b/Data/testsuite/src/Preparator.h old mode 100644 new mode 100755 index 94ccb8dd5..26bd93f92 --- a/Data/testsuite/src/Preparator.h +++ b/Data/testsuite/src/Preparator.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/SessionImpl.cpp b/Data/testsuite/src/SessionImpl.cpp old mode 100644 new mode 100755 index f80df7486..64a66d639 --- a/Data/testsuite/src/SessionImpl.cpp +++ b/Data/testsuite/src/SessionImpl.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/SessionImpl.h b/Data/testsuite/src/SessionImpl.h old mode 100644 new mode 100755 index 6e728a256..d074d8424 --- a/Data/testsuite/src/SessionImpl.h +++ b/Data/testsuite/src/SessionImpl.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/SessionPoolTest.cpp b/Data/testsuite/src/SessionPoolTest.cpp old mode 100644 new mode 100755 index c7d69429a..e290ca0f8 --- a/Data/testsuite/src/SessionPoolTest.cpp +++ b/Data/testsuite/src/SessionPoolTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/SessionPoolTest.h b/Data/testsuite/src/SessionPoolTest.h old mode 100644 new mode 100755 index 2392aff9a..4c24381df --- a/Data/testsuite/src/SessionPoolTest.h +++ b/Data/testsuite/src/SessionPoolTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/StatementImpl.cpp b/Data/testsuite/src/StatementImpl.cpp old mode 100644 new mode 100755 index c5afb006e..d32c47135 --- a/Data/testsuite/src/StatementImpl.cpp +++ b/Data/testsuite/src/StatementImpl.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/StatementImpl.h b/Data/testsuite/src/StatementImpl.h old mode 100644 new mode 100755 index 72715d8d7..843f33057 --- a/Data/testsuite/src/StatementImpl.h +++ b/Data/testsuite/src/StatementImpl.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/TestStatementImpl.cpp b/Data/testsuite/src/TestStatementImpl.cpp old mode 100644 new mode 100755 index 5fa6f65e3..425f1fae1 --- a/Data/testsuite/src/TestStatementImpl.cpp +++ b/Data/testsuite/src/TestStatementImpl.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/TestStatementImpl.h b/Data/testsuite/src/TestStatementImpl.h old mode 100644 new mode 100755 index 1374d879b..818b6d9f7 --- a/Data/testsuite/src/TestStatementImpl.h +++ b/Data/testsuite/src/TestStatementImpl.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/WinCEDriver.cpp b/Data/testsuite/src/WinCEDriver.cpp old mode 100644 new mode 100755 index e946492b8..71c7ebda0 --- a/Data/testsuite/src/WinCEDriver.cpp +++ b/Data/testsuite/src/WinCEDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Data/testsuite/src/WinDriver.cpp b/Data/testsuite/src/WinDriver.cpp old mode 100644 new mode 100755 index 311e725d6..01e7d90a8 --- a/Data/testsuite/src/WinDriver.cpp +++ b/Data/testsuite/src/WinDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ASCIIEncoding.h b/Foundation/include/Poco/ASCIIEncoding.h old mode 100644 new mode 100755 index d7623920f..f31a6f5a6 --- a/Foundation/include/Poco/ASCIIEncoding.h +++ b/Foundation/include/Poco/ASCIIEncoding.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/AbstractCache.h b/Foundation/include/Poco/AbstractCache.h old mode 100644 new mode 100755 index c0f54e3fb..cd7203562 --- a/Foundation/include/Poco/AbstractCache.h +++ b/Foundation/include/Poco/AbstractCache.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/AbstractDelegate.h b/Foundation/include/Poco/AbstractDelegate.h old mode 100644 new mode 100755 index fb78dda81..9732b1065 --- a/Foundation/include/Poco/AbstractDelegate.h +++ b/Foundation/include/Poco/AbstractDelegate.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/AbstractEvent.h b/Foundation/include/Poco/AbstractEvent.h old mode 100644 new mode 100755 index 8da424171..a294ababb --- a/Foundation/include/Poco/AbstractEvent.h +++ b/Foundation/include/Poco/AbstractEvent.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/AbstractObserver.h b/Foundation/include/Poco/AbstractObserver.h old mode 100644 new mode 100755 index 21ab708dd..ec7147293 --- a/Foundation/include/Poco/AbstractObserver.h +++ b/Foundation/include/Poco/AbstractObserver.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/AbstractPriorityDelegate.h b/Foundation/include/Poco/AbstractPriorityDelegate.h old mode 100644 new mode 100755 index e8e48cb73..7b8f99381 --- a/Foundation/include/Poco/AbstractPriorityDelegate.h +++ b/Foundation/include/Poco/AbstractPriorityDelegate.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/AbstractStrategy.h b/Foundation/include/Poco/AbstractStrategy.h old mode 100644 new mode 100755 index 8c7b05433..c300a4809 --- a/Foundation/include/Poco/AbstractStrategy.h +++ b/Foundation/include/Poco/AbstractStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/AccessExpirationDecorator.h b/Foundation/include/Poco/AccessExpirationDecorator.h old mode 100644 new mode 100755 index a4b8399c3..bee74ff57 --- a/Foundation/include/Poco/AccessExpirationDecorator.h +++ b/Foundation/include/Poco/AccessExpirationDecorator.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/AccessExpireCache.h b/Foundation/include/Poco/AccessExpireCache.h old mode 100644 new mode 100755 index d4af4bf71..726f3475a --- a/Foundation/include/Poco/AccessExpireCache.h +++ b/Foundation/include/Poco/AccessExpireCache.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/AccessExpireLRUCache.h b/Foundation/include/Poco/AccessExpireLRUCache.h old mode 100644 new mode 100755 index bd71efaf5..13d29b945 --- a/Foundation/include/Poco/AccessExpireLRUCache.h +++ b/Foundation/include/Poco/AccessExpireLRUCache.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/AccessExpireStrategy.h b/Foundation/include/Poco/AccessExpireStrategy.h old mode 100644 new mode 100755 index 107bfaf0e..c92525bdf --- a/Foundation/include/Poco/AccessExpireStrategy.h +++ b/Foundation/include/Poco/AccessExpireStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ActiveDispatcher.h b/Foundation/include/Poco/ActiveDispatcher.h old mode 100644 new mode 100755 index 48fbc2779..69f9b755c --- a/Foundation/include/Poco/ActiveDispatcher.h +++ b/Foundation/include/Poco/ActiveDispatcher.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ActiveMethod.h b/Foundation/include/Poco/ActiveMethod.h old mode 100644 new mode 100755 index 08b536243..bfe8c3330 --- a/Foundation/include/Poco/ActiveMethod.h +++ b/Foundation/include/Poco/ActiveMethod.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ActiveResult.h b/Foundation/include/Poco/ActiveResult.h old mode 100644 new mode 100755 index bafaa9f67..c71a39bd8 --- a/Foundation/include/Poco/ActiveResult.h +++ b/Foundation/include/Poco/ActiveResult.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ActiveRunnable.h b/Foundation/include/Poco/ActiveRunnable.h old mode 100644 new mode 100755 index 228ff5189..2fefbfa90 --- a/Foundation/include/Poco/ActiveRunnable.h +++ b/Foundation/include/Poco/ActiveRunnable.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ActiveStarter.h b/Foundation/include/Poco/ActiveStarter.h old mode 100644 new mode 100755 index 72b87b885..274cdcedd --- a/Foundation/include/Poco/ActiveStarter.h +++ b/Foundation/include/Poco/ActiveStarter.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Activity.h b/Foundation/include/Poco/Activity.h old mode 100644 new mode 100755 index 29c4d4c32..a47c3f363 --- a/Foundation/include/Poco/Activity.h +++ b/Foundation/include/Poco/Activity.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Alignment.h b/Foundation/include/Poco/Alignment.h old mode 100644 new mode 100755 index 6ef6413af..1467feabd --- a/Foundation/include/Poco/Alignment.h +++ b/Foundation/include/Poco/Alignment.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Any.h b/Foundation/include/Poco/Any.h old mode 100644 new mode 100755 index 77f7eaaad..a86abba45 --- a/Foundation/include/Poco/Any.h +++ b/Foundation/include/Poco/Any.h @@ -10,27 +10,7 @@ // Copyright Kevlin Henney, 2000, 2001, 2002. All rights reserved. // Extracted from Boost 1.33.1 lib and adapted for poco: Peter Schojer/AppliedInformatics 2006-02-02 // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ArchiveStrategy.h b/Foundation/include/Poco/ArchiveStrategy.h old mode 100644 new mode 100755 index 681aa15cd..6f00e33b4 --- a/Foundation/include/Poco/ArchiveStrategy.h +++ b/Foundation/include/Poco/ArchiveStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Array.h b/Foundation/include/Poco/Array.h old mode 100644 new mode 100755 index 7232a4338..6dd9b4b76 --- a/Foundation/include/Poco/Array.h +++ b/Foundation/include/Poco/Array.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // // ------------------------------------------------------------------------------ // (C) Copyright Nicolai M. Josuttis 2001. diff --git a/Foundation/include/Poco/Ascii.h b/Foundation/include/Poco/Ascii.h old mode 100644 new mode 100755 index edd2b4f52..0eb5d1c61 --- a/Foundation/include/Poco/Ascii.h +++ b/Foundation/include/Poco/Ascii.h @@ -12,27 +12,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/AsyncChannel.h b/Foundation/include/Poco/AsyncChannel.h old mode 100644 new mode 100755 index 9ce5f2384..8d49ca8a2 --- a/Foundation/include/Poco/AsyncChannel.h +++ b/Foundation/include/Poco/AsyncChannel.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/AtomicCounter.h b/Foundation/include/Poco/AtomicCounter.h old mode 100644 new mode 100755 index 38856c767..0554558bb --- a/Foundation/include/Poco/AtomicCounter.h +++ b/Foundation/include/Poco/AtomicCounter.h @@ -12,27 +12,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/AutoPtr.h b/Foundation/include/Poco/AutoPtr.h old mode 100644 new mode 100755 index c349623cf..f3b2db3a2 --- a/Foundation/include/Poco/AutoPtr.h +++ b/Foundation/include/Poco/AutoPtr.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/AutoReleasePool.h b/Foundation/include/Poco/AutoReleasePool.h old mode 100644 new mode 100755 index 26faf734b..4506056ed --- a/Foundation/include/Poco/AutoReleasePool.h +++ b/Foundation/include/Poco/AutoReleasePool.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Base32Decoder.h b/Foundation/include/Poco/Base32Decoder.h old mode 100644 new mode 100755 index 2ffed1926..eaab48892 --- a/Foundation/include/Poco/Base32Decoder.h +++ b/Foundation/include/Poco/Base32Decoder.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Base32Encoder.h b/Foundation/include/Poco/Base32Encoder.h old mode 100644 new mode 100755 index dcde55a37..2f0df9b7a --- a/Foundation/include/Poco/Base32Encoder.h +++ b/Foundation/include/Poco/Base32Encoder.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Base64Decoder.h b/Foundation/include/Poco/Base64Decoder.h old mode 100644 new mode 100755 index 1625ee1ef..ad399c6f9 --- a/Foundation/include/Poco/Base64Decoder.h +++ b/Foundation/include/Poco/Base64Decoder.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Base64Encoder.h b/Foundation/include/Poco/Base64Encoder.h old mode 100644 new mode 100755 index 3e75a90fd..6f1241a8c --- a/Foundation/include/Poco/Base64Encoder.h +++ b/Foundation/include/Poco/Base64Encoder.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/BasicEvent.h b/Foundation/include/Poco/BasicEvent.h old mode 100644 new mode 100755 index 4c4362acc..366f59e2f --- a/Foundation/include/Poco/BasicEvent.h +++ b/Foundation/include/Poco/BasicEvent.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/BinaryReader.h b/Foundation/include/Poco/BinaryReader.h old mode 100644 new mode 100755 index 2318f9b87..cc4c60489 --- a/Foundation/include/Poco/BinaryReader.h +++ b/Foundation/include/Poco/BinaryReader.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/BinaryWriter.h b/Foundation/include/Poco/BinaryWriter.h old mode 100644 new mode 100755 index 64fbfeded..619f97794 --- a/Foundation/include/Poco/BinaryWriter.h +++ b/Foundation/include/Poco/BinaryWriter.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Buffer.h b/Foundation/include/Poco/Buffer.h old mode 100644 new mode 100755 index bc3680574..0b7622383 --- a/Foundation/include/Poco/Buffer.h +++ b/Foundation/include/Poco/Buffer.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/BufferAllocator.h b/Foundation/include/Poco/BufferAllocator.h old mode 100644 new mode 100755 index 6cc4afa9a..fb61b8797 --- a/Foundation/include/Poco/BufferAllocator.h +++ b/Foundation/include/Poco/BufferAllocator.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/BufferedBidirectionalStreamBuf.h b/Foundation/include/Poco/BufferedBidirectionalStreamBuf.h old mode 100644 new mode 100755 index f660c8dbf..fa0c95765 --- a/Foundation/include/Poco/BufferedBidirectionalStreamBuf.h +++ b/Foundation/include/Poco/BufferedBidirectionalStreamBuf.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/BufferedStreamBuf.h b/Foundation/include/Poco/BufferedStreamBuf.h old mode 100644 new mode 100755 index 10da4679c..7c9c00616 --- a/Foundation/include/Poco/BufferedStreamBuf.h +++ b/Foundation/include/Poco/BufferedStreamBuf.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Bugcheck.h b/Foundation/include/Poco/Bugcheck.h old mode 100644 new mode 100755 index d2170e026..ecde82f2c --- a/Foundation/include/Poco/Bugcheck.h +++ b/Foundation/include/Poco/Bugcheck.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ByteOrder.h b/Foundation/include/Poco/ByteOrder.h old mode 100644 new mode 100755 index 07306ea97..f2ac8c36b --- a/Foundation/include/Poco/ByteOrder.h +++ b/Foundation/include/Poco/ByteOrder.h @@ -10,27 +10,7 @@ // Copyright (c) 2004-2014, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Channel.h b/Foundation/include/Poco/Channel.h old mode 100644 new mode 100755 index 101310f32..e34431bba --- a/Foundation/include/Poco/Channel.h +++ b/Foundation/include/Poco/Channel.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Checksum.h b/Foundation/include/Poco/Checksum.h old mode 100644 new mode 100755 index 3e9fbe470..49b307661 --- a/Foundation/include/Poco/Checksum.h +++ b/Foundation/include/Poco/Checksum.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ClassLibrary.h b/Foundation/include/Poco/ClassLibrary.h old mode 100644 new mode 100755 index 7118f0701..30fc98b35 --- a/Foundation/include/Poco/ClassLibrary.h +++ b/Foundation/include/Poco/ClassLibrary.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ClassLoader.h b/Foundation/include/Poco/ClassLoader.h old mode 100644 new mode 100755 index f15085f99..1dd63a7ac --- a/Foundation/include/Poco/ClassLoader.h +++ b/Foundation/include/Poco/ClassLoader.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Clock.h b/Foundation/include/Poco/Clock.h old mode 100644 new mode 100755 index 2f61562fe..ad9be705f --- a/Foundation/include/Poco/Clock.h +++ b/Foundation/include/Poco/Clock.h @@ -12,27 +12,7 @@ // Copyright (c) 2013, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Condition.h b/Foundation/include/Poco/Condition.h old mode 100644 new mode 100755 index 050584ded..2ae26e4c4 --- a/Foundation/include/Poco/Condition.h +++ b/Foundation/include/Poco/Condition.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Config.h b/Foundation/include/Poco/Config.h old mode 100644 new mode 100755 index 19efc6263..7ee7ca9fc --- a/Foundation/include/Poco/Config.h +++ b/Foundation/include/Poco/Config.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Configurable.h b/Foundation/include/Poco/Configurable.h old mode 100644 new mode 100755 index 872d91866..82def9715 --- a/Foundation/include/Poco/Configurable.h +++ b/Foundation/include/Poco/Configurable.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ConsoleChannel.h b/Foundation/include/Poco/ConsoleChannel.h old mode 100644 new mode 100755 index 0462ae5fa..21b2d0d17 --- a/Foundation/include/Poco/ConsoleChannel.h +++ b/Foundation/include/Poco/ConsoleChannel.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/CountingStream.h b/Foundation/include/Poco/CountingStream.h old mode 100644 new mode 100755 index d7c836392..9d95ff376 --- a/Foundation/include/Poco/CountingStream.h +++ b/Foundation/include/Poco/CountingStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DateTime.h b/Foundation/include/Poco/DateTime.h old mode 100644 new mode 100755 index 420563cc9..f6385d25e --- a/Foundation/include/Poco/DateTime.h +++ b/Foundation/include/Poco/DateTime.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DateTimeFormat.h b/Foundation/include/Poco/DateTimeFormat.h old mode 100644 new mode 100755 index afb6ee06f..bd449cae4 --- a/Foundation/include/Poco/DateTimeFormat.h +++ b/Foundation/include/Poco/DateTimeFormat.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DateTimeFormatter.h b/Foundation/include/Poco/DateTimeFormatter.h old mode 100644 new mode 100755 index eececaf8f..82b875a2e --- a/Foundation/include/Poco/DateTimeFormatter.h +++ b/Foundation/include/Poco/DateTimeFormatter.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DateTimeParser.h b/Foundation/include/Poco/DateTimeParser.h old mode 100644 new mode 100755 index aac796b4a..eebd6d20c --- a/Foundation/include/Poco/DateTimeParser.h +++ b/Foundation/include/Poco/DateTimeParser.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Debugger.h b/Foundation/include/Poco/Debugger.h old mode 100644 new mode 100755 index 280b16c12..b7e6a3e15 --- a/Foundation/include/Poco/Debugger.h +++ b/Foundation/include/Poco/Debugger.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DefaultStrategy.h b/Foundation/include/Poco/DefaultStrategy.h old mode 100644 new mode 100755 index d9d134824..1ba9ade91 --- a/Foundation/include/Poco/DefaultStrategy.h +++ b/Foundation/include/Poco/DefaultStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DeflatingStream.h b/Foundation/include/Poco/DeflatingStream.h old mode 100644 new mode 100755 index 3080a8d47..2def954d3 --- a/Foundation/include/Poco/DeflatingStream.h +++ b/Foundation/include/Poco/DeflatingStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Delegate.h b/Foundation/include/Poco/Delegate.h old mode 100644 new mode 100755 index b1745f35e..c6e5dbed4 --- a/Foundation/include/Poco/Delegate.h +++ b/Foundation/include/Poco/Delegate.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DigestEngine.h b/Foundation/include/Poco/DigestEngine.h old mode 100644 new mode 100755 index 0b7400785..d9a36e344 --- a/Foundation/include/Poco/DigestEngine.h +++ b/Foundation/include/Poco/DigestEngine.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DigestStream.h b/Foundation/include/Poco/DigestStream.h old mode 100644 new mode 100755 index fb4017c50..9433ac4c9 --- a/Foundation/include/Poco/DigestStream.h +++ b/Foundation/include/Poco/DigestStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DirectoryIterator.h b/Foundation/include/Poco/DirectoryIterator.h old mode 100644 new mode 100755 index 9c6747568..b04ce1c5c --- a/Foundation/include/Poco/DirectoryIterator.h +++ b/Foundation/include/Poco/DirectoryIterator.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DirectoryIteratorStrategy.h b/Foundation/include/Poco/DirectoryIteratorStrategy.h old mode 100644 new mode 100755 index f310a5538..d4ce2bb8a --- a/Foundation/include/Poco/DirectoryIteratorStrategy.h +++ b/Foundation/include/Poco/DirectoryIteratorStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DirectoryIterator_UNIX.h b/Foundation/include/Poco/DirectoryIterator_UNIX.h old mode 100644 new mode 100755 index d0f7c5a17..902f30fb5 --- a/Foundation/include/Poco/DirectoryIterator_UNIX.h +++ b/Foundation/include/Poco/DirectoryIterator_UNIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DirectoryIterator_VMS.h b/Foundation/include/Poco/DirectoryIterator_VMS.h old mode 100644 new mode 100755 index 8ade4c89a..f1cedc5dc --- a/Foundation/include/Poco/DirectoryIterator_VMS.h +++ b/Foundation/include/Poco/DirectoryIterator_VMS.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DirectoryIterator_WIN32.h b/Foundation/include/Poco/DirectoryIterator_WIN32.h old mode 100644 new mode 100755 index 6d02b93cf..759bea069 --- a/Foundation/include/Poco/DirectoryIterator_WIN32.h +++ b/Foundation/include/Poco/DirectoryIterator_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DirectoryIterator_WIN32U.h b/Foundation/include/Poco/DirectoryIterator_WIN32U.h old mode 100644 new mode 100755 index 2fc7dd478..b519a43eb --- a/Foundation/include/Poco/DirectoryIterator_WIN32U.h +++ b/Foundation/include/Poco/DirectoryIterator_WIN32U.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DirectoryWatcher.h b/Foundation/include/Poco/DirectoryWatcher.h old mode 100644 new mode 100755 index fac2029d5..f3ca2776c --- a/Foundation/include/Poco/DirectoryWatcher.h +++ b/Foundation/include/Poco/DirectoryWatcher.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Dynamic/Pair.h b/Foundation/include/Poco/Dynamic/Pair.h old mode 100644 new mode 100755 index 26690013c..b16f833b2 --- a/Foundation/include/Poco/Dynamic/Pair.h +++ b/Foundation/include/Poco/Dynamic/Pair.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Dynamic/Struct.h b/Foundation/include/Poco/Dynamic/Struct.h old mode 100644 new mode 100755 index 2c65506a2..3dd4fdada --- a/Foundation/include/Poco/Dynamic/Struct.h +++ b/Foundation/include/Poco/Dynamic/Struct.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Dynamic/Var.h b/Foundation/include/Poco/Dynamic/Var.h old mode 100644 new mode 100755 index e5a49824a..490c8be8e --- a/Foundation/include/Poco/Dynamic/Var.h +++ b/Foundation/include/Poco/Dynamic/Var.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Dynamic/VarHolder.h b/Foundation/include/Poco/Dynamic/VarHolder.h old mode 100644 new mode 100755 index 21c8d8ffc..cfecb97e9 --- a/Foundation/include/Poco/Dynamic/VarHolder.h +++ b/Foundation/include/Poco/Dynamic/VarHolder.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Dynamic/VarIterator.h b/Foundation/include/Poco/Dynamic/VarIterator.h old mode 100644 new mode 100755 index ebeb60f21..9cf4efcd8 --- a/Foundation/include/Poco/Dynamic/VarIterator.h +++ b/Foundation/include/Poco/Dynamic/VarIterator.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DynamicAny.h b/Foundation/include/Poco/DynamicAny.h old mode 100644 new mode 100755 index 390863e78..715debe94 --- a/Foundation/include/Poco/DynamicAny.h +++ b/Foundation/include/Poco/DynamicAny.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DynamicAnyHolder.h b/Foundation/include/Poco/DynamicAnyHolder.h old mode 100644 new mode 100755 index 277ad7885..04dc9d85b --- a/Foundation/include/Poco/DynamicAnyHolder.h +++ b/Foundation/include/Poco/DynamicAnyHolder.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DynamicFactory.h b/Foundation/include/Poco/DynamicFactory.h old mode 100644 new mode 100755 index 260d33f4e..d7bb666d8 --- a/Foundation/include/Poco/DynamicFactory.h +++ b/Foundation/include/Poco/DynamicFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/DynamicStruct.h b/Foundation/include/Poco/DynamicStruct.h old mode 100644 new mode 100755 index 00d3e221d..b858a3c0a --- a/Foundation/include/Poco/DynamicStruct.h +++ b/Foundation/include/Poco/DynamicStruct.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Environment.h b/Foundation/include/Poco/Environment.h old mode 100644 new mode 100755 index ceb51d971..b944d52e8 --- a/Foundation/include/Poco/Environment.h +++ b/Foundation/include/Poco/Environment.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Environment_UNIX.h b/Foundation/include/Poco/Environment_UNIX.h old mode 100644 new mode 100755 index 71057c4ad..52376e7a4 --- a/Foundation/include/Poco/Environment_UNIX.h +++ b/Foundation/include/Poco/Environment_UNIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Environment_VMS.h b/Foundation/include/Poco/Environment_VMS.h old mode 100644 new mode 100755 index c3dbe966f..623da0a74 --- a/Foundation/include/Poco/Environment_VMS.h +++ b/Foundation/include/Poco/Environment_VMS.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Environment_VX.h b/Foundation/include/Poco/Environment_VX.h old mode 100644 new mode 100755 index 829d16e93..3b5797936 --- a/Foundation/include/Poco/Environment_VX.h +++ b/Foundation/include/Poco/Environment_VX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Environment_WIN32.h b/Foundation/include/Poco/Environment_WIN32.h old mode 100644 new mode 100755 index e2d6712da..c82e51959 --- a/Foundation/include/Poco/Environment_WIN32.h +++ b/Foundation/include/Poco/Environment_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Environment_WIN32U.h b/Foundation/include/Poco/Environment_WIN32U.h old mode 100644 new mode 100755 index 1f7a73de3..feb3c521c --- a/Foundation/include/Poco/Environment_WIN32U.h +++ b/Foundation/include/Poco/Environment_WIN32U.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Environment_WINCE.h b/Foundation/include/Poco/Environment_WINCE.h old mode 100644 new mode 100755 index 1310479d0..1e3219e8a --- a/Foundation/include/Poco/Environment_WINCE.h +++ b/Foundation/include/Poco/Environment_WINCE.h @@ -12,27 +12,7 @@ // Copyright (c) 2009-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Error.h b/Foundation/include/Poco/Error.h old mode 100644 new mode 100755 index c87e41d79..1270fc835 --- a/Foundation/include/Poco/Error.h +++ b/Foundation/include/Poco/Error.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ErrorHandler.h b/Foundation/include/Poco/ErrorHandler.h old mode 100644 new mode 100755 index 6326c331c..870535f73 --- a/Foundation/include/Poco/ErrorHandler.h +++ b/Foundation/include/Poco/ErrorHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Event.h b/Foundation/include/Poco/Event.h old mode 100644 new mode 100755 index ae56bbd21..dcb9e53de --- a/Foundation/include/Poco/Event.h +++ b/Foundation/include/Poco/Event.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/EventArgs.h b/Foundation/include/Poco/EventArgs.h old mode 100644 new mode 100755 index 0ba9c3acb..a261cc085 --- a/Foundation/include/Poco/EventArgs.h +++ b/Foundation/include/Poco/EventArgs.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/EventLogChannel.h b/Foundation/include/Poco/EventLogChannel.h old mode 100644 new mode 100755 index d80efa6db..fbc81c7ad --- a/Foundation/include/Poco/EventLogChannel.h +++ b/Foundation/include/Poco/EventLogChannel.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Event_POSIX.h b/Foundation/include/Poco/Event_POSIX.h old mode 100644 new mode 100755 index cf94d2441..1ebd2aa21 --- a/Foundation/include/Poco/Event_POSIX.h +++ b/Foundation/include/Poco/Event_POSIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Event_VX.h b/Foundation/include/Poco/Event_VX.h old mode 100644 new mode 100755 index 5cfc62155..f1bf90487 --- a/Foundation/include/Poco/Event_VX.h +++ b/Foundation/include/Poco/Event_VX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Event_WIN32.h b/Foundation/include/Poco/Event_WIN32.h old mode 100644 new mode 100755 index 79916aff7..94f03d2ba --- a/Foundation/include/Poco/Event_WIN32.h +++ b/Foundation/include/Poco/Event_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Exception.h b/Foundation/include/Poco/Exception.h old mode 100644 new mode 100755 index fa022f747..bb2125957 --- a/Foundation/include/Poco/Exception.h +++ b/Foundation/include/Poco/Exception.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ExpirationDecorator.h b/Foundation/include/Poco/ExpirationDecorator.h old mode 100644 new mode 100755 index 0fe5f9556..4743c9a60 --- a/Foundation/include/Poco/ExpirationDecorator.h +++ b/Foundation/include/Poco/ExpirationDecorator.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Expire.h b/Foundation/include/Poco/Expire.h old mode 100644 new mode 100755 index 5ab028ad5..1bfa44676 --- a/Foundation/include/Poco/Expire.h +++ b/Foundation/include/Poco/Expire.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ExpireCache.h b/Foundation/include/Poco/ExpireCache.h old mode 100644 new mode 100755 index 9aee588f2..b0c7be4e1 --- a/Foundation/include/Poco/ExpireCache.h +++ b/Foundation/include/Poco/ExpireCache.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ExpireLRUCache.h b/Foundation/include/Poco/ExpireLRUCache.h old mode 100644 new mode 100755 index eb7400781..c76fe8e8b --- a/Foundation/include/Poco/ExpireLRUCache.h +++ b/Foundation/include/Poco/ExpireLRUCache.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ExpireStrategy.h b/Foundation/include/Poco/ExpireStrategy.h old mode 100644 new mode 100755 index 4a5f3ef9b..ee2101a7b --- a/Foundation/include/Poco/ExpireStrategy.h +++ b/Foundation/include/Poco/ExpireStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FIFOBuffer.h b/Foundation/include/Poco/FIFOBuffer.h old mode 100644 new mode 100755 index 57e6ca0df..6c7e04224 --- a/Foundation/include/Poco/FIFOBuffer.h +++ b/Foundation/include/Poco/FIFOBuffer.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FIFOBufferStream.h b/Foundation/include/Poco/FIFOBufferStream.h old mode 100644 new mode 100755 index b75c86537..b98ddc016 --- a/Foundation/include/Poco/FIFOBufferStream.h +++ b/Foundation/include/Poco/FIFOBufferStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FIFOEvent.h b/Foundation/include/Poco/FIFOEvent.h old mode 100644 new mode 100755 index c3a223c5e..91dc52bff --- a/Foundation/include/Poco/FIFOEvent.h +++ b/Foundation/include/Poco/FIFOEvent.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FIFOStrategy.h b/Foundation/include/Poco/FIFOStrategy.h old mode 100644 new mode 100755 index e4d7286ba..fd5fe76ab --- a/Foundation/include/Poco/FIFOStrategy.h +++ b/Foundation/include/Poco/FIFOStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FPEnvironment.h b/Foundation/include/Poco/FPEnvironment.h old mode 100644 new mode 100755 index e9660b73a..7b9cb3fb5 --- a/Foundation/include/Poco/FPEnvironment.h +++ b/Foundation/include/Poco/FPEnvironment.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FPEnvironment_C99.h b/Foundation/include/Poco/FPEnvironment_C99.h old mode 100644 new mode 100755 index aa971e476..3dbe70396 --- a/Foundation/include/Poco/FPEnvironment_C99.h +++ b/Foundation/include/Poco/FPEnvironment_C99.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FPEnvironment_DEC.h b/Foundation/include/Poco/FPEnvironment_DEC.h old mode 100644 new mode 100755 index f8c815337..f9075c279 --- a/Foundation/include/Poco/FPEnvironment_DEC.h +++ b/Foundation/include/Poco/FPEnvironment_DEC.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FPEnvironment_DUMMY.h b/Foundation/include/Poco/FPEnvironment_DUMMY.h old mode 100644 new mode 100755 index b8766d6ea..3f9b0688b --- a/Foundation/include/Poco/FPEnvironment_DUMMY.h +++ b/Foundation/include/Poco/FPEnvironment_DUMMY.h @@ -13,27 +13,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FPEnvironment_SUN.h b/Foundation/include/Poco/FPEnvironment_SUN.h old mode 100644 new mode 100755 index 4513d16f5..c651fa628 --- a/Foundation/include/Poco/FPEnvironment_SUN.h +++ b/Foundation/include/Poco/FPEnvironment_SUN.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FPEnvironment_WIN32.h b/Foundation/include/Poco/FPEnvironment_WIN32.h old mode 100644 new mode 100755 index 4536dcdd7..33310289b --- a/Foundation/include/Poco/FPEnvironment_WIN32.h +++ b/Foundation/include/Poco/FPEnvironment_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/File.h b/Foundation/include/Poco/File.h old mode 100644 new mode 100755 index e5d48dabb..4dc6d775c --- a/Foundation/include/Poco/File.h +++ b/Foundation/include/Poco/File.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FileChannel.h b/Foundation/include/Poco/FileChannel.h old mode 100644 new mode 100755 index 47953f01a..374c622a3 --- a/Foundation/include/Poco/FileChannel.h +++ b/Foundation/include/Poco/FileChannel.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FileStream.h b/Foundation/include/Poco/FileStream.h old mode 100644 new mode 100755 index 3ccde04c4..26aad367b --- a/Foundation/include/Poco/FileStream.h +++ b/Foundation/include/Poco/FileStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FileStreamFactory.h b/Foundation/include/Poco/FileStreamFactory.h old mode 100644 new mode 100755 index c55bc9f09..8bfbbaa6d --- a/Foundation/include/Poco/FileStreamFactory.h +++ b/Foundation/include/Poco/FileStreamFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FileStream_POSIX.h b/Foundation/include/Poco/FileStream_POSIX.h old mode 100644 new mode 100755 index e17ee967e..8bdcaf200 --- a/Foundation/include/Poco/FileStream_POSIX.h +++ b/Foundation/include/Poco/FileStream_POSIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FileStream_WIN32.h b/Foundation/include/Poco/FileStream_WIN32.h old mode 100644 new mode 100755 index 8e5da49ab..9c3c39c3c --- a/Foundation/include/Poco/FileStream_WIN32.h +++ b/Foundation/include/Poco/FileStream_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/File_UNIX.h b/Foundation/include/Poco/File_UNIX.h old mode 100644 new mode 100755 index d4ca779b2..06a64d07b --- a/Foundation/include/Poco/File_UNIX.h +++ b/Foundation/include/Poco/File_UNIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/File_VMS.h b/Foundation/include/Poco/File_VMS.h old mode 100644 new mode 100755 index 1b3547590..2e8395a1b --- a/Foundation/include/Poco/File_VMS.h +++ b/Foundation/include/Poco/File_VMS.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/File_VX.h b/Foundation/include/Poco/File_VX.h old mode 100644 new mode 100755 index ead7ac8ab..a6470edc6 --- a/Foundation/include/Poco/File_VX.h +++ b/Foundation/include/Poco/File_VX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/File_WIN32.h b/Foundation/include/Poco/File_WIN32.h old mode 100644 new mode 100755 index 58fde87dd..2f06683c2 --- a/Foundation/include/Poco/File_WIN32.h +++ b/Foundation/include/Poco/File_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/File_WIN32U.h b/Foundation/include/Poco/File_WIN32U.h old mode 100644 new mode 100755 index fdc5c3239..387751b4b --- a/Foundation/include/Poco/File_WIN32U.h +++ b/Foundation/include/Poco/File_WIN32U.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/File_WINCE.h b/Foundation/include/Poco/File_WINCE.h old mode 100644 new mode 100755 index 6235818bf..05f75e2a8 --- a/Foundation/include/Poco/File_WINCE.h +++ b/Foundation/include/Poco/File_WINCE.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Format.h b/Foundation/include/Poco/Format.h old mode 100644 new mode 100755 index f53d0fabc..995fcb5da --- a/Foundation/include/Poco/Format.h +++ b/Foundation/include/Poco/Format.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Formatter.h b/Foundation/include/Poco/Formatter.h old mode 100644 new mode 100755 index 5f78e9220..752a374eb --- a/Foundation/include/Poco/Formatter.h +++ b/Foundation/include/Poco/Formatter.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FormattingChannel.h b/Foundation/include/Poco/FormattingChannel.h old mode 100644 new mode 100755 index dd5b32fcb..297bf0f80 --- a/Foundation/include/Poco/FormattingChannel.h +++ b/Foundation/include/Poco/FormattingChannel.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Foundation.h b/Foundation/include/Poco/Foundation.h old mode 100644 new mode 100755 index d2fd0df92..e76c5fc1f --- a/Foundation/include/Poco/Foundation.h +++ b/Foundation/include/Poco/Foundation.h @@ -14,27 +14,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FunctionDelegate.h b/Foundation/include/Poco/FunctionDelegate.h old mode 100644 new mode 100755 index eadf020ea..8d68113b2 --- a/Foundation/include/Poco/FunctionDelegate.h +++ b/Foundation/include/Poco/FunctionDelegate.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/FunctionPriorityDelegate.h b/Foundation/include/Poco/FunctionPriorityDelegate.h old mode 100644 new mode 100755 index 7febeced4..9213eab84 --- a/Foundation/include/Poco/FunctionPriorityDelegate.h +++ b/Foundation/include/Poco/FunctionPriorityDelegate.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Glob.h b/Foundation/include/Poco/Glob.h old mode 100644 new mode 100755 index 3a83ece30..58908db0d --- a/Foundation/include/Poco/Glob.h +++ b/Foundation/include/Poco/Glob.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/HMACEngine.h b/Foundation/include/Poco/HMACEngine.h old mode 100644 new mode 100755 index 7bd59898a..5ca944033 --- a/Foundation/include/Poco/HMACEngine.h +++ b/Foundation/include/Poco/HMACEngine.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Hash.h b/Foundation/include/Poco/Hash.h old mode 100644 new mode 100755 index df6fc9cbb..b3f93fe88 --- a/Foundation/include/Poco/Hash.h +++ b/Foundation/include/Poco/Hash.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/HashFunction.h b/Foundation/include/Poco/HashFunction.h old mode 100644 new mode 100755 index 1a4ae786f..59bfa3339 --- a/Foundation/include/Poco/HashFunction.h +++ b/Foundation/include/Poco/HashFunction.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/HashMap.h b/Foundation/include/Poco/HashMap.h old mode 100644 new mode 100755 index 65cd15443..cc630cb28 --- a/Foundation/include/Poco/HashMap.h +++ b/Foundation/include/Poco/HashMap.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/HashSet.h b/Foundation/include/Poco/HashSet.h old mode 100644 new mode 100755 index 211c00489..8e14ebac4 --- a/Foundation/include/Poco/HashSet.h +++ b/Foundation/include/Poco/HashSet.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/HashStatistic.h b/Foundation/include/Poco/HashStatistic.h old mode 100644 new mode 100755 index 95a2c4c31..0af6462b8 --- a/Foundation/include/Poco/HashStatistic.h +++ b/Foundation/include/Poco/HashStatistic.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/HashTable.h b/Foundation/include/Poco/HashTable.h old mode 100644 new mode 100755 index 872e3fcbb..f21cd0f78 --- a/Foundation/include/Poco/HashTable.h +++ b/Foundation/include/Poco/HashTable.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/HexBinaryDecoder.h b/Foundation/include/Poco/HexBinaryDecoder.h old mode 100644 new mode 100755 index 0ae2f4b5e..56629b96b --- a/Foundation/include/Poco/HexBinaryDecoder.h +++ b/Foundation/include/Poco/HexBinaryDecoder.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/HexBinaryEncoder.h b/Foundation/include/Poco/HexBinaryEncoder.h old mode 100644 new mode 100755 index d6f39eb02..46637e797 --- a/Foundation/include/Poco/HexBinaryEncoder.h +++ b/Foundation/include/Poco/HexBinaryEncoder.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/InflatingStream.h b/Foundation/include/Poco/InflatingStream.h old mode 100644 new mode 100755 index 58e0a92bb..960ccf3fe --- a/Foundation/include/Poco/InflatingStream.h +++ b/Foundation/include/Poco/InflatingStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Instantiator.h b/Foundation/include/Poco/Instantiator.h old mode 100644 new mode 100755 index 8d49b0c9c..2b7440672 --- a/Foundation/include/Poco/Instantiator.h +++ b/Foundation/include/Poco/Instantiator.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/KeyValueArgs.h b/Foundation/include/Poco/KeyValueArgs.h old mode 100644 new mode 100755 index 4b9eda328..24fae7dc7 --- a/Foundation/include/Poco/KeyValueArgs.h +++ b/Foundation/include/Poco/KeyValueArgs.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/LRUCache.h b/Foundation/include/Poco/LRUCache.h old mode 100644 new mode 100755 index f358c6078..da8ff6e6a --- a/Foundation/include/Poco/LRUCache.h +++ b/Foundation/include/Poco/LRUCache.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/LRUStrategy.h b/Foundation/include/Poco/LRUStrategy.h old mode 100644 new mode 100755 index 7b70398e4..8031b28a9 --- a/Foundation/include/Poco/LRUStrategy.h +++ b/Foundation/include/Poco/LRUStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Latin1Encoding.h b/Foundation/include/Poco/Latin1Encoding.h old mode 100644 new mode 100755 index cbb02ff17..4b315fc2a --- a/Foundation/include/Poco/Latin1Encoding.h +++ b/Foundation/include/Poco/Latin1Encoding.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Latin2Encoding.h b/Foundation/include/Poco/Latin2Encoding.h old mode 100644 new mode 100755 index 61470d604..982f12175 --- a/Foundation/include/Poco/Latin2Encoding.h +++ b/Foundation/include/Poco/Latin2Encoding.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Latin9Encoding.h b/Foundation/include/Poco/Latin9Encoding.h old mode 100644 new mode 100755 index 728ae64d4..2a834d6be --- a/Foundation/include/Poco/Latin9Encoding.h +++ b/Foundation/include/Poco/Latin9Encoding.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/LineEndingConverter.h b/Foundation/include/Poco/LineEndingConverter.h old mode 100644 new mode 100755 index fd5c49b5c..5bd5f9668 --- a/Foundation/include/Poco/LineEndingConverter.h +++ b/Foundation/include/Poco/LineEndingConverter.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/LinearHashTable.h b/Foundation/include/Poco/LinearHashTable.h old mode 100644 new mode 100755 index f0da85d7b..1bc1b9483 --- a/Foundation/include/Poco/LinearHashTable.h +++ b/Foundation/include/Poco/LinearHashTable.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ListMap.h b/Foundation/include/Poco/ListMap.h old mode 100644 new mode 100755 index 4c8fddea7..fc6c3884c --- a/Foundation/include/Poco/ListMap.h +++ b/Foundation/include/Poco/ListMap.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/LocalDateTime.h b/Foundation/include/Poco/LocalDateTime.h old mode 100644 new mode 100755 index b8840d613..72ac4869e --- a/Foundation/include/Poco/LocalDateTime.h +++ b/Foundation/include/Poco/LocalDateTime.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/LogFile.h b/Foundation/include/Poco/LogFile.h old mode 100644 new mode 100755 index 7b0285b36..5a2a37027 --- a/Foundation/include/Poco/LogFile.h +++ b/Foundation/include/Poco/LogFile.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/LogFile_STD.h b/Foundation/include/Poco/LogFile_STD.h old mode 100644 new mode 100755 index bd9b7829c..4468bbd05 --- a/Foundation/include/Poco/LogFile_STD.h +++ b/Foundation/include/Poco/LogFile_STD.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/LogFile_VMS.h b/Foundation/include/Poco/LogFile_VMS.h old mode 100644 new mode 100755 index ae54ec02b..150879688 --- a/Foundation/include/Poco/LogFile_VMS.h +++ b/Foundation/include/Poco/LogFile_VMS.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/LogFile_WIN32.h b/Foundation/include/Poco/LogFile_WIN32.h old mode 100644 new mode 100755 index 6dcfeeab9..16c5c8e28 --- a/Foundation/include/Poco/LogFile_WIN32.h +++ b/Foundation/include/Poco/LogFile_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/LogFile_WIN32U.h b/Foundation/include/Poco/LogFile_WIN32U.h old mode 100644 new mode 100755 index c743a3a5d..edf8f98f0 --- a/Foundation/include/Poco/LogFile_WIN32U.h +++ b/Foundation/include/Poco/LogFile_WIN32U.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/LogStream.h b/Foundation/include/Poco/LogStream.h old mode 100644 new mode 100755 index bea9cb2ff..0ae5c252c --- a/Foundation/include/Poco/LogStream.h +++ b/Foundation/include/Poco/LogStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Logger.h b/Foundation/include/Poco/Logger.h old mode 100644 new mode 100755 index cf57b026b..e2e53e9d5 --- a/Foundation/include/Poco/Logger.h +++ b/Foundation/include/Poco/Logger.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/LoggingFactory.h b/Foundation/include/Poco/LoggingFactory.h old mode 100644 new mode 100755 index 62ee6e1f1..5d17a4ee6 --- a/Foundation/include/Poco/LoggingFactory.h +++ b/Foundation/include/Poco/LoggingFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/LoggingRegistry.h b/Foundation/include/Poco/LoggingRegistry.h old mode 100644 new mode 100755 index febb59651..7abe83c31 --- a/Foundation/include/Poco/LoggingRegistry.h +++ b/Foundation/include/Poco/LoggingRegistry.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/MD4Engine.h b/Foundation/include/Poco/MD4Engine.h old mode 100644 new mode 100755 index f522270ed..819e09899 --- a/Foundation/include/Poco/MD4Engine.h +++ b/Foundation/include/Poco/MD4Engine.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // // // MD4 (RFC 1320) algorithm: diff --git a/Foundation/include/Poco/MD5Engine.h b/Foundation/include/Poco/MD5Engine.h old mode 100644 new mode 100755 index 40bf217c8..cd925d039 --- a/Foundation/include/Poco/MD5Engine.h +++ b/Foundation/include/Poco/MD5Engine.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // // // MD5 (RFC 1321) algorithm: diff --git a/Foundation/include/Poco/Manifest.h b/Foundation/include/Poco/Manifest.h old mode 100644 new mode 100755 index 08d685d4d..f3adcb36f --- a/Foundation/include/Poco/Manifest.h +++ b/Foundation/include/Poco/Manifest.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/MemoryPool.h b/Foundation/include/Poco/MemoryPool.h old mode 100644 new mode 100755 index d4403168c..048c9e199 --- a/Foundation/include/Poco/MemoryPool.h +++ b/Foundation/include/Poco/MemoryPool.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/MemoryStream.h b/Foundation/include/Poco/MemoryStream.h old mode 100644 new mode 100755 index bb1834a3f..361dbdde2 --- a/Foundation/include/Poco/MemoryStream.h +++ b/Foundation/include/Poco/MemoryStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Message.h b/Foundation/include/Poco/Message.h old mode 100644 new mode 100755 index fafb25efe..7337ed651 --- a/Foundation/include/Poco/Message.h +++ b/Foundation/include/Poco/Message.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/MetaObject.h b/Foundation/include/Poco/MetaObject.h old mode 100644 new mode 100755 index f24ee5c57..e578c6df3 --- a/Foundation/include/Poco/MetaObject.h +++ b/Foundation/include/Poco/MetaObject.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/MetaProgramming.h b/Foundation/include/Poco/MetaProgramming.h old mode 100644 new mode 100755 index cdd3df919..cc89ba872 --- a/Foundation/include/Poco/MetaProgramming.h +++ b/Foundation/include/Poco/MetaProgramming.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Mutex.h b/Foundation/include/Poco/Mutex.h old mode 100644 new mode 100755 index 9a995dc80..fd23b1991 --- a/Foundation/include/Poco/Mutex.h +++ b/Foundation/include/Poco/Mutex.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Mutex_POSIX.h b/Foundation/include/Poco/Mutex_POSIX.h old mode 100644 new mode 100755 index 23e4682ab..82d44dd2e --- a/Foundation/include/Poco/Mutex_POSIX.h +++ b/Foundation/include/Poco/Mutex_POSIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Mutex_VX.h b/Foundation/include/Poco/Mutex_VX.h old mode 100644 new mode 100755 index 41d6c898a..96a65af21 --- a/Foundation/include/Poco/Mutex_VX.h +++ b/Foundation/include/Poco/Mutex_VX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Mutex_WIN32.h b/Foundation/include/Poco/Mutex_WIN32.h old mode 100644 new mode 100755 index 9d137af7d..110fcf4b7 --- a/Foundation/include/Poco/Mutex_WIN32.h +++ b/Foundation/include/Poco/Mutex_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Mutex_WINCE.h b/Foundation/include/Poco/Mutex_WINCE.h old mode 100644 new mode 100755 index 744be989c..17233efbd --- a/Foundation/include/Poco/Mutex_WINCE.h +++ b/Foundation/include/Poco/Mutex_WINCE.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NObserver.h b/Foundation/include/Poco/NObserver.h old mode 100644 new mode 100755 index 06ba9e2e7..c7036f8f9 --- a/Foundation/include/Poco/NObserver.h +++ b/Foundation/include/Poco/NObserver.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NamedEvent.h b/Foundation/include/Poco/NamedEvent.h old mode 100644 new mode 100755 index c0225db11..cfc7be478 --- a/Foundation/include/Poco/NamedEvent.h +++ b/Foundation/include/Poco/NamedEvent.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NamedEvent_Android.h b/Foundation/include/Poco/NamedEvent_Android.h old mode 100644 new mode 100755 index 05cfe2342..43cc6ace6 --- a/Foundation/include/Poco/NamedEvent_Android.h +++ b/Foundation/include/Poco/NamedEvent_Android.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NamedEvent_UNIX.h b/Foundation/include/Poco/NamedEvent_UNIX.h old mode 100644 new mode 100755 index 1f53a5127..63dabcad3 --- a/Foundation/include/Poco/NamedEvent_UNIX.h +++ b/Foundation/include/Poco/NamedEvent_UNIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NamedEvent_VMS.h b/Foundation/include/Poco/NamedEvent_VMS.h old mode 100644 new mode 100755 index 09d196569..7aa29381d --- a/Foundation/include/Poco/NamedEvent_VMS.h +++ b/Foundation/include/Poco/NamedEvent_VMS.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NamedEvent_WIN32.h b/Foundation/include/Poco/NamedEvent_WIN32.h old mode 100644 new mode 100755 index d5d6f5a12..c9b43ef36 --- a/Foundation/include/Poco/NamedEvent_WIN32.h +++ b/Foundation/include/Poco/NamedEvent_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NamedEvent_WIN32U.h b/Foundation/include/Poco/NamedEvent_WIN32U.h old mode 100644 new mode 100755 index aff366cb6..64f991bbe --- a/Foundation/include/Poco/NamedEvent_WIN32U.h +++ b/Foundation/include/Poco/NamedEvent_WIN32U.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NamedMutex.h b/Foundation/include/Poco/NamedMutex.h old mode 100644 new mode 100755 index 95f383a65..87487b4b6 --- a/Foundation/include/Poco/NamedMutex.h +++ b/Foundation/include/Poco/NamedMutex.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NamedMutex_Android.h b/Foundation/include/Poco/NamedMutex_Android.h old mode 100644 new mode 100755 index f0bbf516e..bfc01388a --- a/Foundation/include/Poco/NamedMutex_Android.h +++ b/Foundation/include/Poco/NamedMutex_Android.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NamedMutex_UNIX.h b/Foundation/include/Poco/NamedMutex_UNIX.h old mode 100644 new mode 100755 index 6bfe2f5e0..631231867 --- a/Foundation/include/Poco/NamedMutex_UNIX.h +++ b/Foundation/include/Poco/NamedMutex_UNIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NamedMutex_VMS.h b/Foundation/include/Poco/NamedMutex_VMS.h old mode 100644 new mode 100755 index 1ae70fd21..cd25736bc --- a/Foundation/include/Poco/NamedMutex_VMS.h +++ b/Foundation/include/Poco/NamedMutex_VMS.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NamedMutex_WIN32.h b/Foundation/include/Poco/NamedMutex_WIN32.h old mode 100644 new mode 100755 index b35219807..2a5cf955c --- a/Foundation/include/Poco/NamedMutex_WIN32.h +++ b/Foundation/include/Poco/NamedMutex_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NamedMutex_WIN32U.h b/Foundation/include/Poco/NamedMutex_WIN32U.h old mode 100644 new mode 100755 index bae45f991..91de335fa --- a/Foundation/include/Poco/NamedMutex_WIN32U.h +++ b/Foundation/include/Poco/NamedMutex_WIN32U.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NamedTuple.h b/Foundation/include/Poco/NamedTuple.h old mode 100644 new mode 100755 index da9513c2a..b4a9a5813 --- a/Foundation/include/Poco/NamedTuple.h +++ b/Foundation/include/Poco/NamedTuple.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NestedDiagnosticContext.h b/Foundation/include/Poco/NestedDiagnosticContext.h old mode 100644 new mode 100755 index 6c530b3f6..b62403c39 --- a/Foundation/include/Poco/NestedDiagnosticContext.h +++ b/Foundation/include/Poco/NestedDiagnosticContext.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Notification.h b/Foundation/include/Poco/Notification.h old mode 100644 new mode 100755 index 92a002e0b..7446add54 --- a/Foundation/include/Poco/Notification.h +++ b/Foundation/include/Poco/Notification.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NotificationCenter.h b/Foundation/include/Poco/NotificationCenter.h old mode 100644 new mode 100755 index d4eeb01f6..9aa9221fa --- a/Foundation/include/Poco/NotificationCenter.h +++ b/Foundation/include/Poco/NotificationCenter.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NotificationQueue.h b/Foundation/include/Poco/NotificationQueue.h old mode 100644 new mode 100755 index 3ff497234..e589043ba --- a/Foundation/include/Poco/NotificationQueue.h +++ b/Foundation/include/Poco/NotificationQueue.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NotificationStrategy.h b/Foundation/include/Poco/NotificationStrategy.h old mode 100644 new mode 100755 index f6555cefb..e49a28c34 --- a/Foundation/include/Poco/NotificationStrategy.h +++ b/Foundation/include/Poco/NotificationStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NullChannel.h b/Foundation/include/Poco/NullChannel.h old mode 100644 new mode 100755 index 0de520db8..0eddd6b99 --- a/Foundation/include/Poco/NullChannel.h +++ b/Foundation/include/Poco/NullChannel.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NullStream.h b/Foundation/include/Poco/NullStream.h old mode 100644 new mode 100755 index 487dcb4e0..2e8efd3c7 --- a/Foundation/include/Poco/NullStream.h +++ b/Foundation/include/Poco/NullStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Nullable.h b/Foundation/include/Poco/Nullable.h old mode 100644 new mode 100755 index d24069aa6..78c8ccb65 --- a/Foundation/include/Poco/Nullable.h +++ b/Foundation/include/Poco/Nullable.h @@ -12,27 +12,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NumberFormatter.h b/Foundation/include/Poco/NumberFormatter.h old mode 100644 new mode 100755 index cc77e3bab..819f4515c --- a/Foundation/include/Poco/NumberFormatter.h +++ b/Foundation/include/Poco/NumberFormatter.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NumberParser.h b/Foundation/include/Poco/NumberParser.h old mode 100644 new mode 100755 index f003a50c2..51b757553 --- a/Foundation/include/Poco/NumberParser.h +++ b/Foundation/include/Poco/NumberParser.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/NumericString.h b/Foundation/include/Poco/NumericString.h old mode 100644 new mode 100755 index 4bb7dca35..0c6721e42 --- a/Foundation/include/Poco/NumericString.h +++ b/Foundation/include/Poco/NumericString.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ObjectPool.h b/Foundation/include/Poco/ObjectPool.h old mode 100644 new mode 100755 index f41f65ac8..005412b11 --- a/Foundation/include/Poco/ObjectPool.h +++ b/Foundation/include/Poco/ObjectPool.h @@ -12,27 +12,7 @@ // Copyright (c) 2010-2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Observer.h b/Foundation/include/Poco/Observer.h old mode 100644 new mode 100755 index 91db94531..8436bec0e --- a/Foundation/include/Poco/Observer.h +++ b/Foundation/include/Poco/Observer.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/OpcomChannel.h b/Foundation/include/Poco/OpcomChannel.h old mode 100644 new mode 100755 index f1f4ea040..db98b2eb5 --- a/Foundation/include/Poco/OpcomChannel.h +++ b/Foundation/include/Poco/OpcomChannel.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Optional.h b/Foundation/include/Poco/Optional.h old mode 100644 new mode 100755 index d13af20a1..48cc62e30 --- a/Foundation/include/Poco/Optional.h +++ b/Foundation/include/Poco/Optional.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/PBKDF2Engine.h b/Foundation/include/Poco/PBKDF2Engine.h old mode 100644 new mode 100755 index 2a665fd4b..59a10087f --- a/Foundation/include/Poco/PBKDF2Engine.h +++ b/Foundation/include/Poco/PBKDF2Engine.h @@ -12,27 +12,7 @@ // Copyright (c) 2014, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Path.h b/Foundation/include/Poco/Path.h old mode 100644 new mode 100755 index 49483f85e..5e6f5a0be --- a/Foundation/include/Poco/Path.h +++ b/Foundation/include/Poco/Path.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Path_UNIX.h b/Foundation/include/Poco/Path_UNIX.h old mode 100644 new mode 100755 index d591164cf..89cd14847 --- a/Foundation/include/Poco/Path_UNIX.h +++ b/Foundation/include/Poco/Path_UNIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Path_VMS.h b/Foundation/include/Poco/Path_VMS.h old mode 100644 new mode 100755 index d0907eb39..fa8134d60 --- a/Foundation/include/Poco/Path_VMS.h +++ b/Foundation/include/Poco/Path_VMS.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Path_WIN32.h b/Foundation/include/Poco/Path_WIN32.h old mode 100644 new mode 100755 index 066c64a1d..f609fff9c --- a/Foundation/include/Poco/Path_WIN32.h +++ b/Foundation/include/Poco/Path_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Path_WIN32U.h b/Foundation/include/Poco/Path_WIN32U.h old mode 100644 new mode 100755 index f12c71894..eca10e52f --- a/Foundation/include/Poco/Path_WIN32U.h +++ b/Foundation/include/Poco/Path_WIN32U.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Path_WINCE.h b/Foundation/include/Poco/Path_WINCE.h old mode 100644 new mode 100755 index dc3a12647..612c583bd --- a/Foundation/include/Poco/Path_WINCE.h +++ b/Foundation/include/Poco/Path_WINCE.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/PatternFormatter.h b/Foundation/include/Poco/PatternFormatter.h old mode 100644 new mode 100755 index 6f7e75c11..4fbe803e6 --- a/Foundation/include/Poco/PatternFormatter.h +++ b/Foundation/include/Poco/PatternFormatter.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Pipe.h b/Foundation/include/Poco/Pipe.h old mode 100644 new mode 100755 index 67fd97705..d5ceb5536 --- a/Foundation/include/Poco/Pipe.h +++ b/Foundation/include/Poco/Pipe.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/PipeImpl.h b/Foundation/include/Poco/PipeImpl.h old mode 100644 new mode 100755 index bd6be74e8..b767d27cb --- a/Foundation/include/Poco/PipeImpl.h +++ b/Foundation/include/Poco/PipeImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/PipeImpl_DUMMY.h b/Foundation/include/Poco/PipeImpl_DUMMY.h old mode 100644 new mode 100755 index aeeafb23e..5e955d785 --- a/Foundation/include/Poco/PipeImpl_DUMMY.h +++ b/Foundation/include/Poco/PipeImpl_DUMMY.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/PipeImpl_POSIX.h b/Foundation/include/Poco/PipeImpl_POSIX.h old mode 100644 new mode 100755 index 2ad6625f7..19b5b1af3 --- a/Foundation/include/Poco/PipeImpl_POSIX.h +++ b/Foundation/include/Poco/PipeImpl_POSIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/PipeImpl_WIN32.h b/Foundation/include/Poco/PipeImpl_WIN32.h old mode 100644 new mode 100755 index 74e90161d..30bec7693 --- a/Foundation/include/Poco/PipeImpl_WIN32.h +++ b/Foundation/include/Poco/PipeImpl_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/PipeStream.h b/Foundation/include/Poco/PipeStream.h old mode 100644 new mode 100755 index 9e1fb18b0..ebe364fff --- a/Foundation/include/Poco/PipeStream.h +++ b/Foundation/include/Poco/PipeStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Platform.h b/Foundation/include/Poco/Platform.h old mode 100644 new mode 100755 index 7d1352893..497ca89e1 --- a/Foundation/include/Poco/Platform.h +++ b/Foundation/include/Poco/Platform.h @@ -15,27 +15,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Platform_POSIX.h b/Foundation/include/Poco/Platform_POSIX.h old mode 100644 new mode 100755 index b17f040e7..44841e926 --- a/Foundation/include/Poco/Platform_POSIX.h +++ b/Foundation/include/Poco/Platform_POSIX.h @@ -13,27 +13,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Platform_VMS.h b/Foundation/include/Poco/Platform_VMS.h old mode 100644 new mode 100755 index c304abd2c..f0c8e16aa --- a/Foundation/include/Poco/Platform_VMS.h +++ b/Foundation/include/Poco/Platform_VMS.h @@ -13,27 +13,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Platform_VX.h b/Foundation/include/Poco/Platform_VX.h old mode 100644 new mode 100755 index 182cb3e24..b2445e814 --- a/Foundation/include/Poco/Platform_VX.h +++ b/Foundation/include/Poco/Platform_VX.h @@ -13,27 +13,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Platform_WIN32.h b/Foundation/include/Poco/Platform_WIN32.h old mode 100644 new mode 100755 index bcf5301da..752b25225 --- a/Foundation/include/Poco/Platform_WIN32.h +++ b/Foundation/include/Poco/Platform_WIN32.h @@ -13,27 +13,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Poco.h b/Foundation/include/Poco/Poco.h old mode 100644 new mode 100755 index 4ec6db6b8..fe6127777 --- a/Foundation/include/Poco/Poco.h +++ b/Foundation/include/Poco/Poco.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/PriorityDelegate.h b/Foundation/include/Poco/PriorityDelegate.h old mode 100644 new mode 100755 index 2b3a3ebf2..f7d5a61e3 --- a/Foundation/include/Poco/PriorityDelegate.h +++ b/Foundation/include/Poco/PriorityDelegate.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/PriorityEvent.h b/Foundation/include/Poco/PriorityEvent.h old mode 100644 new mode 100755 index 6da58058a..c3631309a --- a/Foundation/include/Poco/PriorityEvent.h +++ b/Foundation/include/Poco/PriorityEvent.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/PriorityExpire.h b/Foundation/include/Poco/PriorityExpire.h old mode 100644 new mode 100755 index 4e8f0ebdc..c719547ad --- a/Foundation/include/Poco/PriorityExpire.h +++ b/Foundation/include/Poco/PriorityExpire.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/PriorityNotificationQueue.h b/Foundation/include/Poco/PriorityNotificationQueue.h old mode 100644 new mode 100755 index ff7271bdd..ca931422c --- a/Foundation/include/Poco/PriorityNotificationQueue.h +++ b/Foundation/include/Poco/PriorityNotificationQueue.h @@ -12,27 +12,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/PriorityStrategy.h b/Foundation/include/Poco/PriorityStrategy.h old mode 100644 new mode 100755 index 5d5c932e5..8e4a73a5c --- a/Foundation/include/Poco/PriorityStrategy.h +++ b/Foundation/include/Poco/PriorityStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Process.h b/Foundation/include/Poco/Process.h old mode 100644 new mode 100755 index 2a82130fa..e3a9bbbee --- a/Foundation/include/Poco/Process.h +++ b/Foundation/include/Poco/Process.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Process_UNIX.h b/Foundation/include/Poco/Process_UNIX.h old mode 100644 new mode 100755 index ecfa74f55..adcf87eb4 --- a/Foundation/include/Poco/Process_UNIX.h +++ b/Foundation/include/Poco/Process_UNIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Process_VMS.h b/Foundation/include/Poco/Process_VMS.h old mode 100644 new mode 100755 index 668d67d56..74079ae1d --- a/Foundation/include/Poco/Process_VMS.h +++ b/Foundation/include/Poco/Process_VMS.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Process_VX.h b/Foundation/include/Poco/Process_VX.h old mode 100644 new mode 100755 index 767d0535a..14d6ba5d4 --- a/Foundation/include/Poco/Process_VX.h +++ b/Foundation/include/Poco/Process_VX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-20011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Process_WIN32.h b/Foundation/include/Poco/Process_WIN32.h old mode 100644 new mode 100755 index fdc7ab3c8..ed29327e7 --- a/Foundation/include/Poco/Process_WIN32.h +++ b/Foundation/include/Poco/Process_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Process_WIN32U.h b/Foundation/include/Poco/Process_WIN32U.h old mode 100644 new mode 100755 index 0396fa632..f9277d73f --- a/Foundation/include/Poco/Process_WIN32U.h +++ b/Foundation/include/Poco/Process_WIN32U.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Process_WINCE.h b/Foundation/include/Poco/Process_WINCE.h old mode 100644 new mode 100755 index 868cc4d85..a77ddb5ad --- a/Foundation/include/Poco/Process_WINCE.h +++ b/Foundation/include/Poco/Process_WINCE.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/PurgeStrategy.h b/Foundation/include/Poco/PurgeStrategy.h old mode 100644 new mode 100755 index 05889e4df..490fdcf24 --- a/Foundation/include/Poco/PurgeStrategy.h +++ b/Foundation/include/Poco/PurgeStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/RWLock.h b/Foundation/include/Poco/RWLock.h old mode 100644 new mode 100755 index aa5a82684..9739ded5f --- a/Foundation/include/Poco/RWLock.h +++ b/Foundation/include/Poco/RWLock.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/RWLock_Android.h b/Foundation/include/Poco/RWLock_Android.h old mode 100644 new mode 100755 index 9e3096754..6493a4103 --- a/Foundation/include/Poco/RWLock_Android.h +++ b/Foundation/include/Poco/RWLock_Android.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/RWLock_POSIX.h b/Foundation/include/Poco/RWLock_POSIX.h old mode 100644 new mode 100755 index 4e1f92355..a79fc0394 --- a/Foundation/include/Poco/RWLock_POSIX.h +++ b/Foundation/include/Poco/RWLock_POSIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/RWLock_VX.h b/Foundation/include/Poco/RWLock_VX.h old mode 100644 new mode 100755 index 4a7a144fb..741e63ed3 --- a/Foundation/include/Poco/RWLock_VX.h +++ b/Foundation/include/Poco/RWLock_VX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/RWLock_WIN32.h b/Foundation/include/Poco/RWLock_WIN32.h old mode 100644 new mode 100755 index 3586f5c9c..ab88f57cc --- a/Foundation/include/Poco/RWLock_WIN32.h +++ b/Foundation/include/Poco/RWLock_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/RWLock_WINCE.h b/Foundation/include/Poco/RWLock_WINCE.h old mode 100644 new mode 100755 index 679d2c9b6..87afbea84 --- a/Foundation/include/Poco/RWLock_WINCE.h +++ b/Foundation/include/Poco/RWLock_WINCE.h @@ -12,27 +12,7 @@ // Copyright (c) 2009-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Random.h b/Foundation/include/Poco/Random.h old mode 100644 new mode 100755 index 80f00676e..3e0b440b3 --- a/Foundation/include/Poco/Random.h +++ b/Foundation/include/Poco/Random.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // // // Based on the FreeBSD random number generator. diff --git a/Foundation/include/Poco/RandomStream.h b/Foundation/include/Poco/RandomStream.h old mode 100644 new mode 100755 index 0f93a6404..c16e438ef --- a/Foundation/include/Poco/RandomStream.h +++ b/Foundation/include/Poco/RandomStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/RecursiveDirectoryIterator.h b/Foundation/include/Poco/RecursiveDirectoryIterator.h old mode 100644 new mode 100755 index 092a564fd..fcbb2311e --- a/Foundation/include/Poco/RecursiveDirectoryIterator.h +++ b/Foundation/include/Poco/RecursiveDirectoryIterator.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/RecursiveDirectoryIteratorImpl.h b/Foundation/include/Poco/RecursiveDirectoryIteratorImpl.h old mode 100644 new mode 100755 index 1a089ae69..09350f061 --- a/Foundation/include/Poco/RecursiveDirectoryIteratorImpl.h +++ b/Foundation/include/Poco/RecursiveDirectoryIteratorImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/RefCountedObject.h b/Foundation/include/Poco/RefCountedObject.h old mode 100644 new mode 100755 index 0e1b06a53..3e8557166 --- a/Foundation/include/Poco/RefCountedObject.h +++ b/Foundation/include/Poco/RefCountedObject.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/RegularExpression.h b/Foundation/include/Poco/RegularExpression.h old mode 100644 new mode 100755 index c813a8c5e..57a27e07a --- a/Foundation/include/Poco/RegularExpression.h +++ b/Foundation/include/Poco/RegularExpression.h @@ -15,27 +15,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/RotateStrategy.h b/Foundation/include/Poco/RotateStrategy.h old mode 100644 new mode 100755 index be55f8c02..349f7cc22 --- a/Foundation/include/Poco/RotateStrategy.h +++ b/Foundation/include/Poco/RotateStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Runnable.h b/Foundation/include/Poco/Runnable.h old mode 100644 new mode 100755 index 17c78b0f1..961c95e28 --- a/Foundation/include/Poco/Runnable.h +++ b/Foundation/include/Poco/Runnable.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/RunnableAdapter.h b/Foundation/include/Poco/RunnableAdapter.h old mode 100644 new mode 100755 index b841f460f..5dc708d10 --- a/Foundation/include/Poco/RunnableAdapter.h +++ b/Foundation/include/Poco/RunnableAdapter.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SHA1Engine.h b/Foundation/include/Poco/SHA1Engine.h old mode 100644 new mode 100755 index 555b56f68..8109cc350 --- a/Foundation/include/Poco/SHA1Engine.h +++ b/Foundation/include/Poco/SHA1Engine.h @@ -18,27 +18,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ScopedLock.h b/Foundation/include/Poco/ScopedLock.h old mode 100644 new mode 100755 index 2b48d560b..06a3fabba --- a/Foundation/include/Poco/ScopedLock.h +++ b/Foundation/include/Poco/ScopedLock.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ScopedUnlock.h b/Foundation/include/Poco/ScopedUnlock.h old mode 100644 new mode 100755 index 72ed894b1..ef20d88ee --- a/Foundation/include/Poco/ScopedUnlock.h +++ b/Foundation/include/Poco/ScopedUnlock.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Semaphore.h b/Foundation/include/Poco/Semaphore.h old mode 100644 new mode 100755 index d3f2285ab..699f33b7b --- a/Foundation/include/Poco/Semaphore.h +++ b/Foundation/include/Poco/Semaphore.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Semaphore_POSIX.h b/Foundation/include/Poco/Semaphore_POSIX.h old mode 100644 new mode 100755 index b4430965c..a2db7ba7b --- a/Foundation/include/Poco/Semaphore_POSIX.h +++ b/Foundation/include/Poco/Semaphore_POSIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Semaphore_VX.h b/Foundation/include/Poco/Semaphore_VX.h old mode 100644 new mode 100755 index a92ccd976..54dffea5a --- a/Foundation/include/Poco/Semaphore_VX.h +++ b/Foundation/include/Poco/Semaphore_VX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-20011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Semaphore_WIN32.h b/Foundation/include/Poco/Semaphore_WIN32.h old mode 100644 new mode 100755 index 09a8bdb34..9cbad41fc --- a/Foundation/include/Poco/Semaphore_WIN32.h +++ b/Foundation/include/Poco/Semaphore_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SharedLibrary.h b/Foundation/include/Poco/SharedLibrary.h old mode 100644 new mode 100755 index 357343b5b..d34349f64 --- a/Foundation/include/Poco/SharedLibrary.h +++ b/Foundation/include/Poco/SharedLibrary.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SharedLibrary_HPUX.h b/Foundation/include/Poco/SharedLibrary_HPUX.h old mode 100644 new mode 100755 index d67c17890..f77b02ae6 --- a/Foundation/include/Poco/SharedLibrary_HPUX.h +++ b/Foundation/include/Poco/SharedLibrary_HPUX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SharedLibrary_UNIX.h b/Foundation/include/Poco/SharedLibrary_UNIX.h old mode 100644 new mode 100755 index a1b186157..ee968d1d2 --- a/Foundation/include/Poco/SharedLibrary_UNIX.h +++ b/Foundation/include/Poco/SharedLibrary_UNIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SharedLibrary_VMS.h b/Foundation/include/Poco/SharedLibrary_VMS.h old mode 100644 new mode 100755 index 96b6d261c..8cb701fcf --- a/Foundation/include/Poco/SharedLibrary_VMS.h +++ b/Foundation/include/Poco/SharedLibrary_VMS.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SharedLibrary_VX.h b/Foundation/include/Poco/SharedLibrary_VX.h old mode 100644 new mode 100755 index 089a26c55..ef1502310 --- a/Foundation/include/Poco/SharedLibrary_VX.h +++ b/Foundation/include/Poco/SharedLibrary_VX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SharedLibrary_WIN32.h b/Foundation/include/Poco/SharedLibrary_WIN32.h old mode 100644 new mode 100755 index a3e22bb1a..e949ab323 --- a/Foundation/include/Poco/SharedLibrary_WIN32.h +++ b/Foundation/include/Poco/SharedLibrary_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SharedLibrary_WIN32U.h b/Foundation/include/Poco/SharedLibrary_WIN32U.h old mode 100644 new mode 100755 index fb5a288f4..f116ad341 --- a/Foundation/include/Poco/SharedLibrary_WIN32U.h +++ b/Foundation/include/Poco/SharedLibrary_WIN32U.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SharedMemory.h b/Foundation/include/Poco/SharedMemory.h old mode 100644 new mode 100755 index dcb4fc2ad..7f54d1923 --- a/Foundation/include/Poco/SharedMemory.h +++ b/Foundation/include/Poco/SharedMemory.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SharedMemory_DUMMY.h b/Foundation/include/Poco/SharedMemory_DUMMY.h old mode 100644 new mode 100755 index d363a37e1..58c91f641 --- a/Foundation/include/Poco/SharedMemory_DUMMY.h +++ b/Foundation/include/Poco/SharedMemory_DUMMY.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SharedMemory_POSIX.h b/Foundation/include/Poco/SharedMemory_POSIX.h old mode 100644 new mode 100755 index 91a8d7356..9b84e8512 --- a/Foundation/include/Poco/SharedMemory_POSIX.h +++ b/Foundation/include/Poco/SharedMemory_POSIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SharedMemory_WIN32.h b/Foundation/include/Poco/SharedMemory_WIN32.h old mode 100644 new mode 100755 index f4cc4ea8c..bc496555f --- a/Foundation/include/Poco/SharedMemory_WIN32.h +++ b/Foundation/include/Poco/SharedMemory_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SharedPtr.h b/Foundation/include/Poco/SharedPtr.h old mode 100644 new mode 100755 index 655f3bd92..72e4040f2 --- a/Foundation/include/Poco/SharedPtr.h +++ b/Foundation/include/Poco/SharedPtr.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SignalHandler.h b/Foundation/include/Poco/SignalHandler.h old mode 100644 new mode 100755 index d3400f90f..fe8d5c203 --- a/Foundation/include/Poco/SignalHandler.h +++ b/Foundation/include/Poco/SignalHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SimpleFileChannel.h b/Foundation/include/Poco/SimpleFileChannel.h old mode 100644 new mode 100755 index 51b84d716..4020329e1 --- a/Foundation/include/Poco/SimpleFileChannel.h +++ b/Foundation/include/Poco/SimpleFileChannel.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SimpleHashTable.h b/Foundation/include/Poco/SimpleHashTable.h old mode 100644 new mode 100755 index 2fc4895da..b54f6186d --- a/Foundation/include/Poco/SimpleHashTable.h +++ b/Foundation/include/Poco/SimpleHashTable.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SingletonHolder.h b/Foundation/include/Poco/SingletonHolder.h old mode 100644 new mode 100755 index 58d40e2be..d3ddf0a22 --- a/Foundation/include/Poco/SingletonHolder.h +++ b/Foundation/include/Poco/SingletonHolder.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SortedDirectoryIterator.h b/Foundation/include/Poco/SortedDirectoryIterator.h old mode 100644 new mode 100755 index 4b6684d21..08f1bfae6 --- a/Foundation/include/Poco/SortedDirectoryIterator.h +++ b/Foundation/include/Poco/SortedDirectoryIterator.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SplitterChannel.h b/Foundation/include/Poco/SplitterChannel.h old mode 100644 new mode 100755 index d0a34e290..7e5a6b895 --- a/Foundation/include/Poco/SplitterChannel.h +++ b/Foundation/include/Poco/SplitterChannel.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Stopwatch.h b/Foundation/include/Poco/Stopwatch.h old mode 100644 new mode 100755 index f1c92b3da..a01b06cf1 --- a/Foundation/include/Poco/Stopwatch.h +++ b/Foundation/include/Poco/Stopwatch.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/StrategyCollection.h b/Foundation/include/Poco/StrategyCollection.h old mode 100644 new mode 100755 index a3b332c65..8f9054769 --- a/Foundation/include/Poco/StrategyCollection.h +++ b/Foundation/include/Poco/StrategyCollection.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/StreamChannel.h b/Foundation/include/Poco/StreamChannel.h old mode 100644 new mode 100755 index 6aee9c834..1158bd45c --- a/Foundation/include/Poco/StreamChannel.h +++ b/Foundation/include/Poco/StreamChannel.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/StreamConverter.h b/Foundation/include/Poco/StreamConverter.h old mode 100644 new mode 100755 index 5599ea833..5f317ca10 --- a/Foundation/include/Poco/StreamConverter.h +++ b/Foundation/include/Poco/StreamConverter.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/StreamCopier.h b/Foundation/include/Poco/StreamCopier.h old mode 100644 new mode 100755 index 4924b5c18..df38bd912 --- a/Foundation/include/Poco/StreamCopier.h +++ b/Foundation/include/Poco/StreamCopier.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/StreamTokenizer.h b/Foundation/include/Poco/StreamTokenizer.h old mode 100644 new mode 100755 index e19382395..909d73034 --- a/Foundation/include/Poco/StreamTokenizer.h +++ b/Foundation/include/Poco/StreamTokenizer.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/StreamUtil.h b/Foundation/include/Poco/StreamUtil.h old mode 100644 new mode 100755 index df1883be9..4c4b37119 --- a/Foundation/include/Poco/StreamUtil.h +++ b/Foundation/include/Poco/StreamUtil.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/String.h b/Foundation/include/Poco/String.h old mode 100644 new mode 100755 index 420b2b761..cac900abe --- a/Foundation/include/Poco/String.h +++ b/Foundation/include/Poco/String.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/StringTokenizer.h b/Foundation/include/Poco/StringTokenizer.h old mode 100644 new mode 100755 index 61f82202c..a86f447d2 --- a/Foundation/include/Poco/StringTokenizer.h +++ b/Foundation/include/Poco/StringTokenizer.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SynchronizedObject.h b/Foundation/include/Poco/SynchronizedObject.h old mode 100644 new mode 100755 index 6d1b14ba1..e48de5a6d --- a/Foundation/include/Poco/SynchronizedObject.h +++ b/Foundation/include/Poco/SynchronizedObject.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/SyslogChannel.h b/Foundation/include/Poco/SyslogChannel.h old mode 100644 new mode 100755 index c5a63b4b8..d0cdab92b --- a/Foundation/include/Poco/SyslogChannel.h +++ b/Foundation/include/Poco/SyslogChannel.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Task.h b/Foundation/include/Poco/Task.h old mode 100644 new mode 100755 index b9ace3e00..d0f33be5a --- a/Foundation/include/Poco/Task.h +++ b/Foundation/include/Poco/Task.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/TaskManager.h b/Foundation/include/Poco/TaskManager.h old mode 100644 new mode 100755 index fc42d9ab1..077371dcb --- a/Foundation/include/Poco/TaskManager.h +++ b/Foundation/include/Poco/TaskManager.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/TaskNotification.h b/Foundation/include/Poco/TaskNotification.h old mode 100644 new mode 100755 index 56a208bb2..6958395c0 --- a/Foundation/include/Poco/TaskNotification.h +++ b/Foundation/include/Poco/TaskNotification.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/TeeStream.h b/Foundation/include/Poco/TeeStream.h old mode 100644 new mode 100755 index e1dec37bd..59ef9cbe8 --- a/Foundation/include/Poco/TeeStream.h +++ b/Foundation/include/Poco/TeeStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/TemporaryFile.h b/Foundation/include/Poco/TemporaryFile.h old mode 100644 new mode 100755 index 134542b70..ee2e1cecc --- a/Foundation/include/Poco/TemporaryFile.h +++ b/Foundation/include/Poco/TemporaryFile.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/TextBufferIterator.h b/Foundation/include/Poco/TextBufferIterator.h old mode 100644 new mode 100755 index cc755071b..3f0e75b1c --- a/Foundation/include/Poco/TextBufferIterator.h +++ b/Foundation/include/Poco/TextBufferIterator.h @@ -12,27 +12,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/TextConverter.h b/Foundation/include/Poco/TextConverter.h old mode 100644 new mode 100755 index 95b5a27ad..39bb60d78 --- a/Foundation/include/Poco/TextConverter.h +++ b/Foundation/include/Poco/TextConverter.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/TextEncoding.h b/Foundation/include/Poco/TextEncoding.h old mode 100644 new mode 100755 index f722a881c..b67a18f15 --- a/Foundation/include/Poco/TextEncoding.h +++ b/Foundation/include/Poco/TextEncoding.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/TextIterator.h b/Foundation/include/Poco/TextIterator.h old mode 100644 new mode 100755 index 44b2aa03f..de2d7655b --- a/Foundation/include/Poco/TextIterator.h +++ b/Foundation/include/Poco/TextIterator.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Thread.h b/Foundation/include/Poco/Thread.h old mode 100644 new mode 100755 index 6a552e6c0..541fa1bdc --- a/Foundation/include/Poco/Thread.h +++ b/Foundation/include/Poco/Thread.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ThreadLocal.h b/Foundation/include/Poco/ThreadLocal.h old mode 100644 new mode 100755 index d9358616c..e2ac7dd3b --- a/Foundation/include/Poco/ThreadLocal.h +++ b/Foundation/include/Poco/ThreadLocal.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ThreadPool.h b/Foundation/include/Poco/ThreadPool.h old mode 100644 new mode 100755 index 4aae08bbc..0058efa24 --- a/Foundation/include/Poco/ThreadPool.h +++ b/Foundation/include/Poco/ThreadPool.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ThreadTarget.h b/Foundation/include/Poco/ThreadTarget.h old mode 100644 new mode 100755 index 3bf7f3a43..e5217151a --- a/Foundation/include/Poco/ThreadTarget.h +++ b/Foundation/include/Poco/ThreadTarget.h @@ -12,27 +12,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Thread_POSIX.h b/Foundation/include/Poco/Thread_POSIX.h old mode 100644 new mode 100755 index ae4e1002d..120f7a86e --- a/Foundation/include/Poco/Thread_POSIX.h +++ b/Foundation/include/Poco/Thread_POSIX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Thread_VX.h b/Foundation/include/Poco/Thread_VX.h old mode 100644 new mode 100755 index c8c4f28a9..1f442c935 --- a/Foundation/include/Poco/Thread_VX.h +++ b/Foundation/include/Poco/Thread_VX.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Thread_WIN32.h b/Foundation/include/Poco/Thread_WIN32.h old mode 100644 new mode 100755 index 9f58e4f3a..a954c2a4a --- a/Foundation/include/Poco/Thread_WIN32.h +++ b/Foundation/include/Poco/Thread_WIN32.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Thread_WINCE.h b/Foundation/include/Poco/Thread_WINCE.h old mode 100644 new mode 100755 index 476243955..013cfa460 --- a/Foundation/include/Poco/Thread_WINCE.h +++ b/Foundation/include/Poco/Thread_WINCE.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/TimedNotificationQueue.h b/Foundation/include/Poco/TimedNotificationQueue.h old mode 100644 new mode 100755 index bbf8e7f00..d1f127845 --- a/Foundation/include/Poco/TimedNotificationQueue.h +++ b/Foundation/include/Poco/TimedNotificationQueue.h @@ -12,27 +12,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Timer.h b/Foundation/include/Poco/Timer.h old mode 100644 new mode 100755 index 9db4e3436..ae228e0b4 --- a/Foundation/include/Poco/Timer.h +++ b/Foundation/include/Poco/Timer.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Timespan.h b/Foundation/include/Poco/Timespan.h old mode 100644 new mode 100755 index fd57e56f5..b96a0ce79 --- a/Foundation/include/Poco/Timespan.h +++ b/Foundation/include/Poco/Timespan.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Timestamp.h b/Foundation/include/Poco/Timestamp.h old mode 100644 new mode 100755 index 000b4ad33..f8fa0683d --- a/Foundation/include/Poco/Timestamp.h +++ b/Foundation/include/Poco/Timestamp.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Timezone.h b/Foundation/include/Poco/Timezone.h old mode 100644 new mode 100755 index 1e5608b5f..5da990a59 --- a/Foundation/include/Poco/Timezone.h +++ b/Foundation/include/Poco/Timezone.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Token.h b/Foundation/include/Poco/Token.h old mode 100644 new mode 100755 index 125c241ba..a2c176f87 --- a/Foundation/include/Poco/Token.h +++ b/Foundation/include/Poco/Token.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Tuple.h b/Foundation/include/Poco/Tuple.h old mode 100644 new mode 100755 index 97437a7b4..e0454e01c --- a/Foundation/include/Poco/Tuple.h +++ b/Foundation/include/Poco/Tuple.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/TypeList.h b/Foundation/include/Poco/TypeList.h old mode 100644 new mode 100755 index 645883549..5b949c296 --- a/Foundation/include/Poco/TypeList.h +++ b/Foundation/include/Poco/TypeList.h @@ -16,27 +16,7 @@ // The Loki Library // Copyright (c) 2001 by Andrei Alexandrescu // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Types.h b/Foundation/include/Poco/Types.h old mode 100644 new mode 100755 index 8e54d1641..1b076d51c --- a/Foundation/include/Poco/Types.h +++ b/Foundation/include/Poco/Types.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/URI.h b/Foundation/include/Poco/URI.h old mode 100644 new mode 100755 index 9a7a667e3..717f23ac3 --- a/Foundation/include/Poco/URI.h +++ b/Foundation/include/Poco/URI.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/URIStreamFactory.h b/Foundation/include/Poco/URIStreamFactory.h old mode 100644 new mode 100755 index a60f8e3c7..3a463d051 --- a/Foundation/include/Poco/URIStreamFactory.h +++ b/Foundation/include/Poco/URIStreamFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/URIStreamOpener.h b/Foundation/include/Poco/URIStreamOpener.h old mode 100644 new mode 100755 index 29e068011..7f0a5f4fc --- a/Foundation/include/Poco/URIStreamOpener.h +++ b/Foundation/include/Poco/URIStreamOpener.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UTF16Encoding.h b/Foundation/include/Poco/UTF16Encoding.h old mode 100644 new mode 100755 index 1cc0c11b4..ded2baa84 --- a/Foundation/include/Poco/UTF16Encoding.h +++ b/Foundation/include/Poco/UTF16Encoding.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UTF32Encoding.h b/Foundation/include/Poco/UTF32Encoding.h old mode 100644 new mode 100755 index a0b240a9b..38d8ebda5 --- a/Foundation/include/Poco/UTF32Encoding.h +++ b/Foundation/include/Poco/UTF32Encoding.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UTF8Encoding.h b/Foundation/include/Poco/UTF8Encoding.h old mode 100644 new mode 100755 index 4f9f9ceab..80f20fcf7 --- a/Foundation/include/Poco/UTF8Encoding.h +++ b/Foundation/include/Poco/UTF8Encoding.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UTF8String.h b/Foundation/include/Poco/UTF8String.h old mode 100644 new mode 100755 index 1b1a3d616..36c280dea --- a/Foundation/include/Poco/UTF8String.h +++ b/Foundation/include/Poco/UTF8String.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UTFString.h b/Foundation/include/Poco/UTFString.h old mode 100644 new mode 100755 index 78da610eb..cb1537410 --- a/Foundation/include/Poco/UTFString.h +++ b/Foundation/include/Poco/UTFString.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UUID.h b/Foundation/include/Poco/UUID.h old mode 100644 new mode 100755 index cf632ff28..f38ab0818 --- a/Foundation/include/Poco/UUID.h +++ b/Foundation/include/Poco/UUID.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UUIDGenerator.h b/Foundation/include/Poco/UUIDGenerator.h old mode 100644 new mode 100755 index a2d68bd06..d03f06617 --- a/Foundation/include/Poco/UUIDGenerator.h +++ b/Foundation/include/Poco/UUIDGenerator.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UnWindows.h b/Foundation/include/Poco/UnWindows.h old mode 100644 new mode 100755 index 697ca0a72..2f3a10ae5 --- a/Foundation/include/Poco/UnWindows.h +++ b/Foundation/include/Poco/UnWindows.h @@ -31,27 +31,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UnbufferedStreamBuf.h b/Foundation/include/Poco/UnbufferedStreamBuf.h old mode 100644 new mode 100755 index 0bc6b4dfe..40ca084b1 --- a/Foundation/include/Poco/UnbufferedStreamBuf.h +++ b/Foundation/include/Poco/UnbufferedStreamBuf.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Unicode.h b/Foundation/include/Poco/Unicode.h old mode 100644 new mode 100755 index 4490f1d11..be5e4d9d9 --- a/Foundation/include/Poco/Unicode.h +++ b/Foundation/include/Poco/Unicode.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UnicodeConverter.h b/Foundation/include/Poco/UnicodeConverter.h old mode 100644 new mode 100755 index 71925bc49..d0af8062f --- a/Foundation/include/Poco/UnicodeConverter.h +++ b/Foundation/include/Poco/UnicodeConverter.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UniqueAccessExpireCache.h b/Foundation/include/Poco/UniqueAccessExpireCache.h old mode 100644 new mode 100755 index 5094fde5b..58fb24d61 --- a/Foundation/include/Poco/UniqueAccessExpireCache.h +++ b/Foundation/include/Poco/UniqueAccessExpireCache.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UniqueAccessExpireLRUCache.h b/Foundation/include/Poco/UniqueAccessExpireLRUCache.h old mode 100644 new mode 100755 index 51f49dde8..1329ae401 --- a/Foundation/include/Poco/UniqueAccessExpireLRUCache.h +++ b/Foundation/include/Poco/UniqueAccessExpireLRUCache.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UniqueAccessExpireStrategy.h b/Foundation/include/Poco/UniqueAccessExpireStrategy.h old mode 100644 new mode 100755 index 20a2c35c9..1099d0056 --- a/Foundation/include/Poco/UniqueAccessExpireStrategy.h +++ b/Foundation/include/Poco/UniqueAccessExpireStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UniqueExpireCache.h b/Foundation/include/Poco/UniqueExpireCache.h old mode 100644 new mode 100755 index b0c8441c3..52eb96ccb --- a/Foundation/include/Poco/UniqueExpireCache.h +++ b/Foundation/include/Poco/UniqueExpireCache.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UniqueExpireLRUCache.h b/Foundation/include/Poco/UniqueExpireLRUCache.h old mode 100644 new mode 100755 index fd55822db..748c131c9 --- a/Foundation/include/Poco/UniqueExpireLRUCache.h +++ b/Foundation/include/Poco/UniqueExpireLRUCache.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/UniqueExpireStrategy.h b/Foundation/include/Poco/UniqueExpireStrategy.h old mode 100644 new mode 100755 index 66bab6373..825c53326 --- a/Foundation/include/Poco/UniqueExpireStrategy.h +++ b/Foundation/include/Poco/UniqueExpireStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/ValidArgs.h b/Foundation/include/Poco/ValidArgs.h old mode 100644 new mode 100755 index 13aa5fc91..1d195658b --- a/Foundation/include/Poco/ValidArgs.h +++ b/Foundation/include/Poco/ValidArgs.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Version.h b/Foundation/include/Poco/Version.h old mode 100644 new mode 100755 index f5752c345..36292fd48 --- a/Foundation/include/Poco/Version.h +++ b/Foundation/include/Poco/Version.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Void.h b/Foundation/include/Poco/Void.h old mode 100644 new mode 100755 index 0b1a20f5f..9b448ae54 --- a/Foundation/include/Poco/Void.h +++ b/Foundation/include/Poco/Void.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Windows1250Encoding.h b/Foundation/include/Poco/Windows1250Encoding.h old mode 100644 new mode 100755 index 229f2790a..63f400efa --- a/Foundation/include/Poco/Windows1250Encoding.h +++ b/Foundation/include/Poco/Windows1250Encoding.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Windows1251Encoding.h b/Foundation/include/Poco/Windows1251Encoding.h old mode 100644 new mode 100755 index 4c53f11e1..2d9f288fb --- a/Foundation/include/Poco/Windows1251Encoding.h +++ b/Foundation/include/Poco/Windows1251Encoding.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/Windows1252Encoding.h b/Foundation/include/Poco/Windows1252Encoding.h old mode 100644 new mode 100755 index 1a4eb43ec..b920bceac --- a/Foundation/include/Poco/Windows1252Encoding.h +++ b/Foundation/include/Poco/Windows1252Encoding.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/include/Poco/WindowsConsoleChannel.h b/Foundation/include/Poco/WindowsConsoleChannel.h old mode 100644 new mode 100755 index 0cab17ba6..eaf145732 --- a/Foundation/include/Poco/WindowsConsoleChannel.h +++ b/Foundation/include/Poco/WindowsConsoleChannel.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/ActiveMethod/src/ActiveMethod.cpp b/Foundation/samples/ActiveMethod/src/ActiveMethod.cpp old mode 100644 new mode 100755 index 13cc28e72..35c5eb62f --- a/Foundation/samples/ActiveMethod/src/ActiveMethod.cpp +++ b/Foundation/samples/ActiveMethod/src/ActiveMethod.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/Activity/src/Activity.cpp b/Foundation/samples/Activity/src/Activity.cpp old mode 100644 new mode 100755 index 4b90b42ca..c7a94628d --- a/Foundation/samples/Activity/src/Activity.cpp +++ b/Foundation/samples/Activity/src/Activity.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/BinaryReaderWriter/src/BinaryReaderWriter.cpp b/Foundation/samples/BinaryReaderWriter/src/BinaryReaderWriter.cpp old mode 100644 new mode 100755 index 64c52b44a..f71fcc6b6 --- a/Foundation/samples/BinaryReaderWriter/src/BinaryReaderWriter.cpp +++ b/Foundation/samples/BinaryReaderWriter/src/BinaryReaderWriter.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/DateTime/src/DateTime.cpp b/Foundation/samples/DateTime/src/DateTime.cpp old mode 100644 new mode 100755 index 255a23835..83c9f46a0 --- a/Foundation/samples/DateTime/src/DateTime.cpp +++ b/Foundation/samples/DateTime/src/DateTime.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/LineEndingConverter/src/LineEndingConverter.cpp b/Foundation/samples/LineEndingConverter/src/LineEndingConverter.cpp old mode 100644 new mode 100755 index fe4b2fb61..e1b110355 --- a/Foundation/samples/LineEndingConverter/src/LineEndingConverter.cpp +++ b/Foundation/samples/LineEndingConverter/src/LineEndingConverter.cpp @@ -9,27 +9,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/LogRotation/src/LogRotation.cpp b/Foundation/samples/LogRotation/src/LogRotation.cpp old mode 100644 new mode 100755 index d2e622cf8..a5fa6e25b --- a/Foundation/samples/LogRotation/src/LogRotation.cpp +++ b/Foundation/samples/LogRotation/src/LogRotation.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/Logger/src/Logger.cpp b/Foundation/samples/Logger/src/Logger.cpp old mode 100644 new mode 100755 index 06637ba3c..0121c0354 --- a/Foundation/samples/Logger/src/Logger.cpp +++ b/Foundation/samples/Logger/src/Logger.cpp @@ -9,27 +9,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/NotificationQueue/src/NotificationQueue.cpp b/Foundation/samples/NotificationQueue/src/NotificationQueue.cpp old mode 100644 new mode 100755 index ac4d897cd..d6a5af3c3 --- a/Foundation/samples/NotificationQueue/src/NotificationQueue.cpp +++ b/Foundation/samples/NotificationQueue/src/NotificationQueue.cpp @@ -9,27 +9,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/StringTokenizer/src/StringTokenizer.cpp b/Foundation/samples/StringTokenizer/src/StringTokenizer.cpp old mode 100644 new mode 100755 index 8787ad05d..19f94ecc3 --- a/Foundation/samples/StringTokenizer/src/StringTokenizer.cpp +++ b/Foundation/samples/StringTokenizer/src/StringTokenizer.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/Timer/src/Timer.cpp b/Foundation/samples/Timer/src/Timer.cpp old mode 100644 new mode 100755 index 369af782b..07dad4900 --- a/Foundation/samples/Timer/src/Timer.cpp +++ b/Foundation/samples/Timer/src/Timer.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/URI/src/URI.cpp b/Foundation/samples/URI/src/URI.cpp old mode 100644 new mode 100755 index b9e1332c7..9e86282c5 --- a/Foundation/samples/URI/src/URI.cpp +++ b/Foundation/samples/URI/src/URI.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/base64decode/src/base64decode.cpp b/Foundation/samples/base64decode/src/base64decode.cpp old mode 100644 new mode 100755 index d1e4b9050..0bfccbc0e --- a/Foundation/samples/base64decode/src/base64decode.cpp +++ b/Foundation/samples/base64decode/src/base64decode.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/base64encode/src/base64encode.cpp b/Foundation/samples/base64encode/src/base64encode.cpp old mode 100644 new mode 100755 index efb95be9c..51df2b072 --- a/Foundation/samples/base64encode/src/base64encode.cpp +++ b/Foundation/samples/base64encode/src/base64encode.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/deflate/src/deflate.cpp b/Foundation/samples/deflate/src/deflate.cpp old mode 100644 new mode 100755 index 1bd364150..562fd7a10 --- a/Foundation/samples/deflate/src/deflate.cpp +++ b/Foundation/samples/deflate/src/deflate.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/dir/src/dir.cpp b/Foundation/samples/dir/src/dir.cpp old mode 100644 new mode 100755 index 87e516a28..2dedb5994 --- a/Foundation/samples/dir/src/dir.cpp +++ b/Foundation/samples/dir/src/dir.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/grep/src/grep.cpp b/Foundation/samples/grep/src/grep.cpp old mode 100644 new mode 100755 index 082c4cdf2..e0cbe6a86 --- a/Foundation/samples/grep/src/grep.cpp +++ b/Foundation/samples/grep/src/grep.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/hmacmd5/src/hmacmd5.cpp b/Foundation/samples/hmacmd5/src/hmacmd5.cpp old mode 100644 new mode 100755 index df76a49ed..ebea8c418 --- a/Foundation/samples/hmacmd5/src/hmacmd5.cpp +++ b/Foundation/samples/hmacmd5/src/hmacmd5.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/inflate/src/inflate.cpp b/Foundation/samples/inflate/src/inflate.cpp old mode 100644 new mode 100755 index 0b053832e..3ed9b9808 --- a/Foundation/samples/inflate/src/inflate.cpp +++ b/Foundation/samples/inflate/src/inflate.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/md5/src/md5.cpp b/Foundation/samples/md5/src/md5.cpp old mode 100644 new mode 100755 index f2dc346d5..0dfec9fb3 --- a/Foundation/samples/md5/src/md5.cpp +++ b/Foundation/samples/md5/src/md5.cpp @@ -9,27 +9,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/samples/uuidgen/src/uuidgen.cpp b/Foundation/samples/uuidgen/src/uuidgen.cpp old mode 100644 new mode 100755 index a539cc03c..a8db9b270 --- a/Foundation/samples/uuidgen/src/uuidgen.cpp +++ b/Foundation/samples/uuidgen/src/uuidgen.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/ASCIIEncoding.cpp b/Foundation/src/ASCIIEncoding.cpp old mode 100644 new mode 100755 index 3c00fb607..01de073ab --- a/Foundation/src/ASCIIEncoding.cpp +++ b/Foundation/src/ASCIIEncoding.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/AbstractObserver.cpp b/Foundation/src/AbstractObserver.cpp old mode 100644 new mode 100755 index 166b3e95d..575eb0120 --- a/Foundation/src/AbstractObserver.cpp +++ b/Foundation/src/AbstractObserver.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/ActiveDispatcher.cpp b/Foundation/src/ActiveDispatcher.cpp old mode 100644 new mode 100755 index de1ef3a8e..895448e17 --- a/Foundation/src/ActiveDispatcher.cpp +++ b/Foundation/src/ActiveDispatcher.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/ArchiveStrategy.cpp b/Foundation/src/ArchiveStrategy.cpp old mode 100644 new mode 100755 index 8903dcc74..7491da61f --- a/Foundation/src/ArchiveStrategy.cpp +++ b/Foundation/src/ArchiveStrategy.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Ascii.cpp b/Foundation/src/Ascii.cpp old mode 100644 new mode 100755 index 07f9c419e..7b4ea6534 --- a/Foundation/src/Ascii.cpp +++ b/Foundation/src/Ascii.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/AsyncChannel.cpp b/Foundation/src/AsyncChannel.cpp old mode 100644 new mode 100755 index 398145c13..94841f9ee --- a/Foundation/src/AsyncChannel.cpp +++ b/Foundation/src/AsyncChannel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/AtomicCounter.cpp b/Foundation/src/AtomicCounter.cpp old mode 100644 new mode 100755 index a82074dbb..9a858aad5 --- a/Foundation/src/AtomicCounter.cpp +++ b/Foundation/src/AtomicCounter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Base32Decoder.cpp b/Foundation/src/Base32Decoder.cpp old mode 100644 new mode 100755 index 4e49effe4..1cad6c780 --- a/Foundation/src/Base32Decoder.cpp +++ b/Foundation/src/Base32Decoder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Base32Encoder.cpp b/Foundation/src/Base32Encoder.cpp old mode 100644 new mode 100755 index 7e4664dbb..bf73921a3 --- a/Foundation/src/Base32Encoder.cpp +++ b/Foundation/src/Base32Encoder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Base64Decoder.cpp b/Foundation/src/Base64Decoder.cpp old mode 100644 new mode 100755 index 73695a573..24c75113f --- a/Foundation/src/Base64Decoder.cpp +++ b/Foundation/src/Base64Decoder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Base64Encoder.cpp b/Foundation/src/Base64Encoder.cpp old mode 100644 new mode 100755 index d472a3188..21bda6209 --- a/Foundation/src/Base64Encoder.cpp +++ b/Foundation/src/Base64Encoder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/BinaryReader.cpp b/Foundation/src/BinaryReader.cpp old mode 100644 new mode 100755 index d093b53b8..8859b20f9 --- a/Foundation/src/BinaryReader.cpp +++ b/Foundation/src/BinaryReader.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/BinaryWriter.cpp b/Foundation/src/BinaryWriter.cpp old mode 100644 new mode 100755 index 5fbbac56f..03348b061 --- a/Foundation/src/BinaryWriter.cpp +++ b/Foundation/src/BinaryWriter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Bugcheck.cpp b/Foundation/src/Bugcheck.cpp old mode 100644 new mode 100755 index 0d4c3f511..b5128067a --- a/Foundation/src/Bugcheck.cpp +++ b/Foundation/src/Bugcheck.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/ByteOrder.cpp b/Foundation/src/ByteOrder.cpp old mode 100644 new mode 100755 index c0b1b01b0..83b592c6e --- a/Foundation/src/ByteOrder.cpp +++ b/Foundation/src/ByteOrder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Channel.cpp b/Foundation/src/Channel.cpp old mode 100644 new mode 100755 index 100adefeb..d8091eb48 --- a/Foundation/src/Channel.cpp +++ b/Foundation/src/Channel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Checksum.cpp b/Foundation/src/Checksum.cpp old mode 100644 new mode 100755 index 2065eeab0..02ce01ee0 --- a/Foundation/src/Checksum.cpp +++ b/Foundation/src/Checksum.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Clock.cpp b/Foundation/src/Clock.cpp old mode 100644 new mode 100755 index 1fa00e6da..808f9b10c --- a/Foundation/src/Clock.cpp +++ b/Foundation/src/Clock.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2013, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Condition.cpp b/Foundation/src/Condition.cpp old mode 100644 new mode 100755 index 5bc7e251c..e234a7f3b --- a/Foundation/src/Condition.cpp +++ b/Foundation/src/Condition.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Configurable.cpp b/Foundation/src/Configurable.cpp old mode 100644 new mode 100755 index c0e8ae161..6532f20c2 --- a/Foundation/src/Configurable.cpp +++ b/Foundation/src/Configurable.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/ConsoleChannel.cpp b/Foundation/src/ConsoleChannel.cpp old mode 100644 new mode 100755 index a3d4c687c..08473bf69 --- a/Foundation/src/ConsoleChannel.cpp +++ b/Foundation/src/ConsoleChannel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/CountingStream.cpp b/Foundation/src/CountingStream.cpp old mode 100644 new mode 100755 index 4a2645ebf..3874bd8d2 --- a/Foundation/src/CountingStream.cpp +++ b/Foundation/src/CountingStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/DateTime.cpp b/Foundation/src/DateTime.cpp old mode 100644 new mode 100755 index 3fb4c0983..fcc0205ec --- a/Foundation/src/DateTime.cpp +++ b/Foundation/src/DateTime.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/DateTimeFormat.cpp b/Foundation/src/DateTimeFormat.cpp old mode 100644 new mode 100755 index b310ecb63..41f603850 --- a/Foundation/src/DateTimeFormat.cpp +++ b/Foundation/src/DateTimeFormat.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/DateTimeFormatter.cpp b/Foundation/src/DateTimeFormatter.cpp old mode 100644 new mode 100755 index 2c6fcb72f..2e8ec6218 --- a/Foundation/src/DateTimeFormatter.cpp +++ b/Foundation/src/DateTimeFormatter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/DateTimeParser.cpp b/Foundation/src/DateTimeParser.cpp old mode 100644 new mode 100755 index 9e923c209..d2df7488f --- a/Foundation/src/DateTimeParser.cpp +++ b/Foundation/src/DateTimeParser.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Debugger.cpp b/Foundation/src/Debugger.cpp old mode 100644 new mode 100755 index 28d84629c..4bb946a9f --- a/Foundation/src/Debugger.cpp +++ b/Foundation/src/Debugger.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/DeflatingStream.cpp b/Foundation/src/DeflatingStream.cpp old mode 100644 new mode 100755 index f2deef2e5..28c9dbb4a --- a/Foundation/src/DeflatingStream.cpp +++ b/Foundation/src/DeflatingStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/DigestEngine.cpp b/Foundation/src/DigestEngine.cpp old mode 100644 new mode 100755 index b5595533c..e35e749e9 --- a/Foundation/src/DigestEngine.cpp +++ b/Foundation/src/DigestEngine.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/DigestStream.cpp b/Foundation/src/DigestStream.cpp old mode 100644 new mode 100755 index 85480d974..2f0e381b0 --- a/Foundation/src/DigestStream.cpp +++ b/Foundation/src/DigestStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/DirectoryIterator.cpp b/Foundation/src/DirectoryIterator.cpp old mode 100644 new mode 100755 index f688f4c10..7d96adee9 --- a/Foundation/src/DirectoryIterator.cpp +++ b/Foundation/src/DirectoryIterator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/DirectoryIteratorStrategy.cpp b/Foundation/src/DirectoryIteratorStrategy.cpp old mode 100644 new mode 100755 index c1c7aafed..6823354c1 --- a/Foundation/src/DirectoryIteratorStrategy.cpp +++ b/Foundation/src/DirectoryIteratorStrategy.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/DirectoryIterator_UNIX.cpp b/Foundation/src/DirectoryIterator_UNIX.cpp old mode 100644 new mode 100755 index ce852bf99..535981076 --- a/Foundation/src/DirectoryIterator_UNIX.cpp +++ b/Foundation/src/DirectoryIterator_UNIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/DirectoryIterator_VMS.cpp b/Foundation/src/DirectoryIterator_VMS.cpp old mode 100644 new mode 100755 index f8b5b6d46..a8b6c8625 --- a/Foundation/src/DirectoryIterator_VMS.cpp +++ b/Foundation/src/DirectoryIterator_VMS.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/DirectoryIterator_WIN32.cpp b/Foundation/src/DirectoryIterator_WIN32.cpp old mode 100644 new mode 100755 index 33297ffe1..4b9863a35 --- a/Foundation/src/DirectoryIterator_WIN32.cpp +++ b/Foundation/src/DirectoryIterator_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/DirectoryIterator_WIN32U.cpp b/Foundation/src/DirectoryIterator_WIN32U.cpp old mode 100644 new mode 100755 index 2b8a29395..acd1dc2a6 --- a/Foundation/src/DirectoryIterator_WIN32U.cpp +++ b/Foundation/src/DirectoryIterator_WIN32U.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/DirectoryWatcher.cpp b/Foundation/src/DirectoryWatcher.cpp old mode 100644 new mode 100755 index c79c36f70..4b518a37d --- a/Foundation/src/DirectoryWatcher.cpp +++ b/Foundation/src/DirectoryWatcher.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Environment.cpp b/Foundation/src/Environment.cpp old mode 100644 new mode 100755 index b9119c942..c9e054ed9 --- a/Foundation/src/Environment.cpp +++ b/Foundation/src/Environment.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Environment_UNIX.cpp b/Foundation/src/Environment_UNIX.cpp old mode 100644 new mode 100755 index 35f181744..83401699a --- a/Foundation/src/Environment_UNIX.cpp +++ b/Foundation/src/Environment_UNIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Environment_VMS.cpp b/Foundation/src/Environment_VMS.cpp old mode 100644 new mode 100755 index f6268738b..6f53dc1b5 --- a/Foundation/src/Environment_VMS.cpp +++ b/Foundation/src/Environment_VMS.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Environment_VX.cpp b/Foundation/src/Environment_VX.cpp old mode 100644 new mode 100755 index 27aa62b55..74c8cb2af --- a/Foundation/src/Environment_VX.cpp +++ b/Foundation/src/Environment_VX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Environment_WIN32.cpp b/Foundation/src/Environment_WIN32.cpp old mode 100644 new mode 100755 index a680d8368..7c96a8da9 --- a/Foundation/src/Environment_WIN32.cpp +++ b/Foundation/src/Environment_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Environment_WIN32U.cpp b/Foundation/src/Environment_WIN32U.cpp old mode 100644 new mode 100755 index 26652a0f4..c82699ad5 --- a/Foundation/src/Environment_WIN32U.cpp +++ b/Foundation/src/Environment_WIN32U.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Environment_WINCE.cpp b/Foundation/src/Environment_WINCE.cpp old mode 100644 new mode 100755 index 0148ce764..7f29a52ca --- a/Foundation/src/Environment_WINCE.cpp +++ b/Foundation/src/Environment_WINCE.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2009-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Error.cpp b/Foundation/src/Error.cpp old mode 100644 new mode 100755 index 1491f3e5c..20538627c --- a/Foundation/src/Error.cpp +++ b/Foundation/src/Error.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/ErrorHandler.cpp b/Foundation/src/ErrorHandler.cpp old mode 100644 new mode 100755 index b49258d53..f4be106bc --- a/Foundation/src/ErrorHandler.cpp +++ b/Foundation/src/ErrorHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Event.cpp b/Foundation/src/Event.cpp old mode 100644 new mode 100755 index 4e5ee4027..cf4a52f1c --- a/Foundation/src/Event.cpp +++ b/Foundation/src/Event.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/EventArgs.cpp b/Foundation/src/EventArgs.cpp old mode 100644 new mode 100755 index 83c872986..5f338d952 --- a/Foundation/src/EventArgs.cpp +++ b/Foundation/src/EventArgs.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/EventLogChannel.cpp b/Foundation/src/EventLogChannel.cpp old mode 100644 new mode 100755 index 7d3b76611..972886f2b --- a/Foundation/src/EventLogChannel.cpp +++ b/Foundation/src/EventLogChannel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Event_POSIX.cpp b/Foundation/src/Event_POSIX.cpp old mode 100644 new mode 100755 index bc8007c02..8dd8ce907 --- a/Foundation/src/Event_POSIX.cpp +++ b/Foundation/src/Event_POSIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Event_VX.cpp b/Foundation/src/Event_VX.cpp old mode 100644 new mode 100755 index 99ba4d14e..6324e901f --- a/Foundation/src/Event_VX.cpp +++ b/Foundation/src/Event_VX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Event_WIN32.cpp b/Foundation/src/Event_WIN32.cpp old mode 100644 new mode 100755 index d071d95e2..10f0f1308 --- a/Foundation/src/Event_WIN32.cpp +++ b/Foundation/src/Event_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Exception.cpp b/Foundation/src/Exception.cpp old mode 100644 new mode 100755 index 627d6e501..e203c1c04 --- a/Foundation/src/Exception.cpp +++ b/Foundation/src/Exception.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/FIFOBufferStream.cpp b/Foundation/src/FIFOBufferStream.cpp old mode 100644 new mode 100755 index ccf42fa33..1ac70272b --- a/Foundation/src/FIFOBufferStream.cpp +++ b/Foundation/src/FIFOBufferStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/FPEnvironment.cpp b/Foundation/src/FPEnvironment.cpp old mode 100644 new mode 100755 index e6171ba66..31477c18e --- a/Foundation/src/FPEnvironment.cpp +++ b/Foundation/src/FPEnvironment.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/FPEnvironment_C99.cpp b/Foundation/src/FPEnvironment_C99.cpp old mode 100644 new mode 100755 index fc968acea..f514f0b2b --- a/Foundation/src/FPEnvironment_C99.cpp +++ b/Foundation/src/FPEnvironment_C99.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/FPEnvironment_DEC.cpp b/Foundation/src/FPEnvironment_DEC.cpp old mode 100644 new mode 100755 index 10b194ba5..e31170445 --- a/Foundation/src/FPEnvironment_DEC.cpp +++ b/Foundation/src/FPEnvironment_DEC.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/FPEnvironment_DUMMY.cpp b/Foundation/src/FPEnvironment_DUMMY.cpp old mode 100644 new mode 100755 index 0e486d957..6fec1c634 --- a/Foundation/src/FPEnvironment_DUMMY.cpp +++ b/Foundation/src/FPEnvironment_DUMMY.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/FPEnvironment_SUN.cpp b/Foundation/src/FPEnvironment_SUN.cpp old mode 100644 new mode 100755 index 6eda8530f..a778ffec9 --- a/Foundation/src/FPEnvironment_SUN.cpp +++ b/Foundation/src/FPEnvironment_SUN.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/FPEnvironment_WIN32.cpp b/Foundation/src/FPEnvironment_WIN32.cpp old mode 100644 new mode 100755 index cd31bea91..ebbb763e2 --- a/Foundation/src/FPEnvironment_WIN32.cpp +++ b/Foundation/src/FPEnvironment_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/File.cpp b/Foundation/src/File.cpp old mode 100644 new mode 100755 index 5c17858b5..abbbae157 --- a/Foundation/src/File.cpp +++ b/Foundation/src/File.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/FileChannel.cpp b/Foundation/src/FileChannel.cpp old mode 100644 new mode 100755 index 3971769a9..5d04c69d3 --- a/Foundation/src/FileChannel.cpp +++ b/Foundation/src/FileChannel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/FileStream.cpp b/Foundation/src/FileStream.cpp old mode 100644 new mode 100755 index 13073cbf1..818f572ad --- a/Foundation/src/FileStream.cpp +++ b/Foundation/src/FileStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/FileStreamFactory.cpp b/Foundation/src/FileStreamFactory.cpp old mode 100644 new mode 100755 index 4f1d63b9f..b0c2b051e --- a/Foundation/src/FileStreamFactory.cpp +++ b/Foundation/src/FileStreamFactory.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/FileStream_POSIX.cpp b/Foundation/src/FileStream_POSIX.cpp old mode 100644 new mode 100755 index 8654c8ede..f6b79a873 --- a/Foundation/src/FileStream_POSIX.cpp +++ b/Foundation/src/FileStream_POSIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/FileStream_WIN32.cpp b/Foundation/src/FileStream_WIN32.cpp old mode 100644 new mode 100755 index 2ab84caf1..e75f1ee4a --- a/Foundation/src/FileStream_WIN32.cpp +++ b/Foundation/src/FileStream_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/File_UNIX.cpp b/Foundation/src/File_UNIX.cpp old mode 100644 new mode 100755 index 206009b06..84a606a65 --- a/Foundation/src/File_UNIX.cpp +++ b/Foundation/src/File_UNIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/File_VMS.cpp b/Foundation/src/File_VMS.cpp old mode 100644 new mode 100755 index bc92543f6..40880ed29 --- a/Foundation/src/File_VMS.cpp +++ b/Foundation/src/File_VMS.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/File_VX.cpp b/Foundation/src/File_VX.cpp old mode 100644 new mode 100755 index ac7f6ccc7..13878f2a6 --- a/Foundation/src/File_VX.cpp +++ b/Foundation/src/File_VX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/File_WIN32.cpp b/Foundation/src/File_WIN32.cpp old mode 100644 new mode 100755 index a338c68b2..f58282632 --- a/Foundation/src/File_WIN32.cpp +++ b/Foundation/src/File_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/File_WIN32U.cpp b/Foundation/src/File_WIN32U.cpp old mode 100644 new mode 100755 index 6148cfe9e..0522ab631 --- a/Foundation/src/File_WIN32U.cpp +++ b/Foundation/src/File_WIN32U.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/File_WINCE.cpp b/Foundation/src/File_WINCE.cpp old mode 100644 new mode 100755 index d6c6fde10..4d0f0cf9f --- a/Foundation/src/File_WINCE.cpp +++ b/Foundation/src/File_WINCE.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Format.cpp b/Foundation/src/Format.cpp old mode 100644 new mode 100755 index 2a34a265a..9a934a8bc --- a/Foundation/src/Format.cpp +++ b/Foundation/src/Format.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Formatter.cpp b/Foundation/src/Formatter.cpp old mode 100644 new mode 100755 index 926fea0f4..1a1016610 --- a/Foundation/src/Formatter.cpp +++ b/Foundation/src/Formatter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/FormattingChannel.cpp b/Foundation/src/FormattingChannel.cpp old mode 100644 new mode 100755 index cba75c88a..8d34148ac --- a/Foundation/src/FormattingChannel.cpp +++ b/Foundation/src/FormattingChannel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Glob.cpp b/Foundation/src/Glob.cpp old mode 100644 new mode 100755 index 2a36732c0..bc0124206 --- a/Foundation/src/Glob.cpp +++ b/Foundation/src/Glob.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Hash.cpp b/Foundation/src/Hash.cpp old mode 100644 new mode 100755 index 060be7a87..f40e2340b --- a/Foundation/src/Hash.cpp +++ b/Foundation/src/Hash.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/HashStatistic.cpp b/Foundation/src/HashStatistic.cpp old mode 100644 new mode 100755 index 2a430c03c..591603f01 --- a/Foundation/src/HashStatistic.cpp +++ b/Foundation/src/HashStatistic.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/HexBinaryDecoder.cpp b/Foundation/src/HexBinaryDecoder.cpp old mode 100644 new mode 100755 index 969f6e9d7..ab8f122c3 --- a/Foundation/src/HexBinaryDecoder.cpp +++ b/Foundation/src/HexBinaryDecoder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/HexBinaryEncoder.cpp b/Foundation/src/HexBinaryEncoder.cpp old mode 100644 new mode 100755 index 1cfe7ae2e..46ba3f152 --- a/Foundation/src/HexBinaryEncoder.cpp +++ b/Foundation/src/HexBinaryEncoder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/InflatingStream.cpp b/Foundation/src/InflatingStream.cpp old mode 100644 new mode 100755 index 606f2cbfb..6a55f8bc1 --- a/Foundation/src/InflatingStream.cpp +++ b/Foundation/src/InflatingStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Latin1Encoding.cpp b/Foundation/src/Latin1Encoding.cpp old mode 100644 new mode 100755 index bdb4b407f..c7fa63258 --- a/Foundation/src/Latin1Encoding.cpp +++ b/Foundation/src/Latin1Encoding.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Latin2Encoding.cpp b/Foundation/src/Latin2Encoding.cpp old mode 100644 new mode 100755 index 3012e6d85..d18fe57d1 --- a/Foundation/src/Latin2Encoding.cpp +++ b/Foundation/src/Latin2Encoding.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Latin9Encoding.cpp b/Foundation/src/Latin9Encoding.cpp old mode 100644 new mode 100755 index e478ee18f..4b787cc1e --- a/Foundation/src/Latin9Encoding.cpp +++ b/Foundation/src/Latin9Encoding.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/LineEndingConverter.cpp b/Foundation/src/LineEndingConverter.cpp old mode 100644 new mode 100755 index 9ca1c1e55..e8f80c34b --- a/Foundation/src/LineEndingConverter.cpp +++ b/Foundation/src/LineEndingConverter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/LocalDateTime.cpp b/Foundation/src/LocalDateTime.cpp old mode 100644 new mode 100755 index 620eda9e3..51d6d4aec --- a/Foundation/src/LocalDateTime.cpp +++ b/Foundation/src/LocalDateTime.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/LogFile.cpp b/Foundation/src/LogFile.cpp old mode 100644 new mode 100755 index 97080ed0e..e33680220 --- a/Foundation/src/LogFile.cpp +++ b/Foundation/src/LogFile.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/LogFile_STD.cpp b/Foundation/src/LogFile_STD.cpp old mode 100644 new mode 100755 index 15834ca0f..4857b39ac --- a/Foundation/src/LogFile_STD.cpp +++ b/Foundation/src/LogFile_STD.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/LogFile_VMS.cpp b/Foundation/src/LogFile_VMS.cpp old mode 100644 new mode 100755 index 15f8f7bb0..203c4fdfd --- a/Foundation/src/LogFile_VMS.cpp +++ b/Foundation/src/LogFile_VMS.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/LogFile_WIN32.cpp b/Foundation/src/LogFile_WIN32.cpp old mode 100644 new mode 100755 index f05eaee68..b8a767a70 --- a/Foundation/src/LogFile_WIN32.cpp +++ b/Foundation/src/LogFile_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/LogFile_WIN32U.cpp b/Foundation/src/LogFile_WIN32U.cpp old mode 100644 new mode 100755 index 05ff9b5fb..454dedc0e --- a/Foundation/src/LogFile_WIN32U.cpp +++ b/Foundation/src/LogFile_WIN32U.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/LogStream.cpp b/Foundation/src/LogStream.cpp old mode 100644 new mode 100755 index 00d127fe5..4ff724fce --- a/Foundation/src/LogStream.cpp +++ b/Foundation/src/LogStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Logger.cpp b/Foundation/src/Logger.cpp old mode 100644 new mode 100755 index 6037bf921..4381ad16c --- a/Foundation/src/Logger.cpp +++ b/Foundation/src/Logger.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/LoggingFactory.cpp b/Foundation/src/LoggingFactory.cpp old mode 100644 new mode 100755 index f2947125f..efc0c68da --- a/Foundation/src/LoggingFactory.cpp +++ b/Foundation/src/LoggingFactory.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/LoggingRegistry.cpp b/Foundation/src/LoggingRegistry.cpp old mode 100644 new mode 100755 index 0372bd997..a25b25415 --- a/Foundation/src/LoggingRegistry.cpp +++ b/Foundation/src/LoggingRegistry.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/MD4Engine.cpp b/Foundation/src/MD4Engine.cpp old mode 100644 new mode 100755 index 39ebce040..db375d55e --- a/Foundation/src/MD4Engine.cpp +++ b/Foundation/src/MD4Engine.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // // // MD4 (RFC 1320) algorithm: diff --git a/Foundation/src/MD5Engine.cpp b/Foundation/src/MD5Engine.cpp old mode 100644 new mode 100755 index 64ab6a081..064be6bad --- a/Foundation/src/MD5Engine.cpp +++ b/Foundation/src/MD5Engine.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // // // MD5 (RFC 1321) algorithm: diff --git a/Foundation/src/Manifest.cpp b/Foundation/src/Manifest.cpp old mode 100644 new mode 100755 index c072840b1..f06a57096 --- a/Foundation/src/Manifest.cpp +++ b/Foundation/src/Manifest.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/MemoryPool.cpp b/Foundation/src/MemoryPool.cpp old mode 100644 new mode 100755 index 8e3f4b03d..04bdac358 --- a/Foundation/src/MemoryPool.cpp +++ b/Foundation/src/MemoryPool.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/MemoryStream.cpp b/Foundation/src/MemoryStream.cpp old mode 100644 new mode 100755 index 3b770d8b7..d8459c7d2 --- a/Foundation/src/MemoryStream.cpp +++ b/Foundation/src/MemoryStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Message.cpp b/Foundation/src/Message.cpp old mode 100644 new mode 100755 index 0ef4b9b71..0e494c362 --- a/Foundation/src/Message.cpp +++ b/Foundation/src/Message.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Mutex.cpp b/Foundation/src/Mutex.cpp old mode 100644 new mode 100755 index 51b03c006..17c36996f --- a/Foundation/src/Mutex.cpp +++ b/Foundation/src/Mutex.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Mutex_POSIX.cpp b/Foundation/src/Mutex_POSIX.cpp old mode 100644 new mode 100755 index 913755c2b..ceb704ee5 --- a/Foundation/src/Mutex_POSIX.cpp +++ b/Foundation/src/Mutex_POSIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Mutex_VX.cpp b/Foundation/src/Mutex_VX.cpp old mode 100644 new mode 100755 index 4f00ec13c..8031b304f --- a/Foundation/src/Mutex_VX.cpp +++ b/Foundation/src/Mutex_VX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Mutex_WIN32.cpp b/Foundation/src/Mutex_WIN32.cpp old mode 100644 new mode 100755 index 410869bca..e80064f77 --- a/Foundation/src/Mutex_WIN32.cpp +++ b/Foundation/src/Mutex_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Mutex_WINCE.cpp b/Foundation/src/Mutex_WINCE.cpp old mode 100644 new mode 100755 index 0f73c3ebc..9beb2bd8a --- a/Foundation/src/Mutex_WINCE.cpp +++ b/Foundation/src/Mutex_WINCE.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NamedEvent.cpp b/Foundation/src/NamedEvent.cpp old mode 100644 new mode 100755 index d141ba1db..ddcd17d14 --- a/Foundation/src/NamedEvent.cpp +++ b/Foundation/src/NamedEvent.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NamedEvent_Android.cpp b/Foundation/src/NamedEvent_Android.cpp old mode 100644 new mode 100755 index 301182e98..274a7d340 --- a/Foundation/src/NamedEvent_Android.cpp +++ b/Foundation/src/NamedEvent_Android.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NamedEvent_UNIX.cpp b/Foundation/src/NamedEvent_UNIX.cpp old mode 100644 new mode 100755 index 690d3b286..5d78401bb --- a/Foundation/src/NamedEvent_UNIX.cpp +++ b/Foundation/src/NamedEvent_UNIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NamedEvent_VMS.cpp b/Foundation/src/NamedEvent_VMS.cpp old mode 100644 new mode 100755 index 826b55969..c92e82964 --- a/Foundation/src/NamedEvent_VMS.cpp +++ b/Foundation/src/NamedEvent_VMS.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NamedEvent_WIN32.cpp b/Foundation/src/NamedEvent_WIN32.cpp old mode 100644 new mode 100755 index 2755d6b92..5fcdfaada --- a/Foundation/src/NamedEvent_WIN32.cpp +++ b/Foundation/src/NamedEvent_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NamedEvent_WIN32U.cpp b/Foundation/src/NamedEvent_WIN32U.cpp old mode 100644 new mode 100755 index 6742da22a..ad3202cd0 --- a/Foundation/src/NamedEvent_WIN32U.cpp +++ b/Foundation/src/NamedEvent_WIN32U.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NamedMutex.cpp b/Foundation/src/NamedMutex.cpp old mode 100644 new mode 100755 index d5a10e21d..66370b9e9 --- a/Foundation/src/NamedMutex.cpp +++ b/Foundation/src/NamedMutex.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NamedMutex_Android.cpp b/Foundation/src/NamedMutex_Android.cpp old mode 100644 new mode 100755 index 5ab2c688f..f208fd850 --- a/Foundation/src/NamedMutex_Android.cpp +++ b/Foundation/src/NamedMutex_Android.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NamedMutex_UNIX.cpp b/Foundation/src/NamedMutex_UNIX.cpp old mode 100644 new mode 100755 index 435a5230f..13677569f --- a/Foundation/src/NamedMutex_UNIX.cpp +++ b/Foundation/src/NamedMutex_UNIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NamedMutex_VMS.cpp b/Foundation/src/NamedMutex_VMS.cpp old mode 100644 new mode 100755 index 8a5e2213a..0037a16cc --- a/Foundation/src/NamedMutex_VMS.cpp +++ b/Foundation/src/NamedMutex_VMS.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NamedMutex_WIN32.cpp b/Foundation/src/NamedMutex_WIN32.cpp old mode 100644 new mode 100755 index 3bf7c17a6..e315b78e1 --- a/Foundation/src/NamedMutex_WIN32.cpp +++ b/Foundation/src/NamedMutex_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NamedMutex_WIN32U.cpp b/Foundation/src/NamedMutex_WIN32U.cpp old mode 100644 new mode 100755 index ecc381d51..2ba95596e --- a/Foundation/src/NamedMutex_WIN32U.cpp +++ b/Foundation/src/NamedMutex_WIN32U.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NestedDiagnosticContext.cpp b/Foundation/src/NestedDiagnosticContext.cpp old mode 100644 new mode 100755 index e479136af..fdd2dbf95 --- a/Foundation/src/NestedDiagnosticContext.cpp +++ b/Foundation/src/NestedDiagnosticContext.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Notification.cpp b/Foundation/src/Notification.cpp old mode 100644 new mode 100755 index 7c3581702..4be224876 --- a/Foundation/src/Notification.cpp +++ b/Foundation/src/Notification.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NotificationCenter.cpp b/Foundation/src/NotificationCenter.cpp old mode 100644 new mode 100755 index 455468312..f6e365a30 --- a/Foundation/src/NotificationCenter.cpp +++ b/Foundation/src/NotificationCenter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NotificationQueue.cpp b/Foundation/src/NotificationQueue.cpp old mode 100644 new mode 100755 index f45364b3d..0d55aac95 --- a/Foundation/src/NotificationQueue.cpp +++ b/Foundation/src/NotificationQueue.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NullChannel.cpp b/Foundation/src/NullChannel.cpp old mode 100644 new mode 100755 index 0a737f200..607aa4be4 --- a/Foundation/src/NullChannel.cpp +++ b/Foundation/src/NullChannel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NullStream.cpp b/Foundation/src/NullStream.cpp old mode 100644 new mode 100755 index 81085b0c6..233c2c3a5 --- a/Foundation/src/NullStream.cpp +++ b/Foundation/src/NullStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NumberFormatter.cpp b/Foundation/src/NumberFormatter.cpp old mode 100644 new mode 100755 index b7b27e791..45fdb3d0a --- a/Foundation/src/NumberFormatter.cpp +++ b/Foundation/src/NumberFormatter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NumberParser.cpp b/Foundation/src/NumberParser.cpp old mode 100644 new mode 100755 index 386f0f965..cf32ef2a6 --- a/Foundation/src/NumberParser.cpp +++ b/Foundation/src/NumberParser.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/NumericString.cpp b/Foundation/src/NumericString.cpp old mode 100644 new mode 100755 index 37ecf7f14..78e19bd77 --- a/Foundation/src/NumericString.cpp +++ b/Foundation/src/NumericString.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // // +++ double conversion +++ diff --git a/Foundation/src/OpcomChannel.cpp b/Foundation/src/OpcomChannel.cpp old mode 100644 new mode 100755 index f175b1642..84ee81f0c --- a/Foundation/src/OpcomChannel.cpp +++ b/Foundation/src/OpcomChannel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Path.cpp b/Foundation/src/Path.cpp old mode 100644 new mode 100755 index c96bd956c..6b4e09788 --- a/Foundation/src/Path.cpp +++ b/Foundation/src/Path.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Path_UNIX.cpp b/Foundation/src/Path_UNIX.cpp old mode 100644 new mode 100755 index ecde66261..6ec7b7ae3 --- a/Foundation/src/Path_UNIX.cpp +++ b/Foundation/src/Path_UNIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Path_VMS.cpp b/Foundation/src/Path_VMS.cpp old mode 100644 new mode 100755 index f7fc5f38b..be83c62fd --- a/Foundation/src/Path_VMS.cpp +++ b/Foundation/src/Path_VMS.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Path_WIN32.cpp b/Foundation/src/Path_WIN32.cpp old mode 100644 new mode 100755 index 4b6c68640..76165821c --- a/Foundation/src/Path_WIN32.cpp +++ b/Foundation/src/Path_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Path_WIN32U.cpp b/Foundation/src/Path_WIN32U.cpp old mode 100644 new mode 100755 index 99b162ffa..10d2b7fc4 --- a/Foundation/src/Path_WIN32U.cpp +++ b/Foundation/src/Path_WIN32U.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Path_WINCE.cpp b/Foundation/src/Path_WINCE.cpp old mode 100644 new mode 100755 index ad14d12b6..87dda31c5 --- a/Foundation/src/Path_WINCE.cpp +++ b/Foundation/src/Path_WINCE.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/PatternFormatter.cpp b/Foundation/src/PatternFormatter.cpp old mode 100644 new mode 100755 index 71748f413..b31ccfd2c --- a/Foundation/src/PatternFormatter.cpp +++ b/Foundation/src/PatternFormatter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Pipe.cpp b/Foundation/src/Pipe.cpp old mode 100644 new mode 100755 index 3c48a5865..008d08e47 --- a/Foundation/src/Pipe.cpp +++ b/Foundation/src/Pipe.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/PipeImpl.cpp b/Foundation/src/PipeImpl.cpp old mode 100644 new mode 100755 index 341556f7e..5beebcc14 --- a/Foundation/src/PipeImpl.cpp +++ b/Foundation/src/PipeImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/PipeImpl_DUMMY.cpp b/Foundation/src/PipeImpl_DUMMY.cpp old mode 100644 new mode 100755 index cb251293b..ebf03f4d9 --- a/Foundation/src/PipeImpl_DUMMY.cpp +++ b/Foundation/src/PipeImpl_DUMMY.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/PipeImpl_POSIX.cpp b/Foundation/src/PipeImpl_POSIX.cpp old mode 100644 new mode 100755 index e602a4af9..23b99bfe1 --- a/Foundation/src/PipeImpl_POSIX.cpp +++ b/Foundation/src/PipeImpl_POSIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/PipeImpl_WIN32.cpp b/Foundation/src/PipeImpl_WIN32.cpp old mode 100644 new mode 100755 index 4aae14a58..9d298a721 --- a/Foundation/src/PipeImpl_WIN32.cpp +++ b/Foundation/src/PipeImpl_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/PipeStream.cpp b/Foundation/src/PipeStream.cpp old mode 100644 new mode 100755 index 10a9a711c..fe135622f --- a/Foundation/src/PipeStream.cpp +++ b/Foundation/src/PipeStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/PriorityNotificationQueue.cpp b/Foundation/src/PriorityNotificationQueue.cpp old mode 100644 new mode 100755 index 489e3ef3e..c29ded29b --- a/Foundation/src/PriorityNotificationQueue.cpp +++ b/Foundation/src/PriorityNotificationQueue.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Process.cpp b/Foundation/src/Process.cpp old mode 100644 new mode 100755 index 378841661..aba114120 --- a/Foundation/src/Process.cpp +++ b/Foundation/src/Process.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Process_UNIX.cpp b/Foundation/src/Process_UNIX.cpp old mode 100644 new mode 100755 index ff2adec0a..f118f9787 --- a/Foundation/src/Process_UNIX.cpp +++ b/Foundation/src/Process_UNIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Process_VMS.cpp b/Foundation/src/Process_VMS.cpp old mode 100644 new mode 100755 index 0fcc3e759..47fd118b3 --- a/Foundation/src/Process_VMS.cpp +++ b/Foundation/src/Process_VMS.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Process_VX.cpp b/Foundation/src/Process_VX.cpp old mode 100644 new mode 100755 index caad13cf2..5ec48b110 --- a/Foundation/src/Process_VX.cpp +++ b/Foundation/src/Process_VX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Process_WIN32.cpp b/Foundation/src/Process_WIN32.cpp old mode 100644 new mode 100755 index 96e936fe6..79782cf2f --- a/Foundation/src/Process_WIN32.cpp +++ b/Foundation/src/Process_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Process_WIN32U.cpp b/Foundation/src/Process_WIN32U.cpp old mode 100644 new mode 100755 index 869c995fc..52bafd478 --- a/Foundation/src/Process_WIN32U.cpp +++ b/Foundation/src/Process_WIN32U.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Process_WINCE.cpp b/Foundation/src/Process_WINCE.cpp old mode 100644 new mode 100755 index bf7d91cb8..a694986b4 --- a/Foundation/src/Process_WINCE.cpp +++ b/Foundation/src/Process_WINCE.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/PurgeStrategy.cpp b/Foundation/src/PurgeStrategy.cpp old mode 100644 new mode 100755 index 86fe86edd..97a56f444 --- a/Foundation/src/PurgeStrategy.cpp +++ b/Foundation/src/PurgeStrategy.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/RWLock.cpp b/Foundation/src/RWLock.cpp old mode 100644 new mode 100755 index f56cb1e78..6ee663634 --- a/Foundation/src/RWLock.cpp +++ b/Foundation/src/RWLock.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/RWLock_Android.cpp b/Foundation/src/RWLock_Android.cpp old mode 100644 new mode 100755 index 5a7224ce8..543d817aa --- a/Foundation/src/RWLock_Android.cpp +++ b/Foundation/src/RWLock_Android.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/RWLock_POSIX.cpp b/Foundation/src/RWLock_POSIX.cpp old mode 100644 new mode 100755 index ea3e0f7c6..8206f3463 --- a/Foundation/src/RWLock_POSIX.cpp +++ b/Foundation/src/RWLock_POSIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/RWLock_VX.cpp b/Foundation/src/RWLock_VX.cpp old mode 100644 new mode 100755 index 0ed6f22f3..6174b70d1 --- a/Foundation/src/RWLock_VX.cpp +++ b/Foundation/src/RWLock_VX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/RWLock_WIN32.cpp b/Foundation/src/RWLock_WIN32.cpp old mode 100644 new mode 100755 index 20dd6d69c..74c836b66 --- a/Foundation/src/RWLock_WIN32.cpp +++ b/Foundation/src/RWLock_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/RWLock_WINCE.cpp b/Foundation/src/RWLock_WINCE.cpp old mode 100644 new mode 100755 index 41f542d39..f5df92a6e --- a/Foundation/src/RWLock_WINCE.cpp +++ b/Foundation/src/RWLock_WINCE.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2009-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Random.cpp b/Foundation/src/Random.cpp old mode 100644 new mode 100755 index 1e7820eaa..dce1994c6 --- a/Foundation/src/Random.cpp +++ b/Foundation/src/Random.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // // // Based on the FreeBSD random number generator. diff --git a/Foundation/src/RandomStream.cpp b/Foundation/src/RandomStream.cpp old mode 100644 new mode 100755 index 1f60428f2..3dd114577 --- a/Foundation/src/RandomStream.cpp +++ b/Foundation/src/RandomStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/RefCountedObject.cpp b/Foundation/src/RefCountedObject.cpp old mode 100644 new mode 100755 index 6057b8b14..b6ab31afd --- a/Foundation/src/RefCountedObject.cpp +++ b/Foundation/src/RefCountedObject.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/RegularExpression.cpp b/Foundation/src/RegularExpression.cpp old mode 100644 new mode 100755 index 1ffa9e829..1fb0bdee9 --- a/Foundation/src/RegularExpression.cpp +++ b/Foundation/src/RegularExpression.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/RotateStrategy.cpp b/Foundation/src/RotateStrategy.cpp old mode 100644 new mode 100755 index b00985ee6..af57ae904 --- a/Foundation/src/RotateStrategy.cpp +++ b/Foundation/src/RotateStrategy.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Runnable.cpp b/Foundation/src/Runnable.cpp old mode 100644 new mode 100755 index 2643b1738..08d1074cc --- a/Foundation/src/Runnable.cpp +++ b/Foundation/src/Runnable.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SHA1Engine.cpp b/Foundation/src/SHA1Engine.cpp old mode 100644 new mode 100755 index c2a96e80d..7ea17df56 --- a/Foundation/src/SHA1Engine.cpp +++ b/Foundation/src/SHA1Engine.cpp @@ -13,27 +13,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Semaphore.cpp b/Foundation/src/Semaphore.cpp old mode 100644 new mode 100755 index d52192a7a..2895283dc --- a/Foundation/src/Semaphore.cpp +++ b/Foundation/src/Semaphore.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Semaphore_POSIX.cpp b/Foundation/src/Semaphore_POSIX.cpp old mode 100644 new mode 100755 index 1b9911e85..1aa13035b --- a/Foundation/src/Semaphore_POSIX.cpp +++ b/Foundation/src/Semaphore_POSIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Semaphore_VX.cpp b/Foundation/src/Semaphore_VX.cpp old mode 100644 new mode 100755 index 96545927a..468a33b59 --- a/Foundation/src/Semaphore_VX.cpp +++ b/Foundation/src/Semaphore_VX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Semaphore_WIN32.cpp b/Foundation/src/Semaphore_WIN32.cpp old mode 100644 new mode 100755 index 733269723..faae19089 --- a/Foundation/src/Semaphore_WIN32.cpp +++ b/Foundation/src/Semaphore_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SharedLibrary.cpp b/Foundation/src/SharedLibrary.cpp old mode 100644 new mode 100755 index 23cfea731..f847d9fb6 --- a/Foundation/src/SharedLibrary.cpp +++ b/Foundation/src/SharedLibrary.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SharedLibrary_HPUX.cpp b/Foundation/src/SharedLibrary_HPUX.cpp old mode 100644 new mode 100755 index e29d23bb3..a9998d460 --- a/Foundation/src/SharedLibrary_HPUX.cpp +++ b/Foundation/src/SharedLibrary_HPUX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SharedLibrary_UNIX.cpp b/Foundation/src/SharedLibrary_UNIX.cpp old mode 100644 new mode 100755 index ec3156075..0153fabbe --- a/Foundation/src/SharedLibrary_UNIX.cpp +++ b/Foundation/src/SharedLibrary_UNIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SharedLibrary_VMS.cpp b/Foundation/src/SharedLibrary_VMS.cpp old mode 100644 new mode 100755 index 40e3421ea..3bd6ee0c0 --- a/Foundation/src/SharedLibrary_VMS.cpp +++ b/Foundation/src/SharedLibrary_VMS.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SharedLibrary_VX.cpp b/Foundation/src/SharedLibrary_VX.cpp old mode 100644 new mode 100755 index c0122d9be..0901ff44a --- a/Foundation/src/SharedLibrary_VX.cpp +++ b/Foundation/src/SharedLibrary_VX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SharedLibrary_WIN32.cpp b/Foundation/src/SharedLibrary_WIN32.cpp old mode 100644 new mode 100755 index cd108f40a..ba7dabf2c --- a/Foundation/src/SharedLibrary_WIN32.cpp +++ b/Foundation/src/SharedLibrary_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SharedLibrary_WIN32U.cpp b/Foundation/src/SharedLibrary_WIN32U.cpp old mode 100644 new mode 100755 index bb02e092a..650ac0513 --- a/Foundation/src/SharedLibrary_WIN32U.cpp +++ b/Foundation/src/SharedLibrary_WIN32U.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SharedMemory.cpp b/Foundation/src/SharedMemory.cpp old mode 100644 new mode 100755 index 5ea8c2ff3..62d29fda5 --- a/Foundation/src/SharedMemory.cpp +++ b/Foundation/src/SharedMemory.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SharedMemory_DUMMY.cpp b/Foundation/src/SharedMemory_DUMMY.cpp old mode 100644 new mode 100755 index 881444f31..b1c5b3f35 --- a/Foundation/src/SharedMemory_DUMMY.cpp +++ b/Foundation/src/SharedMemory_DUMMY.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SharedMemory_POSIX.cpp b/Foundation/src/SharedMemory_POSIX.cpp old mode 100644 new mode 100755 index 77395f16b..4f0ff1bae --- a/Foundation/src/SharedMemory_POSIX.cpp +++ b/Foundation/src/SharedMemory_POSIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SharedMemory_WIN32.cpp b/Foundation/src/SharedMemory_WIN32.cpp old mode 100644 new mode 100755 index 95e812d96..a36339a36 --- a/Foundation/src/SharedMemory_WIN32.cpp +++ b/Foundation/src/SharedMemory_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SignalHandler.cpp b/Foundation/src/SignalHandler.cpp old mode 100644 new mode 100755 index 5299d9202..2418638da --- a/Foundation/src/SignalHandler.cpp +++ b/Foundation/src/SignalHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SimpleFileChannel.cpp b/Foundation/src/SimpleFileChannel.cpp old mode 100644 new mode 100755 index 57dd7b381..ab39a7683 --- a/Foundation/src/SimpleFileChannel.cpp +++ b/Foundation/src/SimpleFileChannel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SortedDirectoryIterator.cpp b/Foundation/src/SortedDirectoryIterator.cpp old mode 100644 new mode 100755 index 918ef971e..3d4e7bf12 --- a/Foundation/src/SortedDirectoryIterator.cpp +++ b/Foundation/src/SortedDirectoryIterator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // #include "Poco/SortedDirectoryIterator.h" diff --git a/Foundation/src/SplitterChannel.cpp b/Foundation/src/SplitterChannel.cpp old mode 100644 new mode 100755 index 8ee6a1d36..2b264c566 --- a/Foundation/src/SplitterChannel.cpp +++ b/Foundation/src/SplitterChannel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Stopwatch.cpp b/Foundation/src/Stopwatch.cpp old mode 100644 new mode 100755 index 26c1a6288..8e28d59f0 --- a/Foundation/src/Stopwatch.cpp +++ b/Foundation/src/Stopwatch.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/StreamChannel.cpp b/Foundation/src/StreamChannel.cpp old mode 100644 new mode 100755 index f57528af7..419d46f53 --- a/Foundation/src/StreamChannel.cpp +++ b/Foundation/src/StreamChannel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/StreamConverter.cpp b/Foundation/src/StreamConverter.cpp old mode 100644 new mode 100755 index fda9cc9b6..20895e854 --- a/Foundation/src/StreamConverter.cpp +++ b/Foundation/src/StreamConverter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/StreamCopier.cpp b/Foundation/src/StreamCopier.cpp old mode 100644 new mode 100755 index de85b172a..f0c4445b1 --- a/Foundation/src/StreamCopier.cpp +++ b/Foundation/src/StreamCopier.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/StreamTokenizer.cpp b/Foundation/src/StreamTokenizer.cpp old mode 100644 new mode 100755 index c5c6abb69..6dbaf90fd --- a/Foundation/src/StreamTokenizer.cpp +++ b/Foundation/src/StreamTokenizer.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/String.cpp b/Foundation/src/String.cpp old mode 100644 new mode 100755 index f46b08fc0..c3191a8b9 --- a/Foundation/src/String.cpp +++ b/Foundation/src/String.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/StringTokenizer.cpp b/Foundation/src/StringTokenizer.cpp old mode 100644 new mode 100755 index 4bf714c79..95ce635a6 --- a/Foundation/src/StringTokenizer.cpp +++ b/Foundation/src/StringTokenizer.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SynchronizedObject.cpp b/Foundation/src/SynchronizedObject.cpp old mode 100644 new mode 100755 index 04c1b8022..3ea0eaaab --- a/Foundation/src/SynchronizedObject.cpp +++ b/Foundation/src/SynchronizedObject.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/SyslogChannel.cpp b/Foundation/src/SyslogChannel.cpp old mode 100644 new mode 100755 index f29761259..585be6061 --- a/Foundation/src/SyslogChannel.cpp +++ b/Foundation/src/SyslogChannel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Task.cpp b/Foundation/src/Task.cpp old mode 100644 new mode 100755 index c69bb75ec..c8289d1ec --- a/Foundation/src/Task.cpp +++ b/Foundation/src/Task.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/TaskManager.cpp b/Foundation/src/TaskManager.cpp old mode 100644 new mode 100755 index 57bd9d278..3fdf011b1 --- a/Foundation/src/TaskManager.cpp +++ b/Foundation/src/TaskManager.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/TaskNotification.cpp b/Foundation/src/TaskNotification.cpp old mode 100644 new mode 100755 index 3fd83421c..2d5239111 --- a/Foundation/src/TaskNotification.cpp +++ b/Foundation/src/TaskNotification.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/TeeStream.cpp b/Foundation/src/TeeStream.cpp old mode 100644 new mode 100755 index b87ad8815..bbe9f1690 --- a/Foundation/src/TeeStream.cpp +++ b/Foundation/src/TeeStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/TemporaryFile.cpp b/Foundation/src/TemporaryFile.cpp old mode 100644 new mode 100755 index 20e5849cd..5fae3c191 --- a/Foundation/src/TemporaryFile.cpp +++ b/Foundation/src/TemporaryFile.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/TextBufferIterator.cpp b/Foundation/src/TextBufferIterator.cpp old mode 100644 new mode 100755 index 0c00916f3..b4ce1293c --- a/Foundation/src/TextBufferIterator.cpp +++ b/Foundation/src/TextBufferIterator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/TextConverter.cpp b/Foundation/src/TextConverter.cpp old mode 100644 new mode 100755 index 78df8b21a..582e73e78 --- a/Foundation/src/TextConverter.cpp +++ b/Foundation/src/TextConverter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/TextEncoding.cpp b/Foundation/src/TextEncoding.cpp old mode 100644 new mode 100755 index 467b2dd98..169f44485 --- a/Foundation/src/TextEncoding.cpp +++ b/Foundation/src/TextEncoding.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/TextIterator.cpp b/Foundation/src/TextIterator.cpp old mode 100644 new mode 100755 index 09c8efded..b45f21056 --- a/Foundation/src/TextIterator.cpp +++ b/Foundation/src/TextIterator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Thread.cpp b/Foundation/src/Thread.cpp old mode 100644 new mode 100755 index 5f2c077cb..a7fcb569b --- a/Foundation/src/Thread.cpp +++ b/Foundation/src/Thread.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/ThreadLocal.cpp b/Foundation/src/ThreadLocal.cpp old mode 100644 new mode 100755 index d14b6c74a..340385c10 --- a/Foundation/src/ThreadLocal.cpp +++ b/Foundation/src/ThreadLocal.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/ThreadPool.cpp b/Foundation/src/ThreadPool.cpp old mode 100644 new mode 100755 index f3d52b256..708542e54 --- a/Foundation/src/ThreadPool.cpp +++ b/Foundation/src/ThreadPool.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/ThreadTarget.cpp b/Foundation/src/ThreadTarget.cpp old mode 100644 new mode 100755 index 83e16a745..2e09896c0 --- a/Foundation/src/ThreadTarget.cpp +++ b/Foundation/src/ThreadTarget.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Thread_POSIX.cpp b/Foundation/src/Thread_POSIX.cpp old mode 100644 new mode 100755 index 4f96b5d3a..ae9707769 --- a/Foundation/src/Thread_POSIX.cpp +++ b/Foundation/src/Thread_POSIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Thread_VX.cpp b/Foundation/src/Thread_VX.cpp old mode 100644 new mode 100755 index b47e7e079..a8be66d04 --- a/Foundation/src/Thread_VX.cpp +++ b/Foundation/src/Thread_VX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Thread_WIN32.cpp b/Foundation/src/Thread_WIN32.cpp old mode 100644 new mode 100755 index 7bcb907a5..8a6c34f04 --- a/Foundation/src/Thread_WIN32.cpp +++ b/Foundation/src/Thread_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Thread_WINCE.cpp b/Foundation/src/Thread_WINCE.cpp old mode 100644 new mode 100755 index 21a2acbb8..803c38010 --- a/Foundation/src/Thread_WINCE.cpp +++ b/Foundation/src/Thread_WINCE.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/TimedNotificationQueue.cpp b/Foundation/src/TimedNotificationQueue.cpp old mode 100644 new mode 100755 index 6afa18fb1..5b0f9296b --- a/Foundation/src/TimedNotificationQueue.cpp +++ b/Foundation/src/TimedNotificationQueue.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Timer.cpp b/Foundation/src/Timer.cpp old mode 100644 new mode 100755 index cfe2aad07..fe8543853 --- a/Foundation/src/Timer.cpp +++ b/Foundation/src/Timer.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Timespan.cpp b/Foundation/src/Timespan.cpp old mode 100644 new mode 100755 index c8b601606..216ab6cfc --- a/Foundation/src/Timespan.cpp +++ b/Foundation/src/Timespan.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Timestamp.cpp b/Foundation/src/Timestamp.cpp old mode 100644 new mode 100755 index 40380d939..a3c8a55f0 --- a/Foundation/src/Timestamp.cpp +++ b/Foundation/src/Timestamp.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Timezone.cpp b/Foundation/src/Timezone.cpp old mode 100644 new mode 100755 index b1542811d..0c2372b21 --- a/Foundation/src/Timezone.cpp +++ b/Foundation/src/Timezone.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Timezone_UNIX.cpp b/Foundation/src/Timezone_UNIX.cpp old mode 100644 new mode 100755 index 422ef4eec..af1f9bd36 --- a/Foundation/src/Timezone_UNIX.cpp +++ b/Foundation/src/Timezone_UNIX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Timezone_VX.cpp b/Foundation/src/Timezone_VX.cpp old mode 100644 new mode 100755 index 63d3b3ae3..de2e50fd4 --- a/Foundation/src/Timezone_VX.cpp +++ b/Foundation/src/Timezone_VX.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Timezone_WIN32.cpp b/Foundation/src/Timezone_WIN32.cpp old mode 100644 new mode 100755 index 84db2be10..03cbba386 --- a/Foundation/src/Timezone_WIN32.cpp +++ b/Foundation/src/Timezone_WIN32.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Timezone_WINCE.cpp b/Foundation/src/Timezone_WINCE.cpp old mode 100644 new mode 100755 index 081e0b0b3..f317da82a --- a/Foundation/src/Timezone_WINCE.cpp +++ b/Foundation/src/Timezone_WINCE.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Token.cpp b/Foundation/src/Token.cpp old mode 100644 new mode 100755 index 4f1e39694..b57b26ced --- a/Foundation/src/Token.cpp +++ b/Foundation/src/Token.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/URI.cpp b/Foundation/src/URI.cpp old mode 100644 new mode 100755 index 933673ec8..399e965b9 --- a/Foundation/src/URI.cpp +++ b/Foundation/src/URI.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/URIStreamFactory.cpp b/Foundation/src/URIStreamFactory.cpp old mode 100644 new mode 100755 index a323e75a8..b3f158d13 --- a/Foundation/src/URIStreamFactory.cpp +++ b/Foundation/src/URIStreamFactory.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/URIStreamOpener.cpp b/Foundation/src/URIStreamOpener.cpp old mode 100644 new mode 100755 index 5cb9b0e38..825fb1c60 --- a/Foundation/src/URIStreamOpener.cpp +++ b/Foundation/src/URIStreamOpener.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/UTF16Encoding.cpp b/Foundation/src/UTF16Encoding.cpp old mode 100644 new mode 100755 index 7506730c7..705972f17 --- a/Foundation/src/UTF16Encoding.cpp +++ b/Foundation/src/UTF16Encoding.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/UTF32Encoding.cpp b/Foundation/src/UTF32Encoding.cpp old mode 100644 new mode 100755 index 9d6b82db4..68046db02 --- a/Foundation/src/UTF32Encoding.cpp +++ b/Foundation/src/UTF32Encoding.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/UTF8Encoding.cpp b/Foundation/src/UTF8Encoding.cpp old mode 100644 new mode 100755 index fc4a53a55..1ebebdfd5 --- a/Foundation/src/UTF8Encoding.cpp +++ b/Foundation/src/UTF8Encoding.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/UTF8String.cpp b/Foundation/src/UTF8String.cpp old mode 100644 new mode 100755 index 7fdec5e49..8f10d8a0f --- a/Foundation/src/UTF8String.cpp +++ b/Foundation/src/UTF8String.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/UUID.cpp b/Foundation/src/UUID.cpp old mode 100644 new mode 100755 index a7ce40dc8..0d49970e3 --- a/Foundation/src/UUID.cpp +++ b/Foundation/src/UUID.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/UUIDGenerator.cpp b/Foundation/src/UUIDGenerator.cpp old mode 100644 new mode 100755 index d5b4144a2..a822ada01 --- a/Foundation/src/UUIDGenerator.cpp +++ b/Foundation/src/UUIDGenerator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Unicode.cpp b/Foundation/src/Unicode.cpp old mode 100644 new mode 100755 index add9c7c38..1d74eaf49 --- a/Foundation/src/Unicode.cpp +++ b/Foundation/src/Unicode.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/UnicodeConverter.cpp b/Foundation/src/UnicodeConverter.cpp old mode 100644 new mode 100755 index 7f2b44b59..2cc10fa01 --- a/Foundation/src/UnicodeConverter.cpp +++ b/Foundation/src/UnicodeConverter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Var.cpp b/Foundation/src/Var.cpp old mode 100644 new mode 100755 index 1ba53baef..9e170a6ea --- a/Foundation/src/Var.cpp +++ b/Foundation/src/Var.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/VarHolder.cpp b/Foundation/src/VarHolder.cpp old mode 100644 new mode 100755 index f39df1739..6240075d4 --- a/Foundation/src/VarHolder.cpp +++ b/Foundation/src/VarHolder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/VarIterator.cpp b/Foundation/src/VarIterator.cpp old mode 100644 new mode 100755 index 20bb3d9ce..55a59ea80 --- a/Foundation/src/VarIterator.cpp +++ b/Foundation/src/VarIterator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Void.cpp b/Foundation/src/Void.cpp old mode 100644 new mode 100755 index b7a013261..204c36d25 --- a/Foundation/src/Void.cpp +++ b/Foundation/src/Void.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Windows1250Encoding.cpp b/Foundation/src/Windows1250Encoding.cpp old mode 100644 new mode 100755 index 1dd4b3367..256a6749c --- a/Foundation/src/Windows1250Encoding.cpp +++ b/Foundation/src/Windows1250Encoding.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Windows1251Encoding.cpp b/Foundation/src/Windows1251Encoding.cpp old mode 100644 new mode 100755 index 860b76a4f..02b551d4e --- a/Foundation/src/Windows1251Encoding.cpp +++ b/Foundation/src/Windows1251Encoding.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/Windows1252Encoding.cpp b/Foundation/src/Windows1252Encoding.cpp old mode 100644 new mode 100755 index 9eaf3eb8b..8aa8afdac --- a/Foundation/src/Windows1252Encoding.cpp +++ b/Foundation/src/Windows1252Encoding.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/src/WindowsConsoleChannel.cpp b/Foundation/src/WindowsConsoleChannel.cpp old mode 100644 new mode 100755 index f303dd51b..6b324ca9a --- a/Foundation/src/WindowsConsoleChannel.cpp +++ b/Foundation/src/WindowsConsoleChannel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ActiveDispatcherTest.cpp b/Foundation/testsuite/src/ActiveDispatcherTest.cpp old mode 100644 new mode 100755 index ce646e202..d59bb6b4e --- a/Foundation/testsuite/src/ActiveDispatcherTest.cpp +++ b/Foundation/testsuite/src/ActiveDispatcherTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // All rights reserved. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ActiveDispatcherTest.h b/Foundation/testsuite/src/ActiveDispatcherTest.h old mode 100644 new mode 100755 index 3ef86f5e1..2c4268c4b --- a/Foundation/testsuite/src/ActiveDispatcherTest.h +++ b/Foundation/testsuite/src/ActiveDispatcherTest.h @@ -5,27 +5,7 @@ // // Definition of the ActiveDispatcherTest class. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ActiveMethodTest.cpp b/Foundation/testsuite/src/ActiveMethodTest.cpp old mode 100644 new mode 100755 index 7807bb3b1..5d28ee330 --- a/Foundation/testsuite/src/ActiveMethodTest.cpp +++ b/Foundation/testsuite/src/ActiveMethodTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ActiveMethodTest.h b/Foundation/testsuite/src/ActiveMethodTest.h old mode 100644 new mode 100755 index 0fd4310d5..2b1f9474e --- a/Foundation/testsuite/src/ActiveMethodTest.h +++ b/Foundation/testsuite/src/ActiveMethodTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ActivityTest.cpp b/Foundation/testsuite/src/ActivityTest.cpp old mode 100644 new mode 100755 index 95d1cbc85..8c0bce179 --- a/Foundation/testsuite/src/ActivityTest.cpp +++ b/Foundation/testsuite/src/ActivityTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ActivityTest.h b/Foundation/testsuite/src/ActivityTest.h old mode 100644 new mode 100755 index ba9a70175..d99f19ebf --- a/Foundation/testsuite/src/ActivityTest.h +++ b/Foundation/testsuite/src/ActivityTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/AnyTest.cpp b/Foundation/testsuite/src/AnyTest.cpp old mode 100644 new mode 100755 index 7ec302327..330789b7f --- a/Foundation/testsuite/src/AnyTest.cpp +++ b/Foundation/testsuite/src/AnyTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/AnyTest.h b/Foundation/testsuite/src/AnyTest.h old mode 100644 new mode 100755 index 246cb8124..8d8a5a14b --- a/Foundation/testsuite/src/AnyTest.h +++ b/Foundation/testsuite/src/AnyTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // #ifndef AnyTest_INCLUDED diff --git a/Foundation/testsuite/src/ArrayTest.cpp b/Foundation/testsuite/src/ArrayTest.cpp old mode 100644 new mode 100755 index ed77d4651..55c492731 --- a/Foundation/testsuite/src/ArrayTest.cpp +++ b/Foundation/testsuite/src/ArrayTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ArrayTest.h b/Foundation/testsuite/src/ArrayTest.h old mode 100644 new mode 100755 index 1b7dad101..d843e42f5 --- a/Foundation/testsuite/src/ArrayTest.h +++ b/Foundation/testsuite/src/ArrayTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/AutoPtrTest.cpp b/Foundation/testsuite/src/AutoPtrTest.cpp old mode 100644 new mode 100755 index d5b4b612b..31717aeab --- a/Foundation/testsuite/src/AutoPtrTest.cpp +++ b/Foundation/testsuite/src/AutoPtrTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/AutoPtrTest.h b/Foundation/testsuite/src/AutoPtrTest.h old mode 100644 new mode 100755 index c95fe339f..1369de7a2 --- a/Foundation/testsuite/src/AutoPtrTest.h +++ b/Foundation/testsuite/src/AutoPtrTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/AutoReleasePoolTest.cpp b/Foundation/testsuite/src/AutoReleasePoolTest.cpp old mode 100644 new mode 100755 index cbbdf4e98..6db568d12 --- a/Foundation/testsuite/src/AutoReleasePoolTest.cpp +++ b/Foundation/testsuite/src/AutoReleasePoolTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/AutoReleasePoolTest.h b/Foundation/testsuite/src/AutoReleasePoolTest.h old mode 100644 new mode 100755 index b932bf068..a26f8d6cc --- a/Foundation/testsuite/src/AutoReleasePoolTest.h +++ b/Foundation/testsuite/src/AutoReleasePoolTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/Base32Test.cpp b/Foundation/testsuite/src/Base32Test.cpp old mode 100644 new mode 100755 index 37a6fab7e..4bc1c33d4 --- a/Foundation/testsuite/src/Base32Test.cpp +++ b/Foundation/testsuite/src/Base32Test.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/Base32Test.h b/Foundation/testsuite/src/Base32Test.h old mode 100644 new mode 100755 index 509c19954..8b7f42233 --- a/Foundation/testsuite/src/Base32Test.h +++ b/Foundation/testsuite/src/Base32Test.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/Base64Test.cpp b/Foundation/testsuite/src/Base64Test.cpp old mode 100644 new mode 100755 index cb099c33c..f5af89e09 --- a/Foundation/testsuite/src/Base64Test.cpp +++ b/Foundation/testsuite/src/Base64Test.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/Base64Test.h b/Foundation/testsuite/src/Base64Test.h old mode 100644 new mode 100755 index f7b85de83..66280de4c --- a/Foundation/testsuite/src/Base64Test.h +++ b/Foundation/testsuite/src/Base64Test.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/BasicEventTest.cpp b/Foundation/testsuite/src/BasicEventTest.cpp old mode 100644 new mode 100755 index c78f7961d..f593c1a79 --- a/Foundation/testsuite/src/BasicEventTest.cpp +++ b/Foundation/testsuite/src/BasicEventTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/BasicEventTest.h b/Foundation/testsuite/src/BasicEventTest.h old mode 100644 new mode 100755 index d9694c005..4dc0d037e --- a/Foundation/testsuite/src/BasicEventTest.h +++ b/Foundation/testsuite/src/BasicEventTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/BinaryReaderWriterTest.cpp b/Foundation/testsuite/src/BinaryReaderWriterTest.cpp old mode 100644 new mode 100755 index 17efb046f..b9f689908 --- a/Foundation/testsuite/src/BinaryReaderWriterTest.cpp +++ b/Foundation/testsuite/src/BinaryReaderWriterTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/BinaryReaderWriterTest.h b/Foundation/testsuite/src/BinaryReaderWriterTest.h old mode 100644 new mode 100755 index f4d8dd1fb..c6dadbee7 --- a/Foundation/testsuite/src/BinaryReaderWriterTest.h +++ b/Foundation/testsuite/src/BinaryReaderWriterTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ByteOrderTest.cpp b/Foundation/testsuite/src/ByteOrderTest.cpp old mode 100644 new mode 100755 index bf706a78f..f34cb8616 --- a/Foundation/testsuite/src/ByteOrderTest.cpp +++ b/Foundation/testsuite/src/ByteOrderTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ByteOrderTest.h b/Foundation/testsuite/src/ByteOrderTest.h old mode 100644 new mode 100755 index edaf7bd8a..61a76a486 --- a/Foundation/testsuite/src/ByteOrderTest.h +++ b/Foundation/testsuite/src/ByteOrderTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/CacheTestSuite.cpp b/Foundation/testsuite/src/CacheTestSuite.cpp old mode 100644 new mode 100755 index a96d03234..67de788dd --- a/Foundation/testsuite/src/CacheTestSuite.cpp +++ b/Foundation/testsuite/src/CacheTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/CacheTestSuite.h b/Foundation/testsuite/src/CacheTestSuite.h old mode 100644 new mode 100755 index 56bfcddb5..8a70b0905 --- a/Foundation/testsuite/src/CacheTestSuite.h +++ b/Foundation/testsuite/src/CacheTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ChannelTest.cpp b/Foundation/testsuite/src/ChannelTest.cpp old mode 100644 new mode 100755 index dd7dae41a..270d63a05 --- a/Foundation/testsuite/src/ChannelTest.cpp +++ b/Foundation/testsuite/src/ChannelTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ChannelTest.h b/Foundation/testsuite/src/ChannelTest.h old mode 100644 new mode 100755 index 6a720bf81..2b031ac87 --- a/Foundation/testsuite/src/ChannelTest.h +++ b/Foundation/testsuite/src/ChannelTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ClassLoaderTest.cpp b/Foundation/testsuite/src/ClassLoaderTest.cpp old mode 100644 new mode 100755 index addf5c4ee..7b697f8f7 --- a/Foundation/testsuite/src/ClassLoaderTest.cpp +++ b/Foundation/testsuite/src/ClassLoaderTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ClassLoaderTest.h b/Foundation/testsuite/src/ClassLoaderTest.h old mode 100644 new mode 100755 index 571a63204..68403f047 --- a/Foundation/testsuite/src/ClassLoaderTest.h +++ b/Foundation/testsuite/src/ClassLoaderTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ClockTest.cpp b/Foundation/testsuite/src/ClockTest.cpp old mode 100644 new mode 100755 index 4bec4d36a..6adbf72f3 --- a/Foundation/testsuite/src/ClockTest.cpp +++ b/Foundation/testsuite/src/ClockTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2013, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ClockTest.h b/Foundation/testsuite/src/ClockTest.h old mode 100644 new mode 100755 index 3796fe402..b1a77ced8 --- a/Foundation/testsuite/src/ClockTest.h +++ b/Foundation/testsuite/src/ClockTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ConditionTest.cpp b/Foundation/testsuite/src/ConditionTest.cpp old mode 100644 new mode 100755 index 759545f40..9f341a6ce --- a/Foundation/testsuite/src/ConditionTest.cpp +++ b/Foundation/testsuite/src/ConditionTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ConditionTest.h b/Foundation/testsuite/src/ConditionTest.h old mode 100644 new mode 100755 index 95a8f2e2e..d9a750a87 --- a/Foundation/testsuite/src/ConditionTest.h +++ b/Foundation/testsuite/src/ConditionTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/CoreTest.cpp b/Foundation/testsuite/src/CoreTest.cpp old mode 100644 new mode 100755 index 6a6a49048..3be50b544 --- a/Foundation/testsuite/src/CoreTest.cpp +++ b/Foundation/testsuite/src/CoreTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/CoreTest.h b/Foundation/testsuite/src/CoreTest.h old mode 100644 new mode 100755 index a521fce91..3b3a6a1d5 --- a/Foundation/testsuite/src/CoreTest.h +++ b/Foundation/testsuite/src/CoreTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/CoreTestSuite.cpp b/Foundation/testsuite/src/CoreTestSuite.cpp old mode 100644 new mode 100755 index 1a056d87e..60939c0c9 --- a/Foundation/testsuite/src/CoreTestSuite.cpp +++ b/Foundation/testsuite/src/CoreTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/CoreTestSuite.h b/Foundation/testsuite/src/CoreTestSuite.h old mode 100644 new mode 100755 index 1979a864b..2cccb675f --- a/Foundation/testsuite/src/CoreTestSuite.h +++ b/Foundation/testsuite/src/CoreTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/CountingStreamTest.cpp b/Foundation/testsuite/src/CountingStreamTest.cpp old mode 100644 new mode 100755 index d2e2515cb..c1bc24a56 --- a/Foundation/testsuite/src/CountingStreamTest.cpp +++ b/Foundation/testsuite/src/CountingStreamTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/CountingStreamTest.h b/Foundation/testsuite/src/CountingStreamTest.h old mode 100644 new mode 100755 index ad1b97ae9..d13ed53f7 --- a/Foundation/testsuite/src/CountingStreamTest.h +++ b/Foundation/testsuite/src/CountingStreamTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/CryptTestSuite.cpp b/Foundation/testsuite/src/CryptTestSuite.cpp old mode 100644 new mode 100755 index 2ac79bb46..98b83f10b --- a/Foundation/testsuite/src/CryptTestSuite.cpp +++ b/Foundation/testsuite/src/CryptTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/CryptTestSuite.h b/Foundation/testsuite/src/CryptTestSuite.h old mode 100644 new mode 100755 index d630fae36..d24207782 --- a/Foundation/testsuite/src/CryptTestSuite.h +++ b/Foundation/testsuite/src/CryptTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DateTimeFormatterTest.cpp b/Foundation/testsuite/src/DateTimeFormatterTest.cpp old mode 100644 new mode 100755 index 75f91e6c2..f6b4b11b1 --- a/Foundation/testsuite/src/DateTimeFormatterTest.cpp +++ b/Foundation/testsuite/src/DateTimeFormatterTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DateTimeFormatterTest.h b/Foundation/testsuite/src/DateTimeFormatterTest.h old mode 100644 new mode 100755 index 4e1e1e6ce..2ff6747d4 --- a/Foundation/testsuite/src/DateTimeFormatterTest.h +++ b/Foundation/testsuite/src/DateTimeFormatterTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DateTimeParserTest.cpp b/Foundation/testsuite/src/DateTimeParserTest.cpp old mode 100644 new mode 100755 index 3ea8ce1c6..1b3c41c2e --- a/Foundation/testsuite/src/DateTimeParserTest.cpp +++ b/Foundation/testsuite/src/DateTimeParserTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DateTimeParserTest.h b/Foundation/testsuite/src/DateTimeParserTest.h old mode 100644 new mode 100755 index a415bde36..f1d4f2553 --- a/Foundation/testsuite/src/DateTimeParserTest.h +++ b/Foundation/testsuite/src/DateTimeParserTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DateTimeTest.cpp b/Foundation/testsuite/src/DateTimeTest.cpp old mode 100644 new mode 100755 index a5d945687..67f24764d --- a/Foundation/testsuite/src/DateTimeTest.cpp +++ b/Foundation/testsuite/src/DateTimeTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DateTimeTest.h b/Foundation/testsuite/src/DateTimeTest.h old mode 100644 new mode 100755 index e75381095..7b8bb6e1a --- a/Foundation/testsuite/src/DateTimeTest.h +++ b/Foundation/testsuite/src/DateTimeTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DateTimeTestSuite.cpp b/Foundation/testsuite/src/DateTimeTestSuite.cpp old mode 100644 new mode 100755 index ad35da2ef..0d19e14a7 --- a/Foundation/testsuite/src/DateTimeTestSuite.cpp +++ b/Foundation/testsuite/src/DateTimeTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DateTimeTestSuite.h b/Foundation/testsuite/src/DateTimeTestSuite.h old mode 100644 new mode 100755 index 524ca9334..8b00fabfa --- a/Foundation/testsuite/src/DateTimeTestSuite.h +++ b/Foundation/testsuite/src/DateTimeTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DigestStreamTest.cpp b/Foundation/testsuite/src/DigestStreamTest.cpp old mode 100644 new mode 100755 index 6ddad1586..ba8982987 --- a/Foundation/testsuite/src/DigestStreamTest.cpp +++ b/Foundation/testsuite/src/DigestStreamTest.cpp @@ -7,27 +7,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DigestStreamTest.h b/Foundation/testsuite/src/DigestStreamTest.h old mode 100644 new mode 100755 index 1833e8235..caf47971e --- a/Foundation/testsuite/src/DigestStreamTest.h +++ b/Foundation/testsuite/src/DigestStreamTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DirectoryIteratorsTest.cpp b/Foundation/testsuite/src/DirectoryIteratorsTest.cpp old mode 100644 new mode 100755 index f3921db7a..da1392a8e --- a/Foundation/testsuite/src/DirectoryIteratorsTest.cpp +++ b/Foundation/testsuite/src/DirectoryIteratorsTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DirectoryIteratorsTest.h b/Foundation/testsuite/src/DirectoryIteratorsTest.h old mode 100644 new mode 100755 index f919e89ce..6eec889a5 --- a/Foundation/testsuite/src/DirectoryIteratorsTest.h +++ b/Foundation/testsuite/src/DirectoryIteratorsTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DirectoryWatcherTest.cpp b/Foundation/testsuite/src/DirectoryWatcherTest.cpp old mode 100644 new mode 100755 index e48533c11..24c718949 --- a/Foundation/testsuite/src/DirectoryWatcherTest.cpp +++ b/Foundation/testsuite/src/DirectoryWatcherTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DirectoryWatcherTest.h b/Foundation/testsuite/src/DirectoryWatcherTest.h old mode 100644 new mode 100755 index 83e2191c9..24fab5823 --- a/Foundation/testsuite/src/DirectoryWatcherTest.h +++ b/Foundation/testsuite/src/DirectoryWatcherTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/Driver.cpp b/Foundation/testsuite/src/Driver.cpp old mode 100644 new mode 100755 index 789412801..b9f21e804 --- a/Foundation/testsuite/src/Driver.cpp +++ b/Foundation/testsuite/src/Driver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DummyDelegate.cpp b/Foundation/testsuite/src/DummyDelegate.cpp old mode 100644 new mode 100755 index 302ed1e11..ac8185892 --- a/Foundation/testsuite/src/DummyDelegate.cpp +++ b/Foundation/testsuite/src/DummyDelegate.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DummyDelegate.h b/Foundation/testsuite/src/DummyDelegate.h old mode 100644 new mode 100755 index 5216bc4a9..9a69d4693 --- a/Foundation/testsuite/src/DummyDelegate.h +++ b/Foundation/testsuite/src/DummyDelegate.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DynamicFactoryTest.cpp b/Foundation/testsuite/src/DynamicFactoryTest.cpp old mode 100644 new mode 100755 index ad3f556b0..478aace1c --- a/Foundation/testsuite/src/DynamicFactoryTest.cpp +++ b/Foundation/testsuite/src/DynamicFactoryTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DynamicFactoryTest.h b/Foundation/testsuite/src/DynamicFactoryTest.h old mode 100644 new mode 100755 index 9f44dc11d..4b199bc35 --- a/Foundation/testsuite/src/DynamicFactoryTest.h +++ b/Foundation/testsuite/src/DynamicFactoryTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DynamicTestSuite.cpp b/Foundation/testsuite/src/DynamicTestSuite.cpp old mode 100644 new mode 100755 index d976789a8..e8f9b043f --- a/Foundation/testsuite/src/DynamicTestSuite.cpp +++ b/Foundation/testsuite/src/DynamicTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/DynamicTestSuite.h b/Foundation/testsuite/src/DynamicTestSuite.h old mode 100644 new mode 100755 index 8f4f1879e..c8375fd6d --- a/Foundation/testsuite/src/DynamicTestSuite.h +++ b/Foundation/testsuite/src/DynamicTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/EventTestSuite.cpp b/Foundation/testsuite/src/EventTestSuite.cpp old mode 100644 new mode 100755 index aa1dbce94..64b0246e7 --- a/Foundation/testsuite/src/EventTestSuite.cpp +++ b/Foundation/testsuite/src/EventTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/EventTestSuite.h b/Foundation/testsuite/src/EventTestSuite.h old mode 100644 new mode 100755 index a3fb1ebec..6952f8d44 --- a/Foundation/testsuite/src/EventTestSuite.h +++ b/Foundation/testsuite/src/EventTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ExpireCacheTest.cpp b/Foundation/testsuite/src/ExpireCacheTest.cpp old mode 100644 new mode 100755 index 965210387..0e8cde480 --- a/Foundation/testsuite/src/ExpireCacheTest.cpp +++ b/Foundation/testsuite/src/ExpireCacheTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ExpireCacheTest.h b/Foundation/testsuite/src/ExpireCacheTest.h old mode 100644 new mode 100755 index 3e769b051..fc5accaa1 --- a/Foundation/testsuite/src/ExpireCacheTest.h +++ b/Foundation/testsuite/src/ExpireCacheTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // #ifndef ExpireCacheTest_INCLUDED diff --git a/Foundation/testsuite/src/ExpireLRUCacheTest.cpp b/Foundation/testsuite/src/ExpireLRUCacheTest.cpp old mode 100644 new mode 100755 index 727f50307..31ef4baaf --- a/Foundation/testsuite/src/ExpireLRUCacheTest.cpp +++ b/Foundation/testsuite/src/ExpireLRUCacheTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ExpireLRUCacheTest.h b/Foundation/testsuite/src/ExpireLRUCacheTest.h old mode 100644 new mode 100755 index bb1f7685f..0edf12475 --- a/Foundation/testsuite/src/ExpireLRUCacheTest.h +++ b/Foundation/testsuite/src/ExpireLRUCacheTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // #ifndef ExpireLRUCacheTest_INCLUDED diff --git a/Foundation/testsuite/src/FIFOBufferStreamTest.cpp b/Foundation/testsuite/src/FIFOBufferStreamTest.cpp old mode 100644 new mode 100755 index 98890af3e..1a07b91b0 --- a/Foundation/testsuite/src/FIFOBufferStreamTest.cpp +++ b/Foundation/testsuite/src/FIFOBufferStreamTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FIFOBufferStreamTest.h b/Foundation/testsuite/src/FIFOBufferStreamTest.h old mode 100644 new mode 100755 index 69ecc254c..0605d644b --- a/Foundation/testsuite/src/FIFOBufferStreamTest.h +++ b/Foundation/testsuite/src/FIFOBufferStreamTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FIFOEventTest.cpp b/Foundation/testsuite/src/FIFOEventTest.cpp old mode 100644 new mode 100755 index cc17e2914..fdc4ac0e7 --- a/Foundation/testsuite/src/FIFOEventTest.cpp +++ b/Foundation/testsuite/src/FIFOEventTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FIFOEventTest.h b/Foundation/testsuite/src/FIFOEventTest.h old mode 100644 new mode 100755 index a22895644..1d7b31a7b --- a/Foundation/testsuite/src/FIFOEventTest.h +++ b/Foundation/testsuite/src/FIFOEventTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FPETest.cpp b/Foundation/testsuite/src/FPETest.cpp old mode 100644 new mode 100755 index 977cdbe4b..3d79b9a67 --- a/Foundation/testsuite/src/FPETest.cpp +++ b/Foundation/testsuite/src/FPETest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FPETest.h b/Foundation/testsuite/src/FPETest.h old mode 100644 new mode 100755 index 703e8efa2..82e13d80e --- a/Foundation/testsuite/src/FPETest.h +++ b/Foundation/testsuite/src/FPETest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FileChannelTest.cpp b/Foundation/testsuite/src/FileChannelTest.cpp old mode 100644 new mode 100755 index 3db000dd5..9bfa94e15 --- a/Foundation/testsuite/src/FileChannelTest.cpp +++ b/Foundation/testsuite/src/FileChannelTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FileChannelTest.h b/Foundation/testsuite/src/FileChannelTest.h old mode 100644 new mode 100755 index 25dc67928..8b2168a96 --- a/Foundation/testsuite/src/FileChannelTest.h +++ b/Foundation/testsuite/src/FileChannelTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FileStreamTest.cpp b/Foundation/testsuite/src/FileStreamTest.cpp old mode 100644 new mode 100755 index c2ff55b4b..27ad70b58 --- a/Foundation/testsuite/src/FileStreamTest.cpp +++ b/Foundation/testsuite/src/FileStreamTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FileStreamTest.h b/Foundation/testsuite/src/FileStreamTest.h old mode 100644 new mode 100755 index d60ce735a..8fca17353 --- a/Foundation/testsuite/src/FileStreamTest.h +++ b/Foundation/testsuite/src/FileStreamTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FileTest.cpp b/Foundation/testsuite/src/FileTest.cpp old mode 100644 new mode 100755 index 2b911b25a..03b24e9a6 --- a/Foundation/testsuite/src/FileTest.cpp +++ b/Foundation/testsuite/src/FileTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FileTest.h b/Foundation/testsuite/src/FileTest.h old mode 100644 new mode 100755 index 872ad41ac..0177a9eca --- a/Foundation/testsuite/src/FileTest.h +++ b/Foundation/testsuite/src/FileTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FilesystemTestSuite.cpp b/Foundation/testsuite/src/FilesystemTestSuite.cpp old mode 100644 new mode 100755 index 6b503f8e9..9c457ffcd --- a/Foundation/testsuite/src/FilesystemTestSuite.cpp +++ b/Foundation/testsuite/src/FilesystemTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FilesystemTestSuite.h b/Foundation/testsuite/src/FilesystemTestSuite.h old mode 100644 new mode 100755 index 02399cdb9..7a6101af2 --- a/Foundation/testsuite/src/FilesystemTestSuite.h +++ b/Foundation/testsuite/src/FilesystemTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FormatTest.cpp b/Foundation/testsuite/src/FormatTest.cpp old mode 100644 new mode 100755 index b1afa7bd8..a6746defb --- a/Foundation/testsuite/src/FormatTest.cpp +++ b/Foundation/testsuite/src/FormatTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // All rights reserved. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FormatTest.h b/Foundation/testsuite/src/FormatTest.h old mode 100644 new mode 100755 index 4f285b195..87c15e762 --- a/Foundation/testsuite/src/FormatTest.h +++ b/Foundation/testsuite/src/FormatTest.h @@ -5,27 +5,7 @@ // // Definition of the FormatTest class. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FoundationTestSuite.cpp b/Foundation/testsuite/src/FoundationTestSuite.cpp old mode 100644 new mode 100755 index b7e4ac1df..b492d5634 --- a/Foundation/testsuite/src/FoundationTestSuite.cpp +++ b/Foundation/testsuite/src/FoundationTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/FoundationTestSuite.h b/Foundation/testsuite/src/FoundationTestSuite.h old mode 100644 new mode 100755 index fd4cb2f28..5f4404304 --- a/Foundation/testsuite/src/FoundationTestSuite.h +++ b/Foundation/testsuite/src/FoundationTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/GlobTest.cpp b/Foundation/testsuite/src/GlobTest.cpp old mode 100644 new mode 100755 index e30523670..25c887ec6 --- a/Foundation/testsuite/src/GlobTest.cpp +++ b/Foundation/testsuite/src/GlobTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/GlobTest.h b/Foundation/testsuite/src/GlobTest.h old mode 100644 new mode 100755 index e64365589..d017c708a --- a/Foundation/testsuite/src/GlobTest.h +++ b/Foundation/testsuite/src/GlobTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/HMACEngineTest.cpp b/Foundation/testsuite/src/HMACEngineTest.cpp old mode 100644 new mode 100755 index fd90a2d01..eb19286dd --- a/Foundation/testsuite/src/HMACEngineTest.cpp +++ b/Foundation/testsuite/src/HMACEngineTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/HMACEngineTest.h b/Foundation/testsuite/src/HMACEngineTest.h old mode 100644 new mode 100755 index d780fae8b..9c2196a01 --- a/Foundation/testsuite/src/HMACEngineTest.h +++ b/Foundation/testsuite/src/HMACEngineTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/HashMapTest.cpp b/Foundation/testsuite/src/HashMapTest.cpp old mode 100644 new mode 100755 index 9f27900d3..b101dc39b --- a/Foundation/testsuite/src/HashMapTest.cpp +++ b/Foundation/testsuite/src/HashMapTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/HashMapTest.h b/Foundation/testsuite/src/HashMapTest.h old mode 100644 new mode 100755 index b07e0f157..4bc02bacc --- a/Foundation/testsuite/src/HashMapTest.h +++ b/Foundation/testsuite/src/HashMapTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/HashSetTest.cpp b/Foundation/testsuite/src/HashSetTest.cpp old mode 100644 new mode 100755 index 488191529..288ee57c7 --- a/Foundation/testsuite/src/HashSetTest.cpp +++ b/Foundation/testsuite/src/HashSetTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/HashSetTest.h b/Foundation/testsuite/src/HashSetTest.h old mode 100644 new mode 100755 index b00ba5387..3366631f3 --- a/Foundation/testsuite/src/HashSetTest.h +++ b/Foundation/testsuite/src/HashSetTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/HashTableTest.cpp b/Foundation/testsuite/src/HashTableTest.cpp old mode 100644 new mode 100755 index e63ebf264..34478a7a9 --- a/Foundation/testsuite/src/HashTableTest.cpp +++ b/Foundation/testsuite/src/HashTableTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/HashTableTest.h b/Foundation/testsuite/src/HashTableTest.h old mode 100644 new mode 100755 index 0159e31e2..962c633b9 --- a/Foundation/testsuite/src/HashTableTest.h +++ b/Foundation/testsuite/src/HashTableTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/HashingTestSuite.cpp b/Foundation/testsuite/src/HashingTestSuite.cpp old mode 100644 new mode 100755 index f4244d6b6..c063011d4 --- a/Foundation/testsuite/src/HashingTestSuite.cpp +++ b/Foundation/testsuite/src/HashingTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/HashingTestSuite.h b/Foundation/testsuite/src/HashingTestSuite.h old mode 100644 new mode 100755 index dba6edaf1..eb0cd1268 --- a/Foundation/testsuite/src/HashingTestSuite.h +++ b/Foundation/testsuite/src/HashingTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/HexBinaryTest.cpp b/Foundation/testsuite/src/HexBinaryTest.cpp old mode 100644 new mode 100755 index 2b015b9de..fe3796dd6 --- a/Foundation/testsuite/src/HexBinaryTest.cpp +++ b/Foundation/testsuite/src/HexBinaryTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/HexBinaryTest.h b/Foundation/testsuite/src/HexBinaryTest.h old mode 100644 new mode 100755 index f76aee5ab..e6c23ebb4 --- a/Foundation/testsuite/src/HexBinaryTest.h +++ b/Foundation/testsuite/src/HexBinaryTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LRUCacheTest.cpp b/Foundation/testsuite/src/LRUCacheTest.cpp old mode 100644 new mode 100755 index eea4a9410..24a64eb94 --- a/Foundation/testsuite/src/LRUCacheTest.cpp +++ b/Foundation/testsuite/src/LRUCacheTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LRUCacheTest.h b/Foundation/testsuite/src/LRUCacheTest.h old mode 100644 new mode 100755 index 1b6d9b15f..cf6623433 --- a/Foundation/testsuite/src/LRUCacheTest.h +++ b/Foundation/testsuite/src/LRUCacheTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // #ifndef LRUCacheTest_INCLUDED diff --git a/Foundation/testsuite/src/LineEndingConverterTest.cpp b/Foundation/testsuite/src/LineEndingConverterTest.cpp old mode 100644 new mode 100755 index de5170524..70d85ba45 --- a/Foundation/testsuite/src/LineEndingConverterTest.cpp +++ b/Foundation/testsuite/src/LineEndingConverterTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LineEndingConverterTest.h b/Foundation/testsuite/src/LineEndingConverterTest.h old mode 100644 new mode 100755 index d76388985..fea8bbfae --- a/Foundation/testsuite/src/LineEndingConverterTest.h +++ b/Foundation/testsuite/src/LineEndingConverterTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LinearHashTableTest.cpp b/Foundation/testsuite/src/LinearHashTableTest.cpp old mode 100644 new mode 100755 index a85e333f0..6c7607845 --- a/Foundation/testsuite/src/LinearHashTableTest.cpp +++ b/Foundation/testsuite/src/LinearHashTableTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LinearHashTableTest.h b/Foundation/testsuite/src/LinearHashTableTest.h old mode 100644 new mode 100755 index 8d6b37c43..1e7761cf8 --- a/Foundation/testsuite/src/LinearHashTableTest.h +++ b/Foundation/testsuite/src/LinearHashTableTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ListMapTest.cpp b/Foundation/testsuite/src/ListMapTest.cpp old mode 100644 new mode 100755 index e31ad6018..527cb6e29 --- a/Foundation/testsuite/src/ListMapTest.cpp +++ b/Foundation/testsuite/src/ListMapTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ListMapTest.h b/Foundation/testsuite/src/ListMapTest.h old mode 100644 new mode 100755 index b2411aebb..8bd3f7e94 --- a/Foundation/testsuite/src/ListMapTest.h +++ b/Foundation/testsuite/src/ListMapTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LocalDateTimeTest.cpp b/Foundation/testsuite/src/LocalDateTimeTest.cpp old mode 100644 new mode 100755 index 60adab61b..fd4b52b65 --- a/Foundation/testsuite/src/LocalDateTimeTest.cpp +++ b/Foundation/testsuite/src/LocalDateTimeTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LocalDateTimeTest.h b/Foundation/testsuite/src/LocalDateTimeTest.h old mode 100644 new mode 100755 index dd6e609db..e1d0b439e --- a/Foundation/testsuite/src/LocalDateTimeTest.h +++ b/Foundation/testsuite/src/LocalDateTimeTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LogStreamTest.cpp b/Foundation/testsuite/src/LogStreamTest.cpp old mode 100644 new mode 100755 index 58dfc5d8b..3e8b6d1e3 --- a/Foundation/testsuite/src/LogStreamTest.cpp +++ b/Foundation/testsuite/src/LogStreamTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // All rights reserved. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LogStreamTest.h b/Foundation/testsuite/src/LogStreamTest.h old mode 100644 new mode 100755 index b34fbdd12..e66826d8e --- a/Foundation/testsuite/src/LogStreamTest.h +++ b/Foundation/testsuite/src/LogStreamTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // All rights reserved. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LoggerTest.cpp b/Foundation/testsuite/src/LoggerTest.cpp old mode 100644 new mode 100755 index 6c1483441..407110cda --- a/Foundation/testsuite/src/LoggerTest.cpp +++ b/Foundation/testsuite/src/LoggerTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LoggerTest.h b/Foundation/testsuite/src/LoggerTest.h old mode 100644 new mode 100755 index 649364918..3c0933b7d --- a/Foundation/testsuite/src/LoggerTest.h +++ b/Foundation/testsuite/src/LoggerTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LoggingFactoryTest.cpp b/Foundation/testsuite/src/LoggingFactoryTest.cpp old mode 100644 new mode 100755 index fd1c3e0b8..4ad770796 --- a/Foundation/testsuite/src/LoggingFactoryTest.cpp +++ b/Foundation/testsuite/src/LoggingFactoryTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LoggingFactoryTest.h b/Foundation/testsuite/src/LoggingFactoryTest.h old mode 100644 new mode 100755 index e9b686802..065b9b749 --- a/Foundation/testsuite/src/LoggingFactoryTest.h +++ b/Foundation/testsuite/src/LoggingFactoryTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LoggingRegistryTest.cpp b/Foundation/testsuite/src/LoggingRegistryTest.cpp old mode 100644 new mode 100755 index b057907e7..238d46a6b --- a/Foundation/testsuite/src/LoggingRegistryTest.cpp +++ b/Foundation/testsuite/src/LoggingRegistryTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LoggingRegistryTest.h b/Foundation/testsuite/src/LoggingRegistryTest.h old mode 100644 new mode 100755 index cd7c4d076..aa93598ca --- a/Foundation/testsuite/src/LoggingRegistryTest.h +++ b/Foundation/testsuite/src/LoggingRegistryTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LoggingTestSuite.cpp b/Foundation/testsuite/src/LoggingTestSuite.cpp old mode 100644 new mode 100755 index 1476bc102..9fe553304 --- a/Foundation/testsuite/src/LoggingTestSuite.cpp +++ b/Foundation/testsuite/src/LoggingTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/LoggingTestSuite.h b/Foundation/testsuite/src/LoggingTestSuite.h old mode 100644 new mode 100755 index 17ee59269..b8cce69bf --- a/Foundation/testsuite/src/LoggingTestSuite.h +++ b/Foundation/testsuite/src/LoggingTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/MD4EngineTest.cpp b/Foundation/testsuite/src/MD4EngineTest.cpp old mode 100644 new mode 100755 index ede9be86e..c31a90096 --- a/Foundation/testsuite/src/MD4EngineTest.cpp +++ b/Foundation/testsuite/src/MD4EngineTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/MD4EngineTest.h b/Foundation/testsuite/src/MD4EngineTest.h old mode 100644 new mode 100755 index d5c7b336d..b56ddddbe --- a/Foundation/testsuite/src/MD4EngineTest.h +++ b/Foundation/testsuite/src/MD4EngineTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/MD5EngineTest.cpp b/Foundation/testsuite/src/MD5EngineTest.cpp old mode 100644 new mode 100755 index 80b001b09..b4c4fa24b --- a/Foundation/testsuite/src/MD5EngineTest.cpp +++ b/Foundation/testsuite/src/MD5EngineTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/MD5EngineTest.h b/Foundation/testsuite/src/MD5EngineTest.h old mode 100644 new mode 100755 index b53ffa65d..97b86ec23 --- a/Foundation/testsuite/src/MD5EngineTest.h +++ b/Foundation/testsuite/src/MD5EngineTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ManifestTest.cpp b/Foundation/testsuite/src/ManifestTest.cpp old mode 100644 new mode 100755 index a07cfe669..2a78b4f69 --- a/Foundation/testsuite/src/ManifestTest.cpp +++ b/Foundation/testsuite/src/ManifestTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ManifestTest.h b/Foundation/testsuite/src/ManifestTest.h old mode 100644 new mode 100755 index 84d66fae2..f296eff64 --- a/Foundation/testsuite/src/ManifestTest.h +++ b/Foundation/testsuite/src/ManifestTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/MemoryPoolTest.cpp b/Foundation/testsuite/src/MemoryPoolTest.cpp old mode 100644 new mode 100755 index 8131a6c32..dd482d822 --- a/Foundation/testsuite/src/MemoryPoolTest.cpp +++ b/Foundation/testsuite/src/MemoryPoolTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/MemoryPoolTest.h b/Foundation/testsuite/src/MemoryPoolTest.h old mode 100644 new mode 100755 index 1d1903c3a..8bc36edba --- a/Foundation/testsuite/src/MemoryPoolTest.h +++ b/Foundation/testsuite/src/MemoryPoolTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/MemoryStreamTest.cpp b/Foundation/testsuite/src/MemoryStreamTest.cpp old mode 100644 new mode 100755 index a2ac276f7..66efbce65 --- a/Foundation/testsuite/src/MemoryStreamTest.cpp +++ b/Foundation/testsuite/src/MemoryStreamTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/MemoryStreamTest.h b/Foundation/testsuite/src/MemoryStreamTest.h old mode 100644 new mode 100755 index 67ddc8327..95d1fc73a --- a/Foundation/testsuite/src/MemoryStreamTest.h +++ b/Foundation/testsuite/src/MemoryStreamTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NDCTest.cpp b/Foundation/testsuite/src/NDCTest.cpp old mode 100644 new mode 100755 index 016f97d37..9ae2a35dd --- a/Foundation/testsuite/src/NDCTest.cpp +++ b/Foundation/testsuite/src/NDCTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NDCTest.h b/Foundation/testsuite/src/NDCTest.h old mode 100644 new mode 100755 index 36a2973aa..11a95df78 --- a/Foundation/testsuite/src/NDCTest.h +++ b/Foundation/testsuite/src/NDCTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NamedEventTest.cpp b/Foundation/testsuite/src/NamedEventTest.cpp old mode 100644 new mode 100755 index 1d849b23b..4f22197c8 --- a/Foundation/testsuite/src/NamedEventTest.cpp +++ b/Foundation/testsuite/src/NamedEventTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NamedEventTest.h b/Foundation/testsuite/src/NamedEventTest.h old mode 100644 new mode 100755 index 2b8f34afc..2921f8d61 --- a/Foundation/testsuite/src/NamedEventTest.h +++ b/Foundation/testsuite/src/NamedEventTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NamedMutexTest.cpp b/Foundation/testsuite/src/NamedMutexTest.cpp old mode 100644 new mode 100755 index 0440dd3a3..3d3b3047f --- a/Foundation/testsuite/src/NamedMutexTest.cpp +++ b/Foundation/testsuite/src/NamedMutexTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NamedMutexTest.h b/Foundation/testsuite/src/NamedMutexTest.h old mode 100644 new mode 100755 index f4c9ba763..e627e31e3 --- a/Foundation/testsuite/src/NamedMutexTest.h +++ b/Foundation/testsuite/src/NamedMutexTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NamedTuplesTest.cpp b/Foundation/testsuite/src/NamedTuplesTest.cpp old mode 100644 new mode 100755 index 4b1e14c0f..f0a2fc018 --- a/Foundation/testsuite/src/NamedTuplesTest.cpp +++ b/Foundation/testsuite/src/NamedTuplesTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NamedTuplesTest.h b/Foundation/testsuite/src/NamedTuplesTest.h old mode 100644 new mode 100755 index 328eb67a8..22580124b --- a/Foundation/testsuite/src/NamedTuplesTest.h +++ b/Foundation/testsuite/src/NamedTuplesTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NotificationCenterTest.cpp b/Foundation/testsuite/src/NotificationCenterTest.cpp old mode 100644 new mode 100755 index 8e0ca26d6..fa5b98c71 --- a/Foundation/testsuite/src/NotificationCenterTest.cpp +++ b/Foundation/testsuite/src/NotificationCenterTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NotificationCenterTest.h b/Foundation/testsuite/src/NotificationCenterTest.h old mode 100644 new mode 100755 index a9a50c325..e5dd6f151 --- a/Foundation/testsuite/src/NotificationCenterTest.h +++ b/Foundation/testsuite/src/NotificationCenterTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NotificationQueueTest.cpp b/Foundation/testsuite/src/NotificationQueueTest.cpp old mode 100644 new mode 100755 index fea0e1893..4654a421b --- a/Foundation/testsuite/src/NotificationQueueTest.cpp +++ b/Foundation/testsuite/src/NotificationQueueTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NotificationQueueTest.h b/Foundation/testsuite/src/NotificationQueueTest.h old mode 100644 new mode 100755 index 30f252844..70cee2c15 --- a/Foundation/testsuite/src/NotificationQueueTest.h +++ b/Foundation/testsuite/src/NotificationQueueTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NotificationsTestSuite.cpp b/Foundation/testsuite/src/NotificationsTestSuite.cpp old mode 100644 new mode 100755 index ee66eeb38..b5a6eef47 --- a/Foundation/testsuite/src/NotificationsTestSuite.cpp +++ b/Foundation/testsuite/src/NotificationsTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NotificationsTestSuite.h b/Foundation/testsuite/src/NotificationsTestSuite.h old mode 100644 new mode 100755 index cb98f7ccb..7f9f6c563 --- a/Foundation/testsuite/src/NotificationsTestSuite.h +++ b/Foundation/testsuite/src/NotificationsTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NullStreamTest.cpp b/Foundation/testsuite/src/NullStreamTest.cpp old mode 100644 new mode 100755 index 3546badfe..27ceffb1e --- a/Foundation/testsuite/src/NullStreamTest.cpp +++ b/Foundation/testsuite/src/NullStreamTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NullStreamTest.h b/Foundation/testsuite/src/NullStreamTest.h old mode 100644 new mode 100755 index 82bc65a75..c6c2b19b0 --- a/Foundation/testsuite/src/NullStreamTest.h +++ b/Foundation/testsuite/src/NullStreamTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NumberFormatterTest.cpp b/Foundation/testsuite/src/NumberFormatterTest.cpp old mode 100644 new mode 100755 index 8a6a59c13..e6935a711 --- a/Foundation/testsuite/src/NumberFormatterTest.cpp +++ b/Foundation/testsuite/src/NumberFormatterTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NumberFormatterTest.h b/Foundation/testsuite/src/NumberFormatterTest.h old mode 100644 new mode 100755 index d9cabedf6..fd0bacb80 --- a/Foundation/testsuite/src/NumberFormatterTest.h +++ b/Foundation/testsuite/src/NumberFormatterTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NumberParserTest.cpp b/Foundation/testsuite/src/NumberParserTest.cpp old mode 100644 new mode 100755 index 7ee05e693..f810a519c --- a/Foundation/testsuite/src/NumberParserTest.cpp +++ b/Foundation/testsuite/src/NumberParserTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/NumberParserTest.h b/Foundation/testsuite/src/NumberParserTest.h old mode 100644 new mode 100755 index 4c2f75716..510f4525e --- a/Foundation/testsuite/src/NumberParserTest.h +++ b/Foundation/testsuite/src/NumberParserTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ObjectPoolTest.cpp b/Foundation/testsuite/src/ObjectPoolTest.cpp old mode 100644 new mode 100755 index ff1a1f344..1f631f5fd --- a/Foundation/testsuite/src/ObjectPoolTest.cpp +++ b/Foundation/testsuite/src/ObjectPoolTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2010-2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ObjectPoolTest.h b/Foundation/testsuite/src/ObjectPoolTest.h old mode 100644 new mode 100755 index dfc41da8e..d70ae8e85 --- a/Foundation/testsuite/src/ObjectPoolTest.h +++ b/Foundation/testsuite/src/ObjectPoolTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2010-2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/PBKDF2EngineTest.cpp b/Foundation/testsuite/src/PBKDF2EngineTest.cpp old mode 100644 new mode 100755 index 0a225c32c..5a3ed21e1 --- a/Foundation/testsuite/src/PBKDF2EngineTest.cpp +++ b/Foundation/testsuite/src/PBKDF2EngineTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2014, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/PBKDF2EngineTest.h b/Foundation/testsuite/src/PBKDF2EngineTest.h old mode 100644 new mode 100755 index 13be75182..1f8899665 --- a/Foundation/testsuite/src/PBKDF2EngineTest.h +++ b/Foundation/testsuite/src/PBKDF2EngineTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2014, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/PathTest.cpp b/Foundation/testsuite/src/PathTest.cpp old mode 100644 new mode 100755 index 924e1cb1d..2e5c563c2 --- a/Foundation/testsuite/src/PathTest.cpp +++ b/Foundation/testsuite/src/PathTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/PathTest.h b/Foundation/testsuite/src/PathTest.h old mode 100644 new mode 100755 index 5ad17a6f7..1279589f1 --- a/Foundation/testsuite/src/PathTest.h +++ b/Foundation/testsuite/src/PathTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/PatternFormatterTest.cpp b/Foundation/testsuite/src/PatternFormatterTest.cpp old mode 100644 new mode 100755 index 3cfccf97a..14a88aa7a --- a/Foundation/testsuite/src/PatternFormatterTest.cpp +++ b/Foundation/testsuite/src/PatternFormatterTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/PatternFormatterTest.h b/Foundation/testsuite/src/PatternFormatterTest.h old mode 100644 new mode 100755 index c8e6a63db..20478b7b5 --- a/Foundation/testsuite/src/PatternFormatterTest.h +++ b/Foundation/testsuite/src/PatternFormatterTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/PriorityEventTest.cpp b/Foundation/testsuite/src/PriorityEventTest.cpp old mode 100644 new mode 100755 index 411fe30a3..749314792 --- a/Foundation/testsuite/src/PriorityEventTest.cpp +++ b/Foundation/testsuite/src/PriorityEventTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/PriorityEventTest.h b/Foundation/testsuite/src/PriorityEventTest.h old mode 100644 new mode 100755 index 1933013aa..a7d972018 --- a/Foundation/testsuite/src/PriorityEventTest.h +++ b/Foundation/testsuite/src/PriorityEventTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/PriorityNotificationQueueTest.cpp b/Foundation/testsuite/src/PriorityNotificationQueueTest.cpp old mode 100644 new mode 100755 index 4a114bacf..8240a2a84 --- a/Foundation/testsuite/src/PriorityNotificationQueueTest.cpp +++ b/Foundation/testsuite/src/PriorityNotificationQueueTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/PriorityNotificationQueueTest.h b/Foundation/testsuite/src/PriorityNotificationQueueTest.h old mode 100644 new mode 100755 index 49cc2ae7f..72652881d --- a/Foundation/testsuite/src/PriorityNotificationQueueTest.h +++ b/Foundation/testsuite/src/PriorityNotificationQueueTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ProcessTest.cpp b/Foundation/testsuite/src/ProcessTest.cpp old mode 100644 new mode 100755 index 925a4ba42..8acd6fa4f --- a/Foundation/testsuite/src/ProcessTest.cpp +++ b/Foundation/testsuite/src/ProcessTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ProcessTest.h b/Foundation/testsuite/src/ProcessTest.h old mode 100644 new mode 100755 index 436efb404..7c9d858d5 --- a/Foundation/testsuite/src/ProcessTest.h +++ b/Foundation/testsuite/src/ProcessTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ProcessesTestSuite.cpp b/Foundation/testsuite/src/ProcessesTestSuite.cpp old mode 100644 new mode 100755 index 240e88779..7a7eedc4b --- a/Foundation/testsuite/src/ProcessesTestSuite.cpp +++ b/Foundation/testsuite/src/ProcessesTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ProcessesTestSuite.h b/Foundation/testsuite/src/ProcessesTestSuite.h old mode 100644 new mode 100755 index 85fcf3571..50a73942f --- a/Foundation/testsuite/src/ProcessesTestSuite.h +++ b/Foundation/testsuite/src/ProcessesTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/RWLockTest.cpp b/Foundation/testsuite/src/RWLockTest.cpp old mode 100644 new mode 100755 index 79208c434..e8b6a30f1 --- a/Foundation/testsuite/src/RWLockTest.cpp +++ b/Foundation/testsuite/src/RWLockTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/RWLockTest.h b/Foundation/testsuite/src/RWLockTest.h old mode 100644 new mode 100755 index 8030a8ba9..fdda37e23 --- a/Foundation/testsuite/src/RWLockTest.h +++ b/Foundation/testsuite/src/RWLockTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/RandomStreamTest.cpp b/Foundation/testsuite/src/RandomStreamTest.cpp old mode 100644 new mode 100755 index 22a660d2c..2d641062f --- a/Foundation/testsuite/src/RandomStreamTest.cpp +++ b/Foundation/testsuite/src/RandomStreamTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/RandomStreamTest.h b/Foundation/testsuite/src/RandomStreamTest.h old mode 100644 new mode 100755 index 89f332789..c5be0d950 --- a/Foundation/testsuite/src/RandomStreamTest.h +++ b/Foundation/testsuite/src/RandomStreamTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/RandomTest.cpp b/Foundation/testsuite/src/RandomTest.cpp old mode 100644 new mode 100755 index 6db3c5ab8..c5ed53590 --- a/Foundation/testsuite/src/RandomTest.cpp +++ b/Foundation/testsuite/src/RandomTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/RandomTest.h b/Foundation/testsuite/src/RandomTest.h old mode 100644 new mode 100755 index 22821ea54..4b04dc848 --- a/Foundation/testsuite/src/RandomTest.h +++ b/Foundation/testsuite/src/RandomTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/RegularExpressionTest.cpp b/Foundation/testsuite/src/RegularExpressionTest.cpp old mode 100644 new mode 100755 index 4739e2291..8f395c5c5 --- a/Foundation/testsuite/src/RegularExpressionTest.cpp +++ b/Foundation/testsuite/src/RegularExpressionTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/RegularExpressionTest.h b/Foundation/testsuite/src/RegularExpressionTest.h old mode 100644 new mode 100755 index 20db225ea..3ab98e29d --- a/Foundation/testsuite/src/RegularExpressionTest.h +++ b/Foundation/testsuite/src/RegularExpressionTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SHA1EngineTest.cpp b/Foundation/testsuite/src/SHA1EngineTest.cpp old mode 100644 new mode 100755 index bc64f8a90..a0e95f3c2 --- a/Foundation/testsuite/src/SHA1EngineTest.cpp +++ b/Foundation/testsuite/src/SHA1EngineTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SHA1EngineTest.h b/Foundation/testsuite/src/SHA1EngineTest.h old mode 100644 new mode 100755 index 071577717..1f097b871 --- a/Foundation/testsuite/src/SHA1EngineTest.h +++ b/Foundation/testsuite/src/SHA1EngineTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SemaphoreTest.cpp b/Foundation/testsuite/src/SemaphoreTest.cpp old mode 100644 new mode 100755 index ac7e78c3f..515f6db10 --- a/Foundation/testsuite/src/SemaphoreTest.cpp +++ b/Foundation/testsuite/src/SemaphoreTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SemaphoreTest.h b/Foundation/testsuite/src/SemaphoreTest.h old mode 100644 new mode 100755 index a5e742277..5254fdc30 --- a/Foundation/testsuite/src/SemaphoreTest.h +++ b/Foundation/testsuite/src/SemaphoreTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SharedLibraryTest.cpp b/Foundation/testsuite/src/SharedLibraryTest.cpp old mode 100644 new mode 100755 index 2117d3623..80de58ec6 --- a/Foundation/testsuite/src/SharedLibraryTest.cpp +++ b/Foundation/testsuite/src/SharedLibraryTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SharedLibraryTest.h b/Foundation/testsuite/src/SharedLibraryTest.h old mode 100644 new mode 100755 index 80c95e04b..e41190e58 --- a/Foundation/testsuite/src/SharedLibraryTest.h +++ b/Foundation/testsuite/src/SharedLibraryTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SharedLibraryTestSuite.cpp b/Foundation/testsuite/src/SharedLibraryTestSuite.cpp old mode 100644 new mode 100755 index b6210824e..b0521f842 --- a/Foundation/testsuite/src/SharedLibraryTestSuite.cpp +++ b/Foundation/testsuite/src/SharedLibraryTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SharedLibraryTestSuite.h b/Foundation/testsuite/src/SharedLibraryTestSuite.h old mode 100644 new mode 100755 index 6216e2f7e..fedd3ed2d --- a/Foundation/testsuite/src/SharedLibraryTestSuite.h +++ b/Foundation/testsuite/src/SharedLibraryTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SharedMemoryTest.cpp b/Foundation/testsuite/src/SharedMemoryTest.cpp old mode 100644 new mode 100755 index 5c4296528..1172239e1 --- a/Foundation/testsuite/src/SharedMemoryTest.cpp +++ b/Foundation/testsuite/src/SharedMemoryTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SharedMemoryTest.h b/Foundation/testsuite/src/SharedMemoryTest.h old mode 100644 new mode 100755 index af5bfaac8..3837f3740 --- a/Foundation/testsuite/src/SharedMemoryTest.h +++ b/Foundation/testsuite/src/SharedMemoryTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SharedPtrTest.cpp b/Foundation/testsuite/src/SharedPtrTest.cpp old mode 100644 new mode 100755 index 497225d36..8dce9b1f4 --- a/Foundation/testsuite/src/SharedPtrTest.cpp +++ b/Foundation/testsuite/src/SharedPtrTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SharedPtrTest.h b/Foundation/testsuite/src/SharedPtrTest.h old mode 100644 new mode 100755 index 73f340dd9..6b1eaf831 --- a/Foundation/testsuite/src/SharedPtrTest.h +++ b/Foundation/testsuite/src/SharedPtrTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SimpleFileChannelTest.cpp b/Foundation/testsuite/src/SimpleFileChannelTest.cpp old mode 100644 new mode 100755 index c697b55f3..aa320bedb --- a/Foundation/testsuite/src/SimpleFileChannelTest.cpp +++ b/Foundation/testsuite/src/SimpleFileChannelTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SimpleFileChannelTest.h b/Foundation/testsuite/src/SimpleFileChannelTest.h old mode 100644 new mode 100755 index a62cdda67..16901c01a --- a/Foundation/testsuite/src/SimpleFileChannelTest.h +++ b/Foundation/testsuite/src/SimpleFileChannelTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SimpleHashTableTest.cpp b/Foundation/testsuite/src/SimpleHashTableTest.cpp old mode 100644 new mode 100755 index 7a65ec6da..294e57a06 --- a/Foundation/testsuite/src/SimpleHashTableTest.cpp +++ b/Foundation/testsuite/src/SimpleHashTableTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/SimpleHashTableTest.h b/Foundation/testsuite/src/SimpleHashTableTest.h old mode 100644 new mode 100755 index 6a1b6ade0..6c31e9e4d --- a/Foundation/testsuite/src/SimpleHashTableTest.h +++ b/Foundation/testsuite/src/SimpleHashTableTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/StopwatchTest.cpp b/Foundation/testsuite/src/StopwatchTest.cpp old mode 100644 new mode 100755 index 11ab9c637..87c8633f0 --- a/Foundation/testsuite/src/StopwatchTest.cpp +++ b/Foundation/testsuite/src/StopwatchTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/StopwatchTest.h b/Foundation/testsuite/src/StopwatchTest.h old mode 100644 new mode 100755 index 708764b16..92ab4bd58 --- a/Foundation/testsuite/src/StopwatchTest.h +++ b/Foundation/testsuite/src/StopwatchTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/StreamConverterTest.cpp b/Foundation/testsuite/src/StreamConverterTest.cpp old mode 100644 new mode 100755 index f56729171..3d3e6368d --- a/Foundation/testsuite/src/StreamConverterTest.cpp +++ b/Foundation/testsuite/src/StreamConverterTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/StreamConverterTest.h b/Foundation/testsuite/src/StreamConverterTest.h old mode 100644 new mode 100755 index afbf78869..2db255e2e --- a/Foundation/testsuite/src/StreamConverterTest.h +++ b/Foundation/testsuite/src/StreamConverterTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/StreamCopierTest.cpp b/Foundation/testsuite/src/StreamCopierTest.cpp old mode 100644 new mode 100755 index 8bbc3959a..2daa50e9b --- a/Foundation/testsuite/src/StreamCopierTest.cpp +++ b/Foundation/testsuite/src/StreamCopierTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/StreamCopierTest.h b/Foundation/testsuite/src/StreamCopierTest.h old mode 100644 new mode 100755 index 7eb855d7f..51e43ffb5 --- a/Foundation/testsuite/src/StreamCopierTest.h +++ b/Foundation/testsuite/src/StreamCopierTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/StreamTokenizerTest.cpp b/Foundation/testsuite/src/StreamTokenizerTest.cpp old mode 100644 new mode 100755 index b0389b6c2..5bd090e7e --- a/Foundation/testsuite/src/StreamTokenizerTest.cpp +++ b/Foundation/testsuite/src/StreamTokenizerTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/StreamTokenizerTest.h b/Foundation/testsuite/src/StreamTokenizerTest.h old mode 100644 new mode 100755 index b6e7dbbf3..7b7562b49 --- a/Foundation/testsuite/src/StreamTokenizerTest.h +++ b/Foundation/testsuite/src/StreamTokenizerTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/StreamsTestSuite.cpp b/Foundation/testsuite/src/StreamsTestSuite.cpp old mode 100644 new mode 100755 index 800e1ff61..30421585e --- a/Foundation/testsuite/src/StreamsTestSuite.cpp +++ b/Foundation/testsuite/src/StreamsTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/StreamsTestSuite.h b/Foundation/testsuite/src/StreamsTestSuite.h old mode 100644 new mode 100755 index 3f9a6a660..8498e1e88 --- a/Foundation/testsuite/src/StreamsTestSuite.h +++ b/Foundation/testsuite/src/StreamsTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/StringTest.cpp b/Foundation/testsuite/src/StringTest.cpp old mode 100644 new mode 100755 index 3337ec965..7116cc4bf --- a/Foundation/testsuite/src/StringTest.cpp +++ b/Foundation/testsuite/src/StringTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/StringTest.h b/Foundation/testsuite/src/StringTest.h old mode 100644 new mode 100755 index a47c5f590..58f4c9591 --- a/Foundation/testsuite/src/StringTest.h +++ b/Foundation/testsuite/src/StringTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/StringTokenizerTest.cpp b/Foundation/testsuite/src/StringTokenizerTest.cpp old mode 100644 new mode 100755 index 47701c57a..5a7bbabc6 --- a/Foundation/testsuite/src/StringTokenizerTest.cpp +++ b/Foundation/testsuite/src/StringTokenizerTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // #include diff --git a/Foundation/testsuite/src/StringTokenizerTest.h b/Foundation/testsuite/src/StringTokenizerTest.h old mode 100644 new mode 100755 index f09ee7811..5b5528368 --- a/Foundation/testsuite/src/StringTokenizerTest.h +++ b/Foundation/testsuite/src/StringTokenizerTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // #ifndef StringTokenizerTest_INCLUDED diff --git a/Foundation/testsuite/src/TaskManagerTest.cpp b/Foundation/testsuite/src/TaskManagerTest.cpp old mode 100644 new mode 100755 index e1520a133..6deb5c50b --- a/Foundation/testsuite/src/TaskManagerTest.cpp +++ b/Foundation/testsuite/src/TaskManagerTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TaskManagerTest.h b/Foundation/testsuite/src/TaskManagerTest.h old mode 100644 new mode 100755 index cb8899f1f..3cb9467fe --- a/Foundation/testsuite/src/TaskManagerTest.h +++ b/Foundation/testsuite/src/TaskManagerTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TaskTest.cpp b/Foundation/testsuite/src/TaskTest.cpp old mode 100644 new mode 100755 index 2578b9a8c..c8ef856a5 --- a/Foundation/testsuite/src/TaskTest.cpp +++ b/Foundation/testsuite/src/TaskTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TaskTest.h b/Foundation/testsuite/src/TaskTest.h old mode 100644 new mode 100755 index 3432413e6..5d022f224 --- a/Foundation/testsuite/src/TaskTest.h +++ b/Foundation/testsuite/src/TaskTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TaskTestSuite.cpp b/Foundation/testsuite/src/TaskTestSuite.cpp old mode 100644 new mode 100755 index 79307f0de..aa26bf39a --- a/Foundation/testsuite/src/TaskTestSuite.cpp +++ b/Foundation/testsuite/src/TaskTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TaskTestSuite.h b/Foundation/testsuite/src/TaskTestSuite.h old mode 100644 new mode 100755 index 5222dc3bf..f0e6b4419 --- a/Foundation/testsuite/src/TaskTestSuite.h +++ b/Foundation/testsuite/src/TaskTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TeeStreamTest.cpp b/Foundation/testsuite/src/TeeStreamTest.cpp old mode 100644 new mode 100755 index 8f3585f53..d0d64e50f --- a/Foundation/testsuite/src/TeeStreamTest.cpp +++ b/Foundation/testsuite/src/TeeStreamTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TeeStreamTest.h b/Foundation/testsuite/src/TeeStreamTest.h old mode 100644 new mode 100755 index f0ab3a880..48595589b --- a/Foundation/testsuite/src/TeeStreamTest.h +++ b/Foundation/testsuite/src/TeeStreamTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TestApp.cpp b/Foundation/testsuite/src/TestApp.cpp old mode 100644 new mode 100755 index 1fe257cbf..c2a081ad3 --- a/Foundation/testsuite/src/TestApp.cpp +++ b/Foundation/testsuite/src/TestApp.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TestApp_WINCE.cpp b/Foundation/testsuite/src/TestApp_WINCE.cpp old mode 100644 new mode 100755 index c707e3fce..9931a6006 --- a/Foundation/testsuite/src/TestApp_WINCE.cpp +++ b/Foundation/testsuite/src/TestApp_WINCE.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TestChannel.cpp b/Foundation/testsuite/src/TestChannel.cpp old mode 100644 new mode 100755 index 838924496..6c87be0b4 --- a/Foundation/testsuite/src/TestChannel.cpp +++ b/Foundation/testsuite/src/TestChannel.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TestChannel.h b/Foundation/testsuite/src/TestChannel.h old mode 100644 new mode 100755 index fd63a463f..92a83d830 --- a/Foundation/testsuite/src/TestChannel.h +++ b/Foundation/testsuite/src/TestChannel.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TestLibrary.cpp b/Foundation/testsuite/src/TestLibrary.cpp old mode 100644 new mode 100755 index f90ae0b8d..f4a138574 --- a/Foundation/testsuite/src/TestLibrary.cpp +++ b/Foundation/testsuite/src/TestLibrary.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TestPlugin.cpp b/Foundation/testsuite/src/TestPlugin.cpp old mode 100644 new mode 100755 index a18133cc9..fa4ad6ed5 --- a/Foundation/testsuite/src/TestPlugin.cpp +++ b/Foundation/testsuite/src/TestPlugin.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TestPlugin.h b/Foundation/testsuite/src/TestPlugin.h old mode 100644 new mode 100755 index 320878885..03c9f0370 --- a/Foundation/testsuite/src/TestPlugin.h +++ b/Foundation/testsuite/src/TestPlugin.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TextBufferIteratorTest.cpp b/Foundation/testsuite/src/TextBufferIteratorTest.cpp old mode 100644 new mode 100755 index 77db827cd..85854607c --- a/Foundation/testsuite/src/TextBufferIteratorTest.cpp +++ b/Foundation/testsuite/src/TextBufferIteratorTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TextBufferIteratorTest.h b/Foundation/testsuite/src/TextBufferIteratorTest.h old mode 100644 new mode 100755 index b2431356b..ab36e1c58 --- a/Foundation/testsuite/src/TextBufferIteratorTest.h +++ b/Foundation/testsuite/src/TextBufferIteratorTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TextConverterTest.cpp b/Foundation/testsuite/src/TextConverterTest.cpp old mode 100644 new mode 100755 index 59f29ae58..6599017d6 --- a/Foundation/testsuite/src/TextConverterTest.cpp +++ b/Foundation/testsuite/src/TextConverterTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TextConverterTest.h b/Foundation/testsuite/src/TextConverterTest.h old mode 100644 new mode 100755 index dcdc1e282..897ca9a5a --- a/Foundation/testsuite/src/TextConverterTest.h +++ b/Foundation/testsuite/src/TextConverterTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TextEncodingTest.cpp b/Foundation/testsuite/src/TextEncodingTest.cpp old mode 100644 new mode 100755 index 915d71ef4..469ba95e4 --- a/Foundation/testsuite/src/TextEncodingTest.cpp +++ b/Foundation/testsuite/src/TextEncodingTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TextEncodingTest.h b/Foundation/testsuite/src/TextEncodingTest.h old mode 100644 new mode 100755 index a981d5a3d..7a5f3d278 --- a/Foundation/testsuite/src/TextEncodingTest.h +++ b/Foundation/testsuite/src/TextEncodingTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TextIteratorTest.cpp b/Foundation/testsuite/src/TextIteratorTest.cpp old mode 100644 new mode 100755 index a347fff79..42dc17e60 --- a/Foundation/testsuite/src/TextIteratorTest.cpp +++ b/Foundation/testsuite/src/TextIteratorTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TextIteratorTest.h b/Foundation/testsuite/src/TextIteratorTest.h old mode 100644 new mode 100755 index 999e6ee5d..e1760a92c --- a/Foundation/testsuite/src/TextIteratorTest.h +++ b/Foundation/testsuite/src/TextIteratorTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TextTestSuite.cpp b/Foundation/testsuite/src/TextTestSuite.cpp old mode 100644 new mode 100755 index 948e3be3e..678a0aeee --- a/Foundation/testsuite/src/TextTestSuite.cpp +++ b/Foundation/testsuite/src/TextTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TextTestSuite.h b/Foundation/testsuite/src/TextTestSuite.h old mode 100644 new mode 100755 index ed4e475e0..7181254c3 --- a/Foundation/testsuite/src/TextTestSuite.h +++ b/Foundation/testsuite/src/TextTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ThreadLocalTest.cpp b/Foundation/testsuite/src/ThreadLocalTest.cpp old mode 100644 new mode 100755 index 9c9f02d57..61fc60351 --- a/Foundation/testsuite/src/ThreadLocalTest.cpp +++ b/Foundation/testsuite/src/ThreadLocalTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ThreadLocalTest.h b/Foundation/testsuite/src/ThreadLocalTest.h old mode 100644 new mode 100755 index 475edb4a7..e2656ed5c --- a/Foundation/testsuite/src/ThreadLocalTest.h +++ b/Foundation/testsuite/src/ThreadLocalTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ThreadPoolTest.cpp b/Foundation/testsuite/src/ThreadPoolTest.cpp old mode 100644 new mode 100755 index dd30f6972..59da2160b --- a/Foundation/testsuite/src/ThreadPoolTest.cpp +++ b/Foundation/testsuite/src/ThreadPoolTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ThreadPoolTest.h b/Foundation/testsuite/src/ThreadPoolTest.h old mode 100644 new mode 100755 index 8d51357b2..80e662bd7 --- a/Foundation/testsuite/src/ThreadPoolTest.h +++ b/Foundation/testsuite/src/ThreadPoolTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ThreadTest.cpp b/Foundation/testsuite/src/ThreadTest.cpp old mode 100644 new mode 100755 index 9ae109653..1509e6e4b --- a/Foundation/testsuite/src/ThreadTest.cpp +++ b/Foundation/testsuite/src/ThreadTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ThreadTest.h b/Foundation/testsuite/src/ThreadTest.h old mode 100644 new mode 100755 index 159adad23..b984e869c --- a/Foundation/testsuite/src/ThreadTest.h +++ b/Foundation/testsuite/src/ThreadTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ThreadingTestSuite.cpp b/Foundation/testsuite/src/ThreadingTestSuite.cpp old mode 100644 new mode 100755 index f360370b6..481396b8f --- a/Foundation/testsuite/src/ThreadingTestSuite.cpp +++ b/Foundation/testsuite/src/ThreadingTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ThreadingTestSuite.h b/Foundation/testsuite/src/ThreadingTestSuite.h old mode 100644 new mode 100755 index 41cb241fb..c42a17cb5 --- a/Foundation/testsuite/src/ThreadingTestSuite.h +++ b/Foundation/testsuite/src/ThreadingTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TimedNotificationQueueTest.cpp b/Foundation/testsuite/src/TimedNotificationQueueTest.cpp old mode 100644 new mode 100755 index 77fc1760e..7204c9830 --- a/Foundation/testsuite/src/TimedNotificationQueueTest.cpp +++ b/Foundation/testsuite/src/TimedNotificationQueueTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TimedNotificationQueueTest.h b/Foundation/testsuite/src/TimedNotificationQueueTest.h old mode 100644 new mode 100755 index a5d842706..c5eeb2c7c --- a/Foundation/testsuite/src/TimedNotificationQueueTest.h +++ b/Foundation/testsuite/src/TimedNotificationQueueTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TimerTest.cpp b/Foundation/testsuite/src/TimerTest.cpp old mode 100644 new mode 100755 index 2cb446a8b..ecdef30be --- a/Foundation/testsuite/src/TimerTest.cpp +++ b/Foundation/testsuite/src/TimerTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TimerTest.h b/Foundation/testsuite/src/TimerTest.h old mode 100644 new mode 100755 index abe46b47a..c137a57b3 --- a/Foundation/testsuite/src/TimerTest.h +++ b/Foundation/testsuite/src/TimerTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TimespanTest.cpp b/Foundation/testsuite/src/TimespanTest.cpp old mode 100644 new mode 100755 index 5e7d5fcf4..15e8afc73 --- a/Foundation/testsuite/src/TimespanTest.cpp +++ b/Foundation/testsuite/src/TimespanTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TimespanTest.h b/Foundation/testsuite/src/TimespanTest.h old mode 100644 new mode 100755 index 5e0cc72ac..962572294 --- a/Foundation/testsuite/src/TimespanTest.h +++ b/Foundation/testsuite/src/TimespanTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TimestampTest.cpp b/Foundation/testsuite/src/TimestampTest.cpp old mode 100644 new mode 100755 index 685b84f18..13679f0ff --- a/Foundation/testsuite/src/TimestampTest.cpp +++ b/Foundation/testsuite/src/TimestampTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TimestampTest.h b/Foundation/testsuite/src/TimestampTest.h old mode 100644 new mode 100755 index 2ac8d7afb..6ed4c046e --- a/Foundation/testsuite/src/TimestampTest.h +++ b/Foundation/testsuite/src/TimestampTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TimezoneTest.cpp b/Foundation/testsuite/src/TimezoneTest.cpp old mode 100644 new mode 100755 index cdf40ea2e..53446a1eb --- a/Foundation/testsuite/src/TimezoneTest.cpp +++ b/Foundation/testsuite/src/TimezoneTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TimezoneTest.h b/Foundation/testsuite/src/TimezoneTest.h old mode 100644 new mode 100755 index 1c2be646e..420b6dbbe --- a/Foundation/testsuite/src/TimezoneTest.h +++ b/Foundation/testsuite/src/TimezoneTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TuplesTest.cpp b/Foundation/testsuite/src/TuplesTest.cpp old mode 100644 new mode 100755 index 073f4f8b6..241f19589 --- a/Foundation/testsuite/src/TuplesTest.cpp +++ b/Foundation/testsuite/src/TuplesTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TuplesTest.h b/Foundation/testsuite/src/TuplesTest.h old mode 100644 new mode 100755 index be432d33e..9190f2cd3 --- a/Foundation/testsuite/src/TuplesTest.h +++ b/Foundation/testsuite/src/TuplesTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TypeListTest.cpp b/Foundation/testsuite/src/TypeListTest.cpp old mode 100644 new mode 100755 index e0608edac..4e6375f11 --- a/Foundation/testsuite/src/TypeListTest.cpp +++ b/Foundation/testsuite/src/TypeListTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/TypeListTest.h b/Foundation/testsuite/src/TypeListTest.h old mode 100644 new mode 100755 index 44c79ec19..1aa0c34a6 --- a/Foundation/testsuite/src/TypeListTest.h +++ b/Foundation/testsuite/src/TypeListTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/URIStreamOpenerTest.cpp b/Foundation/testsuite/src/URIStreamOpenerTest.cpp old mode 100644 new mode 100755 index 2bcd62d6e..80ddb7452 --- a/Foundation/testsuite/src/URIStreamOpenerTest.cpp +++ b/Foundation/testsuite/src/URIStreamOpenerTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/URIStreamOpenerTest.h b/Foundation/testsuite/src/URIStreamOpenerTest.h old mode 100644 new mode 100755 index e5c16fcda..2d3543d76 --- a/Foundation/testsuite/src/URIStreamOpenerTest.h +++ b/Foundation/testsuite/src/URIStreamOpenerTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/URITest.cpp b/Foundation/testsuite/src/URITest.cpp old mode 100644 new mode 100755 index 226678586..382455f36 --- a/Foundation/testsuite/src/URITest.cpp +++ b/Foundation/testsuite/src/URITest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/URITest.h b/Foundation/testsuite/src/URITest.h old mode 100644 new mode 100755 index fb5f63153..94bb29741 --- a/Foundation/testsuite/src/URITest.h +++ b/Foundation/testsuite/src/URITest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/URITestSuite.cpp b/Foundation/testsuite/src/URITestSuite.cpp old mode 100644 new mode 100755 index bc535b17d..7dbe1aa97 --- a/Foundation/testsuite/src/URITestSuite.cpp +++ b/Foundation/testsuite/src/URITestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/URITestSuite.h b/Foundation/testsuite/src/URITestSuite.h old mode 100644 new mode 100755 index 89875ef1a..76d3c574f --- a/Foundation/testsuite/src/URITestSuite.h +++ b/Foundation/testsuite/src/URITestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/UTF8StringTest.cpp b/Foundation/testsuite/src/UTF8StringTest.cpp old mode 100644 new mode 100755 index 0a2fc1a70..1f14fea93 --- a/Foundation/testsuite/src/UTF8StringTest.cpp +++ b/Foundation/testsuite/src/UTF8StringTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/UTF8StringTest.h b/Foundation/testsuite/src/UTF8StringTest.h old mode 100644 new mode 100755 index 8ac8156ad..af59a299d --- a/Foundation/testsuite/src/UTF8StringTest.h +++ b/Foundation/testsuite/src/UTF8StringTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/UUIDGeneratorTest.cpp b/Foundation/testsuite/src/UUIDGeneratorTest.cpp old mode 100644 new mode 100755 index 3a5313c22..75ef6db35 --- a/Foundation/testsuite/src/UUIDGeneratorTest.cpp +++ b/Foundation/testsuite/src/UUIDGeneratorTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/UUIDGeneratorTest.h b/Foundation/testsuite/src/UUIDGeneratorTest.h old mode 100644 new mode 100755 index fe9cce454..b9f93e7d3 --- a/Foundation/testsuite/src/UUIDGeneratorTest.h +++ b/Foundation/testsuite/src/UUIDGeneratorTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/UUIDTest.cpp b/Foundation/testsuite/src/UUIDTest.cpp old mode 100644 new mode 100755 index 3d8e026e5..6b04a56eb --- a/Foundation/testsuite/src/UUIDTest.cpp +++ b/Foundation/testsuite/src/UUIDTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/UUIDTest.h b/Foundation/testsuite/src/UUIDTest.h old mode 100644 new mode 100755 index 342e9e4c2..baf877aca --- a/Foundation/testsuite/src/UUIDTest.h +++ b/Foundation/testsuite/src/UUIDTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/UUIDTestSuite.cpp b/Foundation/testsuite/src/UUIDTestSuite.cpp old mode 100644 new mode 100755 index c442dd76f..be2596b04 --- a/Foundation/testsuite/src/UUIDTestSuite.cpp +++ b/Foundation/testsuite/src/UUIDTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/UUIDTestSuite.h b/Foundation/testsuite/src/UUIDTestSuite.h old mode 100644 new mode 100755 index 677b415e8..e6e4c3dcb --- a/Foundation/testsuite/src/UUIDTestSuite.h +++ b/Foundation/testsuite/src/UUIDTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/UnicodeConverterTest.cpp b/Foundation/testsuite/src/UnicodeConverterTest.cpp old mode 100644 new mode 100755 index 5e58bf4ee..8e8cfbae0 --- a/Foundation/testsuite/src/UnicodeConverterTest.cpp +++ b/Foundation/testsuite/src/UnicodeConverterTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/UnicodeConverterTest.h b/Foundation/testsuite/src/UnicodeConverterTest.h old mode 100644 new mode 100755 index 8cd8eec1c..fe00d4fd8 --- a/Foundation/testsuite/src/UnicodeConverterTest.h +++ b/Foundation/testsuite/src/UnicodeConverterTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/UniqueExpireCacheTest.cpp b/Foundation/testsuite/src/UniqueExpireCacheTest.cpp old mode 100644 new mode 100755 index 69ec6f5ae..9b95f293b --- a/Foundation/testsuite/src/UniqueExpireCacheTest.cpp +++ b/Foundation/testsuite/src/UniqueExpireCacheTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/UniqueExpireCacheTest.h b/Foundation/testsuite/src/UniqueExpireCacheTest.h old mode 100644 new mode 100755 index b4da48a13..45071edda --- a/Foundation/testsuite/src/UniqueExpireCacheTest.h +++ b/Foundation/testsuite/src/UniqueExpireCacheTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // #ifndef UniqueExpireCacheTest_INCLUDED diff --git a/Foundation/testsuite/src/UniqueExpireLRUCacheTest.cpp b/Foundation/testsuite/src/UniqueExpireLRUCacheTest.cpp old mode 100644 new mode 100755 index 545010ced..cac8e683f --- a/Foundation/testsuite/src/UniqueExpireLRUCacheTest.cpp +++ b/Foundation/testsuite/src/UniqueExpireLRUCacheTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/UniqueExpireLRUCacheTest.h b/Foundation/testsuite/src/UniqueExpireLRUCacheTest.h old mode 100644 new mode 100755 index 491b32e82..bcacfbe75 --- a/Foundation/testsuite/src/UniqueExpireLRUCacheTest.h +++ b/Foundation/testsuite/src/UniqueExpireLRUCacheTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // #ifndef UniqueExpireLRUCacheTest_INCLUDED diff --git a/Foundation/testsuite/src/VarTest.cpp b/Foundation/testsuite/src/VarTest.cpp old mode 100644 new mode 100755 index e08a46c13..e7b0bea6f --- a/Foundation/testsuite/src/VarTest.cpp +++ b/Foundation/testsuite/src/VarTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/VarTest.h b/Foundation/testsuite/src/VarTest.h old mode 100644 new mode 100755 index a2d0e2664..b985c2af1 --- a/Foundation/testsuite/src/VarTest.h +++ b/Foundation/testsuite/src/VarTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // #ifndef VarTest_INCLUDED diff --git a/Foundation/testsuite/src/WinCEDriver.cpp b/Foundation/testsuite/src/WinCEDriver.cpp old mode 100644 new mode 100755 index e46859b9f..b1f6076f1 --- a/Foundation/testsuite/src/WinCEDriver.cpp +++ b/Foundation/testsuite/src/WinCEDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/WinDriver.cpp b/Foundation/testsuite/src/WinDriver.cpp old mode 100644 new mode 100755 index de7d6067b..7d981b3dc --- a/Foundation/testsuite/src/WinDriver.cpp +++ b/Foundation/testsuite/src/WinDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ZLibTest.cpp b/Foundation/testsuite/src/ZLibTest.cpp old mode 100644 new mode 100755 index c55955e57..c7dad81bf --- a/Foundation/testsuite/src/ZLibTest.cpp +++ b/Foundation/testsuite/src/ZLibTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Foundation/testsuite/src/ZLibTest.h b/Foundation/testsuite/src/ZLibTest.h old mode 100644 new mode 100755 index 79d1e4536..ab2f2a49d --- a/Foundation/testsuite/src/ZLibTest.h +++ b/Foundation/testsuite/src/ZLibTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/include/Poco/JSON/Array.h b/JSON/include/Poco/JSON/Array.h old mode 100644 new mode 100755 index cfec4476c..af48fb9ac --- a/JSON/include/Poco/JSON/Array.h +++ b/JSON/include/Poco/JSON/Array.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/include/Poco/JSON/Handler.h b/JSON/include/Poco/JSON/Handler.h old mode 100644 new mode 100755 index 0e44d7671..7dd7a7b75 --- a/JSON/include/Poco/JSON/Handler.h +++ b/JSON/include/Poco/JSON/Handler.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/include/Poco/JSON/JSON.h b/JSON/include/Poco/JSON/JSON.h old mode 100644 new mode 100755 index ca53d967b..43af77752 --- a/JSON/include/Poco/JSON/JSON.h +++ b/JSON/include/Poco/JSON/JSON.h @@ -14,27 +14,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/include/Poco/JSON/JSONException.h b/JSON/include/Poco/JSON/JSONException.h old mode 100644 new mode 100755 index 4ba70b671..2c0359277 --- a/JSON/include/Poco/JSON/JSONException.h +++ b/JSON/include/Poco/JSON/JSONException.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/include/Poco/JSON/Object.h b/JSON/include/Poco/JSON/Object.h old mode 100644 new mode 100755 index 4e3abd2fd..b04441abc --- a/JSON/include/Poco/JSON/Object.h +++ b/JSON/include/Poco/JSON/Object.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/include/Poco/JSON/ParseHandler.h b/JSON/include/Poco/JSON/ParseHandler.h old mode 100644 new mode 100755 index e44ee2287..cde518381 --- a/JSON/include/Poco/JSON/ParseHandler.h +++ b/JSON/include/Poco/JSON/ParseHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/include/Poco/JSON/Parser.h b/JSON/include/Poco/JSON/Parser.h old mode 100644 new mode 100755 index c2d9c81dc..c31c01402 --- a/JSON/include/Poco/JSON/Parser.h +++ b/JSON/include/Poco/JSON/Parser.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // /* diff --git a/JSON/include/Poco/JSON/PrintHandler.h b/JSON/include/Poco/JSON/PrintHandler.h old mode 100644 new mode 100755 index e2f11b98c..6fb223720 --- a/JSON/include/Poco/JSON/PrintHandler.h +++ b/JSON/include/Poco/JSON/PrintHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/include/Poco/JSON/Query.h b/JSON/include/Poco/JSON/Query.h old mode 100644 new mode 100755 index b6151f3d0..f009cfb16 --- a/JSON/include/Poco/JSON/Query.h +++ b/JSON/include/Poco/JSON/Query.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // #ifndef JSON_JSONQuery_INCLUDED diff --git a/JSON/include/Poco/JSON/Stringifier.h b/JSON/include/Poco/JSON/Stringifier.h old mode 100644 new mode 100755 index 74e4b607b..9001ced7f --- a/JSON/include/Poco/JSON/Stringifier.h +++ b/JSON/include/Poco/JSON/Stringifier.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/include/Poco/JSON/Template.h b/JSON/include/Poco/JSON/Template.h old mode 100644 new mode 100755 index 26a8480da..63665e759 --- a/JSON/include/Poco/JSON/Template.h +++ b/JSON/include/Poco/JSON/Template.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // #ifndef JSON_JSONTemplate_INCLUDED diff --git a/JSON/include/Poco/JSON/TemplateCache.h b/JSON/include/Poco/JSON/TemplateCache.h old mode 100644 new mode 100755 index c1b23da7f..e3268eba9 --- a/JSON/include/Poco/JSON/TemplateCache.h +++ b/JSON/include/Poco/JSON/TemplateCache.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // #ifndef JSON_JSONTemplateCache_INCLUDED diff --git a/JSON/samples/Benchmark/src/Benchmark.cpp b/JSON/samples/Benchmark/src/Benchmark.cpp old mode 100644 new mode 100755 index 741c0fa6f..735ea500b --- a/JSON/samples/Benchmark/src/Benchmark.cpp +++ b/JSON/samples/Benchmark/src/Benchmark.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/src/Array.cpp b/JSON/src/Array.cpp old mode 100644 new mode 100755 index 56f905210..d49c01077 --- a/JSON/src/Array.cpp +++ b/JSON/src/Array.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/src/Handler.cpp b/JSON/src/Handler.cpp old mode 100644 new mode 100755 index 1bc7f3153..e682780c0 --- a/JSON/src/Handler.cpp +++ b/JSON/src/Handler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/src/JSONException.cpp b/JSON/src/JSONException.cpp old mode 100644 new mode 100755 index 4612b268c..86d640f34 --- a/JSON/src/JSONException.cpp +++ b/JSON/src/JSONException.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/src/Object.cpp b/JSON/src/Object.cpp old mode 100644 new mode 100755 index adbd77548..683ec8ff0 --- a/JSON/src/Object.cpp +++ b/JSON/src/Object.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/src/ParseHandler.cpp b/JSON/src/ParseHandler.cpp old mode 100644 new mode 100755 index 65ca24d72..74296493a --- a/JSON/src/ParseHandler.cpp +++ b/JSON/src/ParseHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/src/Parser.cpp b/JSON/src/Parser.cpp old mode 100644 new mode 100755 index db993939b..570bd8c4c --- a/JSON/src/Parser.cpp +++ b/JSON/src/Parser.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/src/PrintHandler.cpp b/JSON/src/PrintHandler.cpp old mode 100644 new mode 100755 index f917752cb..34aad6fef --- a/JSON/src/PrintHandler.cpp +++ b/JSON/src/PrintHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/src/Query.cpp b/JSON/src/Query.cpp old mode 100644 new mode 100755 index 9057f544e..754718eee --- a/JSON/src/Query.cpp +++ b/JSON/src/Query.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/src/Stringifier.cpp b/JSON/src/Stringifier.cpp old mode 100644 new mode 100755 index b6a20ab6a..efca53fed --- a/JSON/src/Stringifier.cpp +++ b/JSON/src/Stringifier.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/src/Template.cpp b/JSON/src/Template.cpp old mode 100644 new mode 100755 index 8884769ca..862a7783a --- a/JSON/src/Template.cpp +++ b/JSON/src/Template.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/src/TemplateCache.cpp b/JSON/src/TemplateCache.cpp old mode 100644 new mode 100755 index 29044c1f5..4d68615d3 --- a/JSON/src/TemplateCache.cpp +++ b/JSON/src/TemplateCache.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/testsuite/src/Driver.cpp b/JSON/testsuite/src/Driver.cpp old mode 100644 new mode 100755 index f8c5a4b33..d07c6872e --- a/JSON/testsuite/src/Driver.cpp +++ b/JSON/testsuite/src/Driver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/testsuite/src/JSONTest.cpp b/JSON/testsuite/src/JSONTest.cpp old mode 100644 new mode 100755 index db572644a..e034fc505 --- a/JSON/testsuite/src/JSONTest.cpp +++ b/JSON/testsuite/src/JSONTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/testsuite/src/JSONTest.h b/JSON/testsuite/src/JSONTest.h old mode 100644 new mode 100755 index 7f7669309..aec2e1fd2 --- a/JSON/testsuite/src/JSONTest.h +++ b/JSON/testsuite/src/JSONTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/testsuite/src/JSONTestSuite.cpp b/JSON/testsuite/src/JSONTestSuite.cpp old mode 100644 new mode 100755 index b5fcaeb72..0e1a18871 --- a/JSON/testsuite/src/JSONTestSuite.cpp +++ b/JSON/testsuite/src/JSONTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/testsuite/src/JSONTestSuite.h b/JSON/testsuite/src/JSONTestSuite.h old mode 100644 new mode 100755 index 4206a81be..431d80869 --- a/JSON/testsuite/src/JSONTestSuite.h +++ b/JSON/testsuite/src/JSONTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/testsuite/src/WinCEDriver.cpp b/JSON/testsuite/src/WinCEDriver.cpp old mode 100644 new mode 100755 index 4628cd471..e4a382055 --- a/JSON/testsuite/src/WinCEDriver.cpp +++ b/JSON/testsuite/src/WinCEDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/JSON/testsuite/src/WinDriver.cpp b/JSON/testsuite/src/WinDriver.cpp old mode 100644 new mode 100755 index 9fb5d3e3d..df6b2e804 --- a/JSON/testsuite/src/WinDriver.cpp +++ b/JSON/testsuite/src/WinDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 index 36b7cd93c..2f2f957ce --- a/LICENSE +++ b/LICENSE @@ -21,3 +21,12 @@ SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--------------------------------------------------------------------------- +Note: +Individual files contain the following tag instead of the full license text. + + SPDX-License-Identifier: BSL-1.0 + +This enables machine processing of license information based on the SPDX +License Identifiers that are here available: http://spdx.org/licenses/ diff --git a/MongoDB/include/Poco/MongoDB/Array.h b/MongoDB/include/Poco/MongoDB/Array.h old mode 100644 new mode 100755 index 26936fcfa..3f2dba442 --- a/MongoDB/include/Poco/MongoDB/Array.h +++ b/MongoDB/include/Poco/MongoDB/Array.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // #ifndef MongoDB_Array_INCLUDED diff --git a/MongoDB/include/Poco/MongoDB/BSONReader.h b/MongoDB/include/Poco/MongoDB/BSONReader.h old mode 100644 new mode 100755 index aa4fcb38e..ce915f3a8 --- a/MongoDB/include/Poco/MongoDB/BSONReader.h +++ b/MongoDB/include/Poco/MongoDB/BSONReader.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/BSONWriter.h b/MongoDB/include/Poco/MongoDB/BSONWriter.h old mode 100644 new mode 100755 index 64e6487e0..80e553d4e --- a/MongoDB/include/Poco/MongoDB/BSONWriter.h +++ b/MongoDB/include/Poco/MongoDB/BSONWriter.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/Binary.h b/MongoDB/include/Poco/MongoDB/Binary.h old mode 100644 new mode 100755 index a54beaaf9..8bb383323 --- a/MongoDB/include/Poco/MongoDB/Binary.h +++ b/MongoDB/include/Poco/MongoDB/Binary.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/Connection.h b/MongoDB/include/Poco/MongoDB/Connection.h old mode 100644 new mode 100755 index 06b8a118a..957235e54 --- a/MongoDB/include/Poco/MongoDB/Connection.h +++ b/MongoDB/include/Poco/MongoDB/Connection.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/Cursor.h b/MongoDB/include/Poco/MongoDB/Cursor.h old mode 100644 new mode 100755 index d5e0144b8..9f344f65a --- a/MongoDB/include/Poco/MongoDB/Cursor.h +++ b/MongoDB/include/Poco/MongoDB/Cursor.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/Database.h b/MongoDB/include/Poco/MongoDB/Database.h old mode 100644 new mode 100755 index a05253d4d..a6ccff8eb --- a/MongoDB/include/Poco/MongoDB/Database.h +++ b/MongoDB/include/Poco/MongoDB/Database.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/DeleteRequest.h b/MongoDB/include/Poco/MongoDB/DeleteRequest.h old mode 100644 new mode 100755 index 791bc4d31..358b30521 --- a/MongoDB/include/Poco/MongoDB/DeleteRequest.h +++ b/MongoDB/include/Poco/MongoDB/DeleteRequest.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/Document.h b/MongoDB/include/Poco/MongoDB/Document.h old mode 100644 new mode 100755 index 1cf41e94f..589213d82 --- a/MongoDB/include/Poco/MongoDB/Document.h +++ b/MongoDB/include/Poco/MongoDB/Document.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/Element.h b/MongoDB/include/Poco/MongoDB/Element.h old mode 100644 new mode 100755 index 5f6ab6ee2..5e45bf731 --- a/MongoDB/include/Poco/MongoDB/Element.h +++ b/MongoDB/include/Poco/MongoDB/Element.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/GetMoreRequest.h b/MongoDB/include/Poco/MongoDB/GetMoreRequest.h old mode 100644 new mode 100755 index e7a3dac66..9b2a4c8bd --- a/MongoDB/include/Poco/MongoDB/GetMoreRequest.h +++ b/MongoDB/include/Poco/MongoDB/GetMoreRequest.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/InsertRequest.h b/MongoDB/include/Poco/MongoDB/InsertRequest.h old mode 100644 new mode 100755 index 8ee523300..d273f6492 --- a/MongoDB/include/Poco/MongoDB/InsertRequest.h +++ b/MongoDB/include/Poco/MongoDB/InsertRequest.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/JavaScriptCode.h b/MongoDB/include/Poco/MongoDB/JavaScriptCode.h old mode 100644 new mode 100755 index 72be8c088..49076d29d --- a/MongoDB/include/Poco/MongoDB/JavaScriptCode.h +++ b/MongoDB/include/Poco/MongoDB/JavaScriptCode.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/KillCursorsRequest.h b/MongoDB/include/Poco/MongoDB/KillCursorsRequest.h old mode 100644 new mode 100755 index 226b8e4ef..7e14ccf82 --- a/MongoDB/include/Poco/MongoDB/KillCursorsRequest.h +++ b/MongoDB/include/Poco/MongoDB/KillCursorsRequest.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/Message.h b/MongoDB/include/Poco/MongoDB/Message.h old mode 100644 new mode 100755 index 78aa5f83a..122a3353e --- a/MongoDB/include/Poco/MongoDB/Message.h +++ b/MongoDB/include/Poco/MongoDB/Message.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/MessageHeader.h b/MongoDB/include/Poco/MongoDB/MessageHeader.h old mode 100644 new mode 100755 index 1cb3a9a2e..cd9b5fba6 --- a/MongoDB/include/Poco/MongoDB/MessageHeader.h +++ b/MongoDB/include/Poco/MongoDB/MessageHeader.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/MongoDB.h b/MongoDB/include/Poco/MongoDB/MongoDB.h old mode 100644 new mode 100755 index 3340ad901..40107650c --- a/MongoDB/include/Poco/MongoDB/MongoDB.h +++ b/MongoDB/include/Poco/MongoDB/MongoDB.h @@ -14,27 +14,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/ObjectId.h b/MongoDB/include/Poco/MongoDB/ObjectId.h old mode 100644 new mode 100755 index 66681111b..375ae3c5d --- a/MongoDB/include/Poco/MongoDB/ObjectId.h +++ b/MongoDB/include/Poco/MongoDB/ObjectId.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/PoolableConnectionFactory.h b/MongoDB/include/Poco/MongoDB/PoolableConnectionFactory.h old mode 100644 new mode 100755 index 125c0b4ec..17f81be8d --- a/MongoDB/include/Poco/MongoDB/PoolableConnectionFactory.h +++ b/MongoDB/include/Poco/MongoDB/PoolableConnectionFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/QueryRequest.h b/MongoDB/include/Poco/MongoDB/QueryRequest.h old mode 100644 new mode 100755 index a6f87b199..7e452d7b0 --- a/MongoDB/include/Poco/MongoDB/QueryRequest.h +++ b/MongoDB/include/Poco/MongoDB/QueryRequest.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/RegularExpression.h b/MongoDB/include/Poco/MongoDB/RegularExpression.h old mode 100644 new mode 100755 index 1b63a6835..ee048790e --- a/MongoDB/include/Poco/MongoDB/RegularExpression.h +++ b/MongoDB/include/Poco/MongoDB/RegularExpression.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/ReplicaSet.h b/MongoDB/include/Poco/MongoDB/ReplicaSet.h old mode 100644 new mode 100755 index 00cf3e212..3269f55d8 --- a/MongoDB/include/Poco/MongoDB/ReplicaSet.h +++ b/MongoDB/include/Poco/MongoDB/ReplicaSet.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/RequestMessage.h b/MongoDB/include/Poco/MongoDB/RequestMessage.h old mode 100644 new mode 100755 index f00b99939..d418263aa --- a/MongoDB/include/Poco/MongoDB/RequestMessage.h +++ b/MongoDB/include/Poco/MongoDB/RequestMessage.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/ResponseMessage.h b/MongoDB/include/Poco/MongoDB/ResponseMessage.h old mode 100644 new mode 100755 index 462190d9f..675b48c46 --- a/MongoDB/include/Poco/MongoDB/ResponseMessage.h +++ b/MongoDB/include/Poco/MongoDB/ResponseMessage.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/include/Poco/MongoDB/UpdateRequest.h b/MongoDB/include/Poco/MongoDB/UpdateRequest.h old mode 100644 new mode 100755 index dbe6d55d3..2a729ae71 --- a/MongoDB/include/Poco/MongoDB/UpdateRequest.h +++ b/MongoDB/include/Poco/MongoDB/UpdateRequest.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/samples/SQLToMongo/src/SQLToMongo.cpp b/MongoDB/samples/SQLToMongo/src/SQLToMongo.cpp old mode 100644 new mode 100755 index 06ae239ac..c744ec3b4 --- a/MongoDB/samples/SQLToMongo/src/SQLToMongo.cpp +++ b/MongoDB/samples/SQLToMongo/src/SQLToMongo.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2013, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/Array.cpp b/MongoDB/src/Array.cpp old mode 100644 new mode 100755 index f36f454b6..005e4ba97 --- a/MongoDB/src/Array.cpp +++ b/MongoDB/src/Array.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/Binary.cpp b/MongoDB/src/Binary.cpp old mode 100644 new mode 100755 index e76985b34..7a3b1041e --- a/MongoDB/src/Binary.cpp +++ b/MongoDB/src/Binary.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/Connection.cpp b/MongoDB/src/Connection.cpp old mode 100644 new mode 100755 index 4d83f3347..93dd27f7e --- a/MongoDB/src/Connection.cpp +++ b/MongoDB/src/Connection.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/Cursor.cpp b/MongoDB/src/Cursor.cpp old mode 100644 new mode 100755 index dfac65789..201623a40 --- a/MongoDB/src/Cursor.cpp +++ b/MongoDB/src/Cursor.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/Database.cpp b/MongoDB/src/Database.cpp old mode 100644 new mode 100755 index 1647f3cb7..b9e1e13a7 --- a/MongoDB/src/Database.cpp +++ b/MongoDB/src/Database.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/DeleteRequest.cpp b/MongoDB/src/DeleteRequest.cpp old mode 100644 new mode 100755 index f83561bb6..5662ced92 --- a/MongoDB/src/DeleteRequest.cpp +++ b/MongoDB/src/DeleteRequest.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/Document.cpp b/MongoDB/src/Document.cpp old mode 100644 new mode 100755 index 89cc5fa49..a3863e30e --- a/MongoDB/src/Document.cpp +++ b/MongoDB/src/Document.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/Element.cpp b/MongoDB/src/Element.cpp old mode 100644 new mode 100755 index a09e56e51..8b26d8022 --- a/MongoDB/src/Element.cpp +++ b/MongoDB/src/Element.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/GetMoreRequest.cpp b/MongoDB/src/GetMoreRequest.cpp old mode 100644 new mode 100755 index f1425bea5..08ffd6f7d --- a/MongoDB/src/GetMoreRequest.cpp +++ b/MongoDB/src/GetMoreRequest.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/InsertRequest.cpp b/MongoDB/src/InsertRequest.cpp old mode 100644 new mode 100755 index c192e798c..3ddaa6457 --- a/MongoDB/src/InsertRequest.cpp +++ b/MongoDB/src/InsertRequest.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/JavaScriptCode.cpp b/MongoDB/src/JavaScriptCode.cpp old mode 100644 new mode 100755 index 21b6cfb6e..b2cf9d88a --- a/MongoDB/src/JavaScriptCode.cpp +++ b/MongoDB/src/JavaScriptCode.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/KillCursorsRequest.cpp b/MongoDB/src/KillCursorsRequest.cpp old mode 100644 new mode 100755 index be29d599a..ffc141973 --- a/MongoDB/src/KillCursorsRequest.cpp +++ b/MongoDB/src/KillCursorsRequest.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/Message.cpp b/MongoDB/src/Message.cpp old mode 100644 new mode 100755 index 0a65280a2..efe84929e --- a/MongoDB/src/Message.cpp +++ b/MongoDB/src/Message.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/MessageHeader.cpp b/MongoDB/src/MessageHeader.cpp old mode 100644 new mode 100755 index 386276a09..6d12f8ca6 --- a/MongoDB/src/MessageHeader.cpp +++ b/MongoDB/src/MessageHeader.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/ObjectId.cpp b/MongoDB/src/ObjectId.cpp old mode 100644 new mode 100755 index 10d706c36..c3acd7168 --- a/MongoDB/src/ObjectId.cpp +++ b/MongoDB/src/ObjectId.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/QueryRequest.cpp b/MongoDB/src/QueryRequest.cpp old mode 100644 new mode 100755 index d03826a11..49f3e549b --- a/MongoDB/src/QueryRequest.cpp +++ b/MongoDB/src/QueryRequest.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/RegularExpression.cpp b/MongoDB/src/RegularExpression.cpp old mode 100644 new mode 100755 index 69624625e..c599c5484 --- a/MongoDB/src/RegularExpression.cpp +++ b/MongoDB/src/RegularExpression.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/ReplicaSet.cpp b/MongoDB/src/ReplicaSet.cpp old mode 100644 new mode 100755 index 8667935ed..3f6a0df0f --- a/MongoDB/src/ReplicaSet.cpp +++ b/MongoDB/src/ReplicaSet.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/RequestMessage.cpp b/MongoDB/src/RequestMessage.cpp old mode 100644 new mode 100755 index 9d78b259d..9af9c4efe --- a/MongoDB/src/RequestMessage.cpp +++ b/MongoDB/src/RequestMessage.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/ResponseMessage.cpp b/MongoDB/src/ResponseMessage.cpp old mode 100644 new mode 100755 index e8b42f484..a46e27161 --- a/MongoDB/src/ResponseMessage.cpp +++ b/MongoDB/src/ResponseMessage.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/src/UpdateRequest.cpp b/MongoDB/src/UpdateRequest.cpp old mode 100644 new mode 100755 index fda14e2d3..f8d17fd41 --- a/MongoDB/src/UpdateRequest.cpp +++ b/MongoDB/src/UpdateRequest.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/testsuite/src/Driver.cpp b/MongoDB/testsuite/src/Driver.cpp old mode 100644 new mode 100755 index 24b88cbb1..82ed47087 --- a/MongoDB/testsuite/src/Driver.cpp +++ b/MongoDB/testsuite/src/Driver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/testsuite/src/MongoDBTest.cpp b/MongoDB/testsuite/src/MongoDBTest.cpp old mode 100644 new mode 100755 index aef99fe09..33f87e7ce --- a/MongoDB/testsuite/src/MongoDBTest.cpp +++ b/MongoDB/testsuite/src/MongoDBTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // #include diff --git a/MongoDB/testsuite/src/MongoDBTest.h b/MongoDB/testsuite/src/MongoDBTest.h old mode 100644 new mode 100755 index 852355ea4..2090dd2d7 --- a/MongoDB/testsuite/src/MongoDBTest.h +++ b/MongoDB/testsuite/src/MongoDBTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/testsuite/src/MongoDBTestSuite.cpp b/MongoDB/testsuite/src/MongoDBTestSuite.cpp old mode 100644 new mode 100755 index 08706118b..e44abb94b --- a/MongoDB/testsuite/src/MongoDBTestSuite.cpp +++ b/MongoDB/testsuite/src/MongoDBTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/testsuite/src/MongoDBTestSuite.h b/MongoDB/testsuite/src/MongoDBTestSuite.h old mode 100644 new mode 100755 index 815bbf56b..78fe83e61 --- a/MongoDB/testsuite/src/MongoDBTestSuite.h +++ b/MongoDB/testsuite/src/MongoDBTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/testsuite/src/WinCEDriver.cpp b/MongoDB/testsuite/src/WinCEDriver.cpp old mode 100644 new mode 100755 index e7fd5b51e..4eb5b6801 --- a/MongoDB/testsuite/src/WinCEDriver.cpp +++ b/MongoDB/testsuite/src/WinCEDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/MongoDB/testsuite/src/WinDriver.cpp b/MongoDB/testsuite/src/WinDriver.cpp old mode 100644 new mode 100755 index f63a6f768..384b56574 --- a/MongoDB/testsuite/src/WinDriver.cpp +++ b/MongoDB/testsuite/src/WinDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/AbstractHTTPRequestHandler.h b/Net/include/Poco/Net/AbstractHTTPRequestHandler.h old mode 100644 new mode 100755 index c0e4c14b0..9b0cc0811 --- a/Net/include/Poco/Net/AbstractHTTPRequestHandler.h +++ b/Net/include/Poco/Net/AbstractHTTPRequestHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/DNS.h b/Net/include/Poco/Net/DNS.h old mode 100644 new mode 100755 index b344e1e3e..7f8f8a322 --- a/Net/include/Poco/Net/DNS.h +++ b/Net/include/Poco/Net/DNS.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/DatagramSocket.h b/Net/include/Poco/Net/DatagramSocket.h old mode 100644 new mode 100755 index 8e14d3f4e..20fbcef11 --- a/Net/include/Poco/Net/DatagramSocket.h +++ b/Net/include/Poco/Net/DatagramSocket.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/DatagramSocketImpl.h b/Net/include/Poco/Net/DatagramSocketImpl.h old mode 100644 new mode 100755 index 03a5b4687..ce36cfeea --- a/Net/include/Poco/Net/DatagramSocketImpl.h +++ b/Net/include/Poco/Net/DatagramSocketImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/DialogSocket.h b/Net/include/Poco/Net/DialogSocket.h old mode 100644 new mode 100755 index ad76dcdcf..a033979ca --- a/Net/include/Poco/Net/DialogSocket.h +++ b/Net/include/Poco/Net/DialogSocket.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/FTPClientSession.h b/Net/include/Poco/Net/FTPClientSession.h old mode 100644 new mode 100755 index 20ec638f4..f16c2ff5c --- a/Net/include/Poco/Net/FTPClientSession.h +++ b/Net/include/Poco/Net/FTPClientSession.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/FTPStreamFactory.h b/Net/include/Poco/Net/FTPStreamFactory.h old mode 100644 new mode 100755 index d01219a82..ed619c70f --- a/Net/include/Poco/Net/FTPStreamFactory.h +++ b/Net/include/Poco/Net/FTPStreamFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/FilePartSource.h b/Net/include/Poco/Net/FilePartSource.h old mode 100644 new mode 100755 index 3096265bf..7b21bbb34 --- a/Net/include/Poco/Net/FilePartSource.h +++ b/Net/include/Poco/Net/FilePartSource.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTMLForm.h b/Net/include/Poco/Net/HTMLForm.h old mode 100644 new mode 100755 index 5c2cbb523..8547e0f0a --- a/Net/include/Poco/Net/HTMLForm.h +++ b/Net/include/Poco/Net/HTMLForm.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPAuthenticationParams.h b/Net/include/Poco/Net/HTTPAuthenticationParams.h old mode 100644 new mode 100755 index 25d6fb6af..f5afa5a1c --- a/Net/include/Poco/Net/HTTPAuthenticationParams.h +++ b/Net/include/Poco/Net/HTTPAuthenticationParams.h @@ -13,27 +13,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPBasicCredentials.h b/Net/include/Poco/Net/HTTPBasicCredentials.h old mode 100644 new mode 100755 index c050fbc14..f98315c4e --- a/Net/include/Poco/Net/HTTPBasicCredentials.h +++ b/Net/include/Poco/Net/HTTPBasicCredentials.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPBasicStreamBuf.h b/Net/include/Poco/Net/HTTPBasicStreamBuf.h old mode 100644 new mode 100755 index bcd56a909..cc158f862 --- a/Net/include/Poco/Net/HTTPBasicStreamBuf.h +++ b/Net/include/Poco/Net/HTTPBasicStreamBuf.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPBufferAllocator.h b/Net/include/Poco/Net/HTTPBufferAllocator.h old mode 100644 new mode 100755 index 22d7c8783..b63147621 --- a/Net/include/Poco/Net/HTTPBufferAllocator.h +++ b/Net/include/Poco/Net/HTTPBufferAllocator.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPChunkedStream.h b/Net/include/Poco/Net/HTTPChunkedStream.h old mode 100644 new mode 100755 index 6b0d7fb00..8d2462e0d --- a/Net/include/Poco/Net/HTTPChunkedStream.h +++ b/Net/include/Poco/Net/HTTPChunkedStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPClientSession.h b/Net/include/Poco/Net/HTTPClientSession.h old mode 100644 new mode 100755 index 604cb31ed..64522bcf2 --- a/Net/include/Poco/Net/HTTPClientSession.h +++ b/Net/include/Poco/Net/HTTPClientSession.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPCookie.h b/Net/include/Poco/Net/HTTPCookie.h old mode 100644 new mode 100755 index 64b0b4ff5..ceca6a0b9 --- a/Net/include/Poco/Net/HTTPCookie.h +++ b/Net/include/Poco/Net/HTTPCookie.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPCredentials.h b/Net/include/Poco/Net/HTTPCredentials.h old mode 100644 new mode 100755 index 30caab274..3a4d0cbd4 --- a/Net/include/Poco/Net/HTTPCredentials.h +++ b/Net/include/Poco/Net/HTTPCredentials.h @@ -13,27 +13,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPDigestCredentials.h b/Net/include/Poco/Net/HTTPDigestCredentials.h old mode 100644 new mode 100755 index 51475893d..cde91ec72 --- a/Net/include/Poco/Net/HTTPDigestCredentials.h +++ b/Net/include/Poco/Net/HTTPDigestCredentials.h @@ -13,27 +13,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPFixedLengthStream.h b/Net/include/Poco/Net/HTTPFixedLengthStream.h old mode 100644 new mode 100755 index a7eaa2f01..82309ee7d --- a/Net/include/Poco/Net/HTTPFixedLengthStream.h +++ b/Net/include/Poco/Net/HTTPFixedLengthStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPHeaderStream.h b/Net/include/Poco/Net/HTTPHeaderStream.h old mode 100644 new mode 100755 index 056ca66ac..a3e8960db --- a/Net/include/Poco/Net/HTTPHeaderStream.h +++ b/Net/include/Poco/Net/HTTPHeaderStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPIOStream.h b/Net/include/Poco/Net/HTTPIOStream.h old mode 100644 new mode 100755 index 6fd5e879b..f6c6f2ffe --- a/Net/include/Poco/Net/HTTPIOStream.h +++ b/Net/include/Poco/Net/HTTPIOStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPMessage.h b/Net/include/Poco/Net/HTTPMessage.h old mode 100644 new mode 100755 index c131feb6d..e16451782 --- a/Net/include/Poco/Net/HTTPMessage.h +++ b/Net/include/Poco/Net/HTTPMessage.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPRequest.h b/Net/include/Poco/Net/HTTPRequest.h old mode 100644 new mode 100755 index 033b72088..79cd722b0 --- a/Net/include/Poco/Net/HTTPRequest.h +++ b/Net/include/Poco/Net/HTTPRequest.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPRequestHandler.h b/Net/include/Poco/Net/HTTPRequestHandler.h old mode 100644 new mode 100755 index 973578d10..1da6f084c --- a/Net/include/Poco/Net/HTTPRequestHandler.h +++ b/Net/include/Poco/Net/HTTPRequestHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPRequestHandlerFactory.h b/Net/include/Poco/Net/HTTPRequestHandlerFactory.h old mode 100644 new mode 100755 index a5f9b04bd..6bf9fc9aa --- a/Net/include/Poco/Net/HTTPRequestHandlerFactory.h +++ b/Net/include/Poco/Net/HTTPRequestHandlerFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPResponse.h b/Net/include/Poco/Net/HTTPResponse.h old mode 100644 new mode 100755 index 3f5900626..5239ddcea --- a/Net/include/Poco/Net/HTTPResponse.h +++ b/Net/include/Poco/Net/HTTPResponse.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPServer.h b/Net/include/Poco/Net/HTTPServer.h old mode 100644 new mode 100755 index 27af166d6..4d695eb98 --- a/Net/include/Poco/Net/HTTPServer.h +++ b/Net/include/Poco/Net/HTTPServer.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPServerConnection.h b/Net/include/Poco/Net/HTTPServerConnection.h old mode 100644 new mode 100755 index 8e80777a6..5076332b9 --- a/Net/include/Poco/Net/HTTPServerConnection.h +++ b/Net/include/Poco/Net/HTTPServerConnection.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPServerConnectionFactory.h b/Net/include/Poco/Net/HTTPServerConnectionFactory.h old mode 100644 new mode 100755 index 46630519e..eb086ff9d --- a/Net/include/Poco/Net/HTTPServerConnectionFactory.h +++ b/Net/include/Poco/Net/HTTPServerConnectionFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPServerParams.h b/Net/include/Poco/Net/HTTPServerParams.h old mode 100644 new mode 100755 index 0c19f3b0f..865659911 --- a/Net/include/Poco/Net/HTTPServerParams.h +++ b/Net/include/Poco/Net/HTTPServerParams.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPServerRequest.h b/Net/include/Poco/Net/HTTPServerRequest.h old mode 100644 new mode 100755 index 6112acf40..883967669 --- a/Net/include/Poco/Net/HTTPServerRequest.h +++ b/Net/include/Poco/Net/HTTPServerRequest.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPServerRequestImpl.h b/Net/include/Poco/Net/HTTPServerRequestImpl.h old mode 100644 new mode 100755 index 3444df5b9..38ea80594 --- a/Net/include/Poco/Net/HTTPServerRequestImpl.h +++ b/Net/include/Poco/Net/HTTPServerRequestImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPServerResponse.h b/Net/include/Poco/Net/HTTPServerResponse.h old mode 100644 new mode 100755 index 2ede9e668..4688a0bd3 --- a/Net/include/Poco/Net/HTTPServerResponse.h +++ b/Net/include/Poco/Net/HTTPServerResponse.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPServerResponseImpl.h b/Net/include/Poco/Net/HTTPServerResponseImpl.h old mode 100644 new mode 100755 index 34377eb9d..661e607f5 --- a/Net/include/Poco/Net/HTTPServerResponseImpl.h +++ b/Net/include/Poco/Net/HTTPServerResponseImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPServerSession.h b/Net/include/Poco/Net/HTTPServerSession.h old mode 100644 new mode 100755 index b7aefe1bd..5a6897cdf --- a/Net/include/Poco/Net/HTTPServerSession.h +++ b/Net/include/Poco/Net/HTTPServerSession.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPSession.h b/Net/include/Poco/Net/HTTPSession.h old mode 100644 new mode 100755 index 9f4f1be58..6df4eefa1 --- a/Net/include/Poco/Net/HTTPSession.h +++ b/Net/include/Poco/Net/HTTPSession.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPSessionFactory.h b/Net/include/Poco/Net/HTTPSessionFactory.h old mode 100644 new mode 100755 index 5cf6d9c6d..854a8c713 --- a/Net/include/Poco/Net/HTTPSessionFactory.h +++ b/Net/include/Poco/Net/HTTPSessionFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPSessionInstantiator.h b/Net/include/Poco/Net/HTTPSessionInstantiator.h old mode 100644 new mode 100755 index 52d7339e7..12699ac56 --- a/Net/include/Poco/Net/HTTPSessionInstantiator.h +++ b/Net/include/Poco/Net/HTTPSessionInstantiator.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPStream.h b/Net/include/Poco/Net/HTTPStream.h old mode 100644 new mode 100755 index 24eebe72e..e8d0a8108 --- a/Net/include/Poco/Net/HTTPStream.h +++ b/Net/include/Poco/Net/HTTPStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HTTPStreamFactory.h b/Net/include/Poco/Net/HTTPStreamFactory.h old mode 100644 new mode 100755 index e5d75776f..7114c96c8 --- a/Net/include/Poco/Net/HTTPStreamFactory.h +++ b/Net/include/Poco/Net/HTTPStreamFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/HostEntry.h b/Net/include/Poco/Net/HostEntry.h old mode 100644 new mode 100755 index 331bd5b95..38171db7a --- a/Net/include/Poco/Net/HostEntry.h +++ b/Net/include/Poco/Net/HostEntry.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/ICMPClient.h b/Net/include/Poco/Net/ICMPClient.h old mode 100644 new mode 100755 index d741bb815..b3a27b686 --- a/Net/include/Poco/Net/ICMPClient.h +++ b/Net/include/Poco/Net/ICMPClient.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/ICMPEventArgs.h b/Net/include/Poco/Net/ICMPEventArgs.h old mode 100644 new mode 100755 index 462157a35..84496cb16 --- a/Net/include/Poco/Net/ICMPEventArgs.h +++ b/Net/include/Poco/Net/ICMPEventArgs.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/ICMPPacket.h b/Net/include/Poco/Net/ICMPPacket.h old mode 100644 new mode 100755 index d15d0a6c9..95f6d65a8 --- a/Net/include/Poco/Net/ICMPPacket.h +++ b/Net/include/Poco/Net/ICMPPacket.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/ICMPPacketImpl.h b/Net/include/Poco/Net/ICMPPacketImpl.h old mode 100644 new mode 100755 index ec03fd52d..ac679654e --- a/Net/include/Poco/Net/ICMPPacketImpl.h +++ b/Net/include/Poco/Net/ICMPPacketImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/ICMPSocket.h b/Net/include/Poco/Net/ICMPSocket.h old mode 100644 new mode 100755 index 833310e32..cfcc2ff3e --- a/Net/include/Poco/Net/ICMPSocket.h +++ b/Net/include/Poco/Net/ICMPSocket.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/ICMPSocketImpl.h b/Net/include/Poco/Net/ICMPSocketImpl.h old mode 100644 new mode 100755 index 08ddf3ff5..c033e5af1 --- a/Net/include/Poco/Net/ICMPSocketImpl.h +++ b/Net/include/Poco/Net/ICMPSocketImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/ICMPv4PacketImpl.h b/Net/include/Poco/Net/ICMPv4PacketImpl.h old mode 100644 new mode 100755 index d30a076bb..b8f4258b4 --- a/Net/include/Poco/Net/ICMPv4PacketImpl.h +++ b/Net/include/Poco/Net/ICMPv4PacketImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/IPAddress.h b/Net/include/Poco/Net/IPAddress.h old mode 100644 new mode 100755 index 6faab415e..b182ff9bb --- a/Net/include/Poco/Net/IPAddress.h +++ b/Net/include/Poco/Net/IPAddress.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/IPAddressImpl.h b/Net/include/Poco/Net/IPAddressImpl.h old mode 100644 new mode 100755 index efb8c0a2b..eb90b8e56 --- a/Net/include/Poco/Net/IPAddressImpl.h +++ b/Net/include/Poco/Net/IPAddressImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/MailMessage.h b/Net/include/Poco/Net/MailMessage.h old mode 100644 new mode 100755 index 54c639ac3..dccc1f191 --- a/Net/include/Poco/Net/MailMessage.h +++ b/Net/include/Poco/Net/MailMessage.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/MailRecipient.h b/Net/include/Poco/Net/MailRecipient.h old mode 100644 new mode 100755 index 25997f6e4..e4467e48e --- a/Net/include/Poco/Net/MailRecipient.h +++ b/Net/include/Poco/Net/MailRecipient.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/MailStream.h b/Net/include/Poco/Net/MailStream.h old mode 100644 new mode 100755 index fd3ec4d75..b9e760ae6 --- a/Net/include/Poco/Net/MailStream.h +++ b/Net/include/Poco/Net/MailStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/MediaType.h b/Net/include/Poco/Net/MediaType.h old mode 100644 new mode 100755 index ad834c9f9..a2d7664d1 --- a/Net/include/Poco/Net/MediaType.h +++ b/Net/include/Poco/Net/MediaType.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/MessageHeader.h b/Net/include/Poco/Net/MessageHeader.h old mode 100644 new mode 100755 index 32aac6a30..964d0216d --- a/Net/include/Poco/Net/MessageHeader.h +++ b/Net/include/Poco/Net/MessageHeader.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/MulticastSocket.h b/Net/include/Poco/Net/MulticastSocket.h old mode 100644 new mode 100755 index ac78f2ca9..e6cfcd477 --- a/Net/include/Poco/Net/MulticastSocket.h +++ b/Net/include/Poco/Net/MulticastSocket.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/MultipartReader.h b/Net/include/Poco/Net/MultipartReader.h old mode 100644 new mode 100755 index 7ad269253..fca6bf5e1 --- a/Net/include/Poco/Net/MultipartReader.h +++ b/Net/include/Poco/Net/MultipartReader.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/MultipartWriter.h b/Net/include/Poco/Net/MultipartWriter.h old mode 100644 new mode 100755 index 12eb2316b..4bafc3879 --- a/Net/include/Poco/Net/MultipartWriter.h +++ b/Net/include/Poco/Net/MultipartWriter.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/NTPClient.h b/Net/include/Poco/Net/NTPClient.h old mode 100644 new mode 100755 index cd7dcb7da..b2967ff21 --- a/Net/include/Poco/Net/NTPClient.h +++ b/Net/include/Poco/Net/NTPClient.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/NTPEventArgs.h b/Net/include/Poco/Net/NTPEventArgs.h old mode 100644 new mode 100755 index c403c8702..6c2c5cba8 --- a/Net/include/Poco/Net/NTPEventArgs.h +++ b/Net/include/Poco/Net/NTPEventArgs.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/NTPPacket.h b/Net/include/Poco/Net/NTPPacket.h old mode 100644 new mode 100755 index b861a9760..32dbd1955 --- a/Net/include/Poco/Net/NTPPacket.h +++ b/Net/include/Poco/Net/NTPPacket.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/NameValueCollection.h b/Net/include/Poco/Net/NameValueCollection.h old mode 100644 new mode 100755 index ca3c9c821..4ae9b5b81 --- a/Net/include/Poco/Net/NameValueCollection.h +++ b/Net/include/Poco/Net/NameValueCollection.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/Net.h b/Net/include/Poco/Net/Net.h old mode 100644 new mode 100755 index af55b9dc8..a7e90564b --- a/Net/include/Poco/Net/Net.h +++ b/Net/include/Poco/Net/Net.h @@ -14,27 +14,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/NetException.h b/Net/include/Poco/Net/NetException.h old mode 100644 new mode 100755 index 471df7efe..a8e22bf65 --- a/Net/include/Poco/Net/NetException.h +++ b/Net/include/Poco/Net/NetException.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/NetworkInterface.h b/Net/include/Poco/Net/NetworkInterface.h old mode 100644 new mode 100755 index 79653ad42..066c768a8 --- a/Net/include/Poco/Net/NetworkInterface.h +++ b/Net/include/Poco/Net/NetworkInterface.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/NullPartHandler.h b/Net/include/Poco/Net/NullPartHandler.h old mode 100644 new mode 100755 index a1d525489..41f44025c --- a/Net/include/Poco/Net/NullPartHandler.h +++ b/Net/include/Poco/Net/NullPartHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/POP3ClientSession.h b/Net/include/Poco/Net/POP3ClientSession.h old mode 100644 new mode 100755 index d3bd5dea6..d98dc3492 --- a/Net/include/Poco/Net/POP3ClientSession.h +++ b/Net/include/Poco/Net/POP3ClientSession.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/ParallelSocketAcceptor.h b/Net/include/Poco/Net/ParallelSocketAcceptor.h old mode 100644 new mode 100755 index 333cbe777..44938b987 --- a/Net/include/Poco/Net/ParallelSocketAcceptor.h +++ b/Net/include/Poco/Net/ParallelSocketAcceptor.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/ParallelSocketReactor.h b/Net/include/Poco/Net/ParallelSocketReactor.h old mode 100644 new mode 100755 index 4f0eefd5c..c89d68d9a --- a/Net/include/Poco/Net/ParallelSocketReactor.h +++ b/Net/include/Poco/Net/ParallelSocketReactor.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/PartHandler.h b/Net/include/Poco/Net/PartHandler.h old mode 100644 new mode 100755 index cebbd1f1e..3884505a7 --- a/Net/include/Poco/Net/PartHandler.h +++ b/Net/include/Poco/Net/PartHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/PartSource.h b/Net/include/Poco/Net/PartSource.h old mode 100644 new mode 100755 index acb4bfdc8..e1b886cf9 --- a/Net/include/Poco/Net/PartSource.h +++ b/Net/include/Poco/Net/PartSource.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/PartStore.h b/Net/include/Poco/Net/PartStore.h old mode 100644 new mode 100755 index fb776fdd4..60cff8e4c --- a/Net/include/Poco/Net/PartStore.h +++ b/Net/include/Poco/Net/PartStore.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/QuotedPrintableDecoder.h b/Net/include/Poco/Net/QuotedPrintableDecoder.h old mode 100644 new mode 100755 index e359e8fc8..ae946a27b --- a/Net/include/Poco/Net/QuotedPrintableDecoder.h +++ b/Net/include/Poco/Net/QuotedPrintableDecoder.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/QuotedPrintableEncoder.h b/Net/include/Poco/Net/QuotedPrintableEncoder.h old mode 100644 new mode 100755 index 8b4e0a02e..62bef7dbd --- a/Net/include/Poco/Net/QuotedPrintableEncoder.h +++ b/Net/include/Poco/Net/QuotedPrintableEncoder.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/RawSocket.h b/Net/include/Poco/Net/RawSocket.h old mode 100644 new mode 100755 index 8a4795f38..ebd20e42f --- a/Net/include/Poco/Net/RawSocket.h +++ b/Net/include/Poco/Net/RawSocket.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/RawSocketImpl.h b/Net/include/Poco/Net/RawSocketImpl.h old mode 100644 new mode 100755 index 11d849e98..8bf056913 --- a/Net/include/Poco/Net/RawSocketImpl.h +++ b/Net/include/Poco/Net/RawSocketImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/RemoteSyslogChannel.h b/Net/include/Poco/Net/RemoteSyslogChannel.h old mode 100644 new mode 100755 index 5a06c2ea5..2efb325e8 --- a/Net/include/Poco/Net/RemoteSyslogChannel.h +++ b/Net/include/Poco/Net/RemoteSyslogChannel.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/RemoteSyslogListener.h b/Net/include/Poco/Net/RemoteSyslogListener.h old mode 100644 new mode 100755 index 18fcf3ae6..5885c6c9e --- a/Net/include/Poco/Net/RemoteSyslogListener.h +++ b/Net/include/Poco/Net/RemoteSyslogListener.h @@ -12,27 +12,7 @@ // Copyright (c) 2007-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/SMTPChannel.h b/Net/include/Poco/Net/SMTPChannel.h old mode 100644 new mode 100755 index 8d4c4c7df..9ef959f02 --- a/Net/include/Poco/Net/SMTPChannel.h +++ b/Net/include/Poco/Net/SMTPChannel.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/SMTPClientSession.h b/Net/include/Poco/Net/SMTPClientSession.h old mode 100644 new mode 100755 index e5cf34de8..bf7b9650e --- a/Net/include/Poco/Net/SMTPClientSession.h +++ b/Net/include/Poco/Net/SMTPClientSession.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/ServerSocket.h b/Net/include/Poco/Net/ServerSocket.h old mode 100644 new mode 100755 index e56ec4c98..c06447d71 --- a/Net/include/Poco/Net/ServerSocket.h +++ b/Net/include/Poco/Net/ServerSocket.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/ServerSocketImpl.h b/Net/include/Poco/Net/ServerSocketImpl.h old mode 100644 new mode 100755 index d0dcdcea6..533bf65ae --- a/Net/include/Poco/Net/ServerSocketImpl.h +++ b/Net/include/Poco/Net/ServerSocketImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/Socket.h b/Net/include/Poco/Net/Socket.h old mode 100644 new mode 100755 index fb42cc87a..fc7f0ba2d --- a/Net/include/Poco/Net/Socket.h +++ b/Net/include/Poco/Net/Socket.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/SocketAcceptor.h b/Net/include/Poco/Net/SocketAcceptor.h old mode 100644 new mode 100755 index c899fa6fb..f15068e67 --- a/Net/include/Poco/Net/SocketAcceptor.h +++ b/Net/include/Poco/Net/SocketAcceptor.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/SocketAddress.h b/Net/include/Poco/Net/SocketAddress.h old mode 100644 new mode 100755 index 65913f151..4c92f4e4f --- a/Net/include/Poco/Net/SocketAddress.h +++ b/Net/include/Poco/Net/SocketAddress.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/SocketAddressImpl.h b/Net/include/Poco/Net/SocketAddressImpl.h old mode 100644 new mode 100755 index 1e2a6798c..40835d2eb --- a/Net/include/Poco/Net/SocketAddressImpl.h +++ b/Net/include/Poco/Net/SocketAddressImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/SocketConnector.h b/Net/include/Poco/Net/SocketConnector.h old mode 100644 new mode 100755 index ae0369223..ae106f638 --- a/Net/include/Poco/Net/SocketConnector.h +++ b/Net/include/Poco/Net/SocketConnector.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/SocketDefs.h b/Net/include/Poco/Net/SocketDefs.h old mode 100644 new mode 100755 index 8d963ae77..e7583a0b7 --- a/Net/include/Poco/Net/SocketDefs.h +++ b/Net/include/Poco/Net/SocketDefs.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/SocketImpl.h b/Net/include/Poco/Net/SocketImpl.h old mode 100644 new mode 100755 index f4687d4b9..cfc17ccbf --- a/Net/include/Poco/Net/SocketImpl.h +++ b/Net/include/Poco/Net/SocketImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/SocketNotification.h b/Net/include/Poco/Net/SocketNotification.h old mode 100644 new mode 100755 index d1d9d0165..fc6eba97c --- a/Net/include/Poco/Net/SocketNotification.h +++ b/Net/include/Poco/Net/SocketNotification.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/SocketNotifier.h b/Net/include/Poco/Net/SocketNotifier.h old mode 100644 new mode 100755 index 370f41f91..6d4911361 --- a/Net/include/Poco/Net/SocketNotifier.h +++ b/Net/include/Poco/Net/SocketNotifier.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/SocketReactor.h b/Net/include/Poco/Net/SocketReactor.h old mode 100644 new mode 100755 index d47685d93..befdc9a0f --- a/Net/include/Poco/Net/SocketReactor.h +++ b/Net/include/Poco/Net/SocketReactor.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/SocketStream.h b/Net/include/Poco/Net/SocketStream.h old mode 100644 new mode 100755 index b003202ce..3a5580930 --- a/Net/include/Poco/Net/SocketStream.h +++ b/Net/include/Poco/Net/SocketStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/StreamSocket.h b/Net/include/Poco/Net/StreamSocket.h old mode 100644 new mode 100755 index 1057132b4..987da8489 --- a/Net/include/Poco/Net/StreamSocket.h +++ b/Net/include/Poco/Net/StreamSocket.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/StreamSocketImpl.h b/Net/include/Poco/Net/StreamSocketImpl.h old mode 100644 new mode 100755 index 14b27c4b7..ee91283a9 --- a/Net/include/Poco/Net/StreamSocketImpl.h +++ b/Net/include/Poco/Net/StreamSocketImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/StringPartSource.h b/Net/include/Poco/Net/StringPartSource.h old mode 100644 new mode 100755 index 92bbaac22..136d9fb61 --- a/Net/include/Poco/Net/StringPartSource.h +++ b/Net/include/Poco/Net/StringPartSource.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/TCPServer.h b/Net/include/Poco/Net/TCPServer.h old mode 100644 new mode 100755 index f90185ebb..fccb658f7 --- a/Net/include/Poco/Net/TCPServer.h +++ b/Net/include/Poco/Net/TCPServer.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/TCPServerConnection.h b/Net/include/Poco/Net/TCPServerConnection.h old mode 100644 new mode 100755 index 65bddef6a..2abbc65a6 --- a/Net/include/Poco/Net/TCPServerConnection.h +++ b/Net/include/Poco/Net/TCPServerConnection.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/TCPServerConnectionFactory.h b/Net/include/Poco/Net/TCPServerConnectionFactory.h old mode 100644 new mode 100755 index b874e6a97..7b6a62a0c --- a/Net/include/Poco/Net/TCPServerConnectionFactory.h +++ b/Net/include/Poco/Net/TCPServerConnectionFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/TCPServerDispatcher.h b/Net/include/Poco/Net/TCPServerDispatcher.h old mode 100644 new mode 100755 index 41cfcd5ea..a485617f3 --- a/Net/include/Poco/Net/TCPServerDispatcher.h +++ b/Net/include/Poco/Net/TCPServerDispatcher.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/TCPServerParams.h b/Net/include/Poco/Net/TCPServerParams.h old mode 100644 new mode 100755 index e2822a9b8..b3b0df4a0 --- a/Net/include/Poco/Net/TCPServerParams.h +++ b/Net/include/Poco/Net/TCPServerParams.h @@ -12,27 +12,7 @@ // Copyright (c) 2005-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/WebSocket.h b/Net/include/Poco/Net/WebSocket.h old mode 100644 new mode 100755 index 0e19097a2..7139e69d8 --- a/Net/include/Poco/Net/WebSocket.h +++ b/Net/include/Poco/Net/WebSocket.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/include/Poco/Net/WebSocketImpl.h b/Net/include/Poco/Net/WebSocketImpl.h old mode 100644 new mode 100755 index 6075fbb61..b631a5d2e --- a/Net/include/Poco/Net/WebSocketImpl.h +++ b/Net/include/Poco/Net/WebSocketImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/EchoServer/src/EchoServer.cpp b/Net/samples/EchoServer/src/EchoServer.cpp old mode 100644 new mode 100755 index d313fd9df..e84ed8061 --- a/Net/samples/EchoServer/src/EchoServer.cpp +++ b/Net/samples/EchoServer/src/EchoServer.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/HTTPFormServer/src/HTTPFormServer.cpp b/Net/samples/HTTPFormServer/src/HTTPFormServer.cpp old mode 100644 new mode 100755 index e164646fd..d1661d776 --- a/Net/samples/HTTPFormServer/src/HTTPFormServer.cpp +++ b/Net/samples/HTTPFormServer/src/HTTPFormServer.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/HTTPLoadTest/src/HTTPLoadTest.cpp b/Net/samples/HTTPLoadTest/src/HTTPLoadTest.cpp old mode 100644 new mode 100755 index 01e6adee4..f27b13ba0 --- a/Net/samples/HTTPLoadTest/src/HTTPLoadTest.cpp +++ b/Net/samples/HTTPLoadTest/src/HTTPLoadTest.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/HTTPTimeServer/src/HTTPTimeServer.cpp b/Net/samples/HTTPTimeServer/src/HTTPTimeServer.cpp old mode 100644 new mode 100755 index a29de9a18..78bc327ac --- a/Net/samples/HTTPTimeServer/src/HTTPTimeServer.cpp +++ b/Net/samples/HTTPTimeServer/src/HTTPTimeServer.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/Mail/src/Mail.cpp b/Net/samples/Mail/src/Mail.cpp old mode 100644 new mode 100755 index 4015d5787..8d7353956 --- a/Net/samples/Mail/src/Mail.cpp +++ b/Net/samples/Mail/src/Mail.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2005-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/Ping/src/Ping.cpp b/Net/samples/Ping/src/Ping.cpp old mode 100644 new mode 100755 index 56b3e0f09..eee716452 --- a/Net/samples/Ping/src/Ping.cpp +++ b/Net/samples/Ping/src/Ping.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/SMTPLogger/src/SMTPLogger.cpp b/Net/samples/SMTPLogger/src/SMTPLogger.cpp old mode 100644 new mode 100755 index 7b457cbd2..9ac20e7f8 --- a/Net/samples/SMTPLogger/src/SMTPLogger.cpp +++ b/Net/samples/SMTPLogger/src/SMTPLogger.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/TimeServer/src/TimeServer.cpp b/Net/samples/TimeServer/src/TimeServer.cpp old mode 100644 new mode 100755 index 362ad6f04..813445ddd --- a/Net/samples/TimeServer/src/TimeServer.cpp +++ b/Net/samples/TimeServer/src/TimeServer.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/TwitterClient/src/TweetApp.cpp b/Net/samples/TwitterClient/src/TweetApp.cpp old mode 100644 new mode 100755 index 0ab40214c..2076473bd --- a/Net/samples/TwitterClient/src/TweetApp.cpp +++ b/Net/samples/TwitterClient/src/TweetApp.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2009-2013, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/TwitterClient/src/Twitter.cpp b/Net/samples/TwitterClient/src/Twitter.cpp old mode 100644 new mode 100755 index 35ffce2fa..05b33aebe --- a/Net/samples/TwitterClient/src/Twitter.cpp +++ b/Net/samples/TwitterClient/src/Twitter.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2009-2013, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/TwitterClient/src/Twitter.h b/Net/samples/TwitterClient/src/Twitter.h old mode 100644 new mode 100755 index 3021f1628..2e3fb8e1c --- a/Net/samples/TwitterClient/src/Twitter.h +++ b/Net/samples/TwitterClient/src/Twitter.h @@ -8,27 +8,7 @@ // Copyright (c) 2009-2013, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/WebSocketServer/src/WebSocketServer.cpp b/Net/samples/WebSocketServer/src/WebSocketServer.cpp old mode 100644 new mode 100755 index 9bd1e643a..aa260277a --- a/Net/samples/WebSocketServer/src/WebSocketServer.cpp +++ b/Net/samples/WebSocketServer/src/WebSocketServer.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/dict/src/dict.cpp b/Net/samples/dict/src/dict.cpp old mode 100644 new mode 100755 index 2a665c05f..90c8765a0 --- a/Net/samples/dict/src/dict.cpp +++ b/Net/samples/dict/src/dict.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/download/src/download.cpp b/Net/samples/download/src/download.cpp old mode 100644 new mode 100755 index c92dd30e8..53ab9a445 --- a/Net/samples/download/src/download.cpp +++ b/Net/samples/download/src/download.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/httpget/src/httpget.cpp b/Net/samples/httpget/src/httpget.cpp old mode 100644 new mode 100755 index 02b3d96c0..dc4a4d444 --- a/Net/samples/httpget/src/httpget.cpp +++ b/Net/samples/httpget/src/httpget.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2005-2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/samples/ifconfig/src/ifconfig.cpp b/Net/samples/ifconfig/src/ifconfig.cpp old mode 100644 new mode 100755 index 7fd547431..5f850ddb7 --- a/Net/samples/ifconfig/src/ifconfig.cpp +++ b/Net/samples/ifconfig/src/ifconfig.cpp @@ -9,27 +9,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/AbstractHTTPRequestHandler.cpp b/Net/src/AbstractHTTPRequestHandler.cpp old mode 100644 new mode 100755 index fa0199576..378374411 --- a/Net/src/AbstractHTTPRequestHandler.cpp +++ b/Net/src/AbstractHTTPRequestHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/DNS.cpp b/Net/src/DNS.cpp old mode 100644 new mode 100755 index 441d6272e..be3e229f4 --- a/Net/src/DNS.cpp +++ b/Net/src/DNS.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/DatagramSocket.cpp b/Net/src/DatagramSocket.cpp old mode 100644 new mode 100755 index af9b678b7..a2089ab7e --- a/Net/src/DatagramSocket.cpp +++ b/Net/src/DatagramSocket.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/DatagramSocketImpl.cpp b/Net/src/DatagramSocketImpl.cpp old mode 100644 new mode 100755 index a05cb6b7d..1b31b80d3 --- a/Net/src/DatagramSocketImpl.cpp +++ b/Net/src/DatagramSocketImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/DialogSocket.cpp b/Net/src/DialogSocket.cpp old mode 100644 new mode 100755 index 33d9ebf1c..6f60777d3 --- a/Net/src/DialogSocket.cpp +++ b/Net/src/DialogSocket.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/FTPClientSession.cpp b/Net/src/FTPClientSession.cpp old mode 100644 new mode 100755 index ea57a7e9d..5cce5b99e --- a/Net/src/FTPClientSession.cpp +++ b/Net/src/FTPClientSession.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/FTPStreamFactory.cpp b/Net/src/FTPStreamFactory.cpp old mode 100644 new mode 100755 index b20f77bb5..9342b702f --- a/Net/src/FTPStreamFactory.cpp +++ b/Net/src/FTPStreamFactory.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/FilePartSource.cpp b/Net/src/FilePartSource.cpp old mode 100644 new mode 100755 index c8a8cd025..ad9d6a3a7 --- a/Net/src/FilePartSource.cpp +++ b/Net/src/FilePartSource.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTMLForm.cpp b/Net/src/HTMLForm.cpp old mode 100644 new mode 100755 index 00e0a24a1..ca9d83795 --- a/Net/src/HTMLForm.cpp +++ b/Net/src/HTMLForm.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPAuthenticationParams.cpp b/Net/src/HTTPAuthenticationParams.cpp old mode 100644 new mode 100755 index 1bb2f1dc1..f88e5af46 --- a/Net/src/HTTPAuthenticationParams.cpp +++ b/Net/src/HTTPAuthenticationParams.cpp @@ -11,27 +11,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPBasicCredentials.cpp b/Net/src/HTTPBasicCredentials.cpp old mode 100644 new mode 100755 index dc1818b21..4e3e14a6c --- a/Net/src/HTTPBasicCredentials.cpp +++ b/Net/src/HTTPBasicCredentials.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPBufferAllocator.cpp b/Net/src/HTTPBufferAllocator.cpp old mode 100644 new mode 100755 index 6e2682e57..151825bcc --- a/Net/src/HTTPBufferAllocator.cpp +++ b/Net/src/HTTPBufferAllocator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPChunkedStream.cpp b/Net/src/HTTPChunkedStream.cpp old mode 100644 new mode 100755 index 923c729c3..55b334d8c --- a/Net/src/HTTPChunkedStream.cpp +++ b/Net/src/HTTPChunkedStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPClientSession.cpp b/Net/src/HTTPClientSession.cpp old mode 100644 new mode 100755 index b51e27b6b..d9ebe481c --- a/Net/src/HTTPClientSession.cpp +++ b/Net/src/HTTPClientSession.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPCookie.cpp b/Net/src/HTTPCookie.cpp old mode 100644 new mode 100755 index 7fb1f3681..2b70afa30 --- a/Net/src/HTTPCookie.cpp +++ b/Net/src/HTTPCookie.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPCredentials.cpp b/Net/src/HTTPCredentials.cpp old mode 100644 new mode 100755 index ea537ee15..4b576ffc6 --- a/Net/src/HTTPCredentials.cpp +++ b/Net/src/HTTPCredentials.cpp @@ -11,27 +11,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPDigestCredentials.cpp b/Net/src/HTTPDigestCredentials.cpp old mode 100644 new mode 100755 index 10444984f..94971db57 --- a/Net/src/HTTPDigestCredentials.cpp +++ b/Net/src/HTTPDigestCredentials.cpp @@ -11,27 +11,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPFixedLengthStream.cpp b/Net/src/HTTPFixedLengthStream.cpp old mode 100644 new mode 100755 index 31533c3dc..a1a586363 --- a/Net/src/HTTPFixedLengthStream.cpp +++ b/Net/src/HTTPFixedLengthStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPHeaderStream.cpp b/Net/src/HTTPHeaderStream.cpp old mode 100644 new mode 100755 index 4e1ce0e41..45b06bd14 --- a/Net/src/HTTPHeaderStream.cpp +++ b/Net/src/HTTPHeaderStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPIOStream.cpp b/Net/src/HTTPIOStream.cpp old mode 100644 new mode 100755 index 656d32bf2..706e95e2e --- a/Net/src/HTTPIOStream.cpp +++ b/Net/src/HTTPIOStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPMessage.cpp b/Net/src/HTTPMessage.cpp old mode 100644 new mode 100755 index e47931724..1d81ea610 --- a/Net/src/HTTPMessage.cpp +++ b/Net/src/HTTPMessage.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPRequest.cpp b/Net/src/HTTPRequest.cpp old mode 100644 new mode 100755 index e69a06de5..cab75c8c6 --- a/Net/src/HTTPRequest.cpp +++ b/Net/src/HTTPRequest.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPRequestHandler.cpp b/Net/src/HTTPRequestHandler.cpp old mode 100644 new mode 100755 index ec3266a05..ca9e7a0c0 --- a/Net/src/HTTPRequestHandler.cpp +++ b/Net/src/HTTPRequestHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPRequestHandlerFactory.cpp b/Net/src/HTTPRequestHandlerFactory.cpp old mode 100644 new mode 100755 index 75425a632..342ddcc1a --- a/Net/src/HTTPRequestHandlerFactory.cpp +++ b/Net/src/HTTPRequestHandlerFactory.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPResponse.cpp b/Net/src/HTTPResponse.cpp old mode 100644 new mode 100755 index db7f65251..c6d40a658 --- a/Net/src/HTTPResponse.cpp +++ b/Net/src/HTTPResponse.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPServer.cpp b/Net/src/HTTPServer.cpp old mode 100644 new mode 100755 index b6f781725..9c8383819 --- a/Net/src/HTTPServer.cpp +++ b/Net/src/HTTPServer.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPServerConnection.cpp b/Net/src/HTTPServerConnection.cpp old mode 100644 new mode 100755 index 3fd5392df..30d65d292 --- a/Net/src/HTTPServerConnection.cpp +++ b/Net/src/HTTPServerConnection.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPServerConnectionFactory.cpp b/Net/src/HTTPServerConnectionFactory.cpp old mode 100644 new mode 100755 index bcb59cc5c..a4ce539c7 --- a/Net/src/HTTPServerConnectionFactory.cpp +++ b/Net/src/HTTPServerConnectionFactory.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPServerParams.cpp b/Net/src/HTTPServerParams.cpp old mode 100644 new mode 100755 index 2258eb8f4..3db1926bc --- a/Net/src/HTTPServerParams.cpp +++ b/Net/src/HTTPServerParams.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPServerRequest.cpp b/Net/src/HTTPServerRequest.cpp old mode 100644 new mode 100755 index 402f20ec0..f8bf3eb4d --- a/Net/src/HTTPServerRequest.cpp +++ b/Net/src/HTTPServerRequest.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPServerRequestImpl.cpp b/Net/src/HTTPServerRequestImpl.cpp old mode 100644 new mode 100755 index 26c195c1a..3ea9e435d --- a/Net/src/HTTPServerRequestImpl.cpp +++ b/Net/src/HTTPServerRequestImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPServerResponse.cpp b/Net/src/HTTPServerResponse.cpp old mode 100644 new mode 100755 index 44faf1b99..f8f73c4a1 --- a/Net/src/HTTPServerResponse.cpp +++ b/Net/src/HTTPServerResponse.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPServerResponseImpl.cpp b/Net/src/HTTPServerResponseImpl.cpp old mode 100644 new mode 100755 index 8ac536849..0b672bd94 --- a/Net/src/HTTPServerResponseImpl.cpp +++ b/Net/src/HTTPServerResponseImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPServerSession.cpp b/Net/src/HTTPServerSession.cpp old mode 100644 new mode 100755 index f6d1a2d8f..2852fa04e --- a/Net/src/HTTPServerSession.cpp +++ b/Net/src/HTTPServerSession.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPSession.cpp b/Net/src/HTTPSession.cpp old mode 100644 new mode 100755 index cbfc6d267..c38d8d038 --- a/Net/src/HTTPSession.cpp +++ b/Net/src/HTTPSession.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPSessionFactory.cpp b/Net/src/HTTPSessionFactory.cpp old mode 100644 new mode 100755 index 4857d4a77..0e77f4549 --- a/Net/src/HTTPSessionFactory.cpp +++ b/Net/src/HTTPSessionFactory.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPSessionInstantiator.cpp b/Net/src/HTTPSessionInstantiator.cpp old mode 100644 new mode 100755 index 7cfa98742..e7c272281 --- a/Net/src/HTTPSessionInstantiator.cpp +++ b/Net/src/HTTPSessionInstantiator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPStream.cpp b/Net/src/HTTPStream.cpp old mode 100644 new mode 100755 index f23521494..10c79acf0 --- a/Net/src/HTTPStream.cpp +++ b/Net/src/HTTPStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HTTPStreamFactory.cpp b/Net/src/HTTPStreamFactory.cpp old mode 100644 new mode 100755 index 4b4cee522..85918dccc --- a/Net/src/HTTPStreamFactory.cpp +++ b/Net/src/HTTPStreamFactory.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/HostEntry.cpp b/Net/src/HostEntry.cpp old mode 100644 new mode 100755 index 1d17ea142..b5a7ffc11 --- a/Net/src/HostEntry.cpp +++ b/Net/src/HostEntry.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/ICMPClient.cpp b/Net/src/ICMPClient.cpp old mode 100644 new mode 100755 index 19f319cdc..a4b66bf10 --- a/Net/src/ICMPClient.cpp +++ b/Net/src/ICMPClient.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/ICMPEventArgs.cpp b/Net/src/ICMPEventArgs.cpp old mode 100644 new mode 100755 index 9bdf9a9e4..fe051f122 --- a/Net/src/ICMPEventArgs.cpp +++ b/Net/src/ICMPEventArgs.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/ICMPPacket.cpp b/Net/src/ICMPPacket.cpp old mode 100644 new mode 100755 index e0d209bb1..96819493a --- a/Net/src/ICMPPacket.cpp +++ b/Net/src/ICMPPacket.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/ICMPPacketImpl.cpp b/Net/src/ICMPPacketImpl.cpp old mode 100644 new mode 100755 index e37a26bf6..3741e2308 --- a/Net/src/ICMPPacketImpl.cpp +++ b/Net/src/ICMPPacketImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/ICMPSocket.cpp b/Net/src/ICMPSocket.cpp old mode 100644 new mode 100755 index 1b1dee8dc..ece9871c3 --- a/Net/src/ICMPSocket.cpp +++ b/Net/src/ICMPSocket.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/ICMPSocketImpl.cpp b/Net/src/ICMPSocketImpl.cpp old mode 100644 new mode 100755 index 7e92ab86b..2deefbaae --- a/Net/src/ICMPSocketImpl.cpp +++ b/Net/src/ICMPSocketImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/ICMPv4PacketImpl.cpp b/Net/src/ICMPv4PacketImpl.cpp old mode 100644 new mode 100755 index 8bf129817..b000ac443 --- a/Net/src/ICMPv4PacketImpl.cpp +++ b/Net/src/ICMPv4PacketImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/IPAddress.cpp b/Net/src/IPAddress.cpp old mode 100644 new mode 100755 index 329cf09f4..9a856b97f --- a/Net/src/IPAddress.cpp +++ b/Net/src/IPAddress.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/IPAddressImpl.cpp b/Net/src/IPAddressImpl.cpp old mode 100644 new mode 100755 index 7650278b5..d0a293687 --- a/Net/src/IPAddressImpl.cpp +++ b/Net/src/IPAddressImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/MailMessage.cpp b/Net/src/MailMessage.cpp old mode 100644 new mode 100755 index 509225a51..9856f647f --- a/Net/src/MailMessage.cpp +++ b/Net/src/MailMessage.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/MailRecipient.cpp b/Net/src/MailRecipient.cpp old mode 100644 new mode 100755 index 5f953b961..aedf7a771 --- a/Net/src/MailRecipient.cpp +++ b/Net/src/MailRecipient.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/MailStream.cpp b/Net/src/MailStream.cpp old mode 100644 new mode 100755 index 05be03f41..ffbd6954b --- a/Net/src/MailStream.cpp +++ b/Net/src/MailStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/MediaType.cpp b/Net/src/MediaType.cpp old mode 100644 new mode 100755 index cc1a2ee42..1579928aa --- a/Net/src/MediaType.cpp +++ b/Net/src/MediaType.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/MessageHeader.cpp b/Net/src/MessageHeader.cpp old mode 100644 new mode 100755 index 3ed951805..2a41d8e94 --- a/Net/src/MessageHeader.cpp +++ b/Net/src/MessageHeader.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/MulticastSocket.cpp b/Net/src/MulticastSocket.cpp old mode 100644 new mode 100755 index e43d037ec..37c0b79f3 --- a/Net/src/MulticastSocket.cpp +++ b/Net/src/MulticastSocket.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/MultipartReader.cpp b/Net/src/MultipartReader.cpp old mode 100644 new mode 100755 index 67f743192..dcfa3a8f6 --- a/Net/src/MultipartReader.cpp +++ b/Net/src/MultipartReader.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/MultipartWriter.cpp b/Net/src/MultipartWriter.cpp old mode 100644 new mode 100755 index e35a000da..0d863d996 --- a/Net/src/MultipartWriter.cpp +++ b/Net/src/MultipartWriter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/NTPClient.cpp b/Net/src/NTPClient.cpp old mode 100644 new mode 100755 index a1bece389..8aa537ce8 --- a/Net/src/NTPClient.cpp +++ b/Net/src/NTPClient.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/NTPEventArgs.cpp b/Net/src/NTPEventArgs.cpp old mode 100644 new mode 100755 index 37cae3a7a..6fc3d092f --- a/Net/src/NTPEventArgs.cpp +++ b/Net/src/NTPEventArgs.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/NTPPacket.cpp b/Net/src/NTPPacket.cpp old mode 100644 new mode 100755 index 01e05aa4a..4a1d6fa99 --- a/Net/src/NTPPacket.cpp +++ b/Net/src/NTPPacket.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/NameValueCollection.cpp b/Net/src/NameValueCollection.cpp old mode 100644 new mode 100755 index 739b81f51..df4a457cf --- a/Net/src/NameValueCollection.cpp +++ b/Net/src/NameValueCollection.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/Net.cpp b/Net/src/Net.cpp old mode 100644 new mode 100755 index b2c9b3da7..5f93a6e4d --- a/Net/src/Net.cpp +++ b/Net/src/Net.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/NetException.cpp b/Net/src/NetException.cpp old mode 100644 new mode 100755 index fcba36c3e..1c76342e1 --- a/Net/src/NetException.cpp +++ b/Net/src/NetException.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/NetworkInterface.cpp b/Net/src/NetworkInterface.cpp old mode 100644 new mode 100755 index daa4d4809..9eb5acd43 --- a/Net/src/NetworkInterface.cpp +++ b/Net/src/NetworkInterface.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute , -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/NullPartHandler.cpp b/Net/src/NullPartHandler.cpp old mode 100644 new mode 100755 index fcc42c22e..77ad042bf --- a/Net/src/NullPartHandler.cpp +++ b/Net/src/NullPartHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/POP3ClientSession.cpp b/Net/src/POP3ClientSession.cpp old mode 100644 new mode 100755 index 038eea0a3..1fd2f7e33 --- a/Net/src/POP3ClientSession.cpp +++ b/Net/src/POP3ClientSession.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/PartHandler.cpp b/Net/src/PartHandler.cpp old mode 100644 new mode 100755 index 5626f8170..293915c18 --- a/Net/src/PartHandler.cpp +++ b/Net/src/PartHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/PartSource.cpp b/Net/src/PartSource.cpp old mode 100644 new mode 100755 index 1bb1c1be2..6dacbfc6d --- a/Net/src/PartSource.cpp +++ b/Net/src/PartSource.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/PartStore.cpp b/Net/src/PartStore.cpp old mode 100644 new mode 100755 index f144ec45d..3bf1201cf --- a/Net/src/PartStore.cpp +++ b/Net/src/PartStore.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/QuotedPrintableDecoder.cpp b/Net/src/QuotedPrintableDecoder.cpp old mode 100644 new mode 100755 index 170b6a294..331d8b148 --- a/Net/src/QuotedPrintableDecoder.cpp +++ b/Net/src/QuotedPrintableDecoder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/QuotedPrintableEncoder.cpp b/Net/src/QuotedPrintableEncoder.cpp old mode 100644 new mode 100755 index 92b4363e2..c51f4a48e --- a/Net/src/QuotedPrintableEncoder.cpp +++ b/Net/src/QuotedPrintableEncoder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/RawSocket.cpp b/Net/src/RawSocket.cpp old mode 100644 new mode 100755 index 79091821a..3506a814d --- a/Net/src/RawSocket.cpp +++ b/Net/src/RawSocket.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/RawSocketImpl.cpp b/Net/src/RawSocketImpl.cpp old mode 100644 new mode 100755 index c5f4c513f..e06942f69 --- a/Net/src/RawSocketImpl.cpp +++ b/Net/src/RawSocketImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/RemoteSyslogChannel.cpp b/Net/src/RemoteSyslogChannel.cpp old mode 100644 new mode 100755 index 37e32153b..cfabe7349 --- a/Net/src/RemoteSyslogChannel.cpp +++ b/Net/src/RemoteSyslogChannel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/RemoteSyslogListener.cpp b/Net/src/RemoteSyslogListener.cpp old mode 100644 new mode 100755 index 4f3c37756..633b1e1c8 --- a/Net/src/RemoteSyslogListener.cpp +++ b/Net/src/RemoteSyslogListener.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/SMTPChannel.cpp b/Net/src/SMTPChannel.cpp old mode 100644 new mode 100755 index 96df210df..ee4d6517a --- a/Net/src/SMTPChannel.cpp +++ b/Net/src/SMTPChannel.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/SMTPClientSession.cpp b/Net/src/SMTPClientSession.cpp old mode 100644 new mode 100755 index 5c22420f4..16febfde2 --- a/Net/src/SMTPClientSession.cpp +++ b/Net/src/SMTPClientSession.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/ServerSocket.cpp b/Net/src/ServerSocket.cpp old mode 100644 new mode 100755 index b513ff528..99e52b95f --- a/Net/src/ServerSocket.cpp +++ b/Net/src/ServerSocket.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/ServerSocketImpl.cpp b/Net/src/ServerSocketImpl.cpp old mode 100644 new mode 100755 index 6cab05be2..10a968753 --- a/Net/src/ServerSocketImpl.cpp +++ b/Net/src/ServerSocketImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/Socket.cpp b/Net/src/Socket.cpp old mode 100644 new mode 100755 index eba2e158e..728890465 --- a/Net/src/Socket.cpp +++ b/Net/src/Socket.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/SocketAddress.cpp b/Net/src/SocketAddress.cpp old mode 100644 new mode 100755 index 8dc254ed5..ac3da51f0 --- a/Net/src/SocketAddress.cpp +++ b/Net/src/SocketAddress.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/SocketAddressImpl.cpp b/Net/src/SocketAddressImpl.cpp old mode 100644 new mode 100755 index c7ed86248..f2de61b46 --- a/Net/src/SocketAddressImpl.cpp +++ b/Net/src/SocketAddressImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/SocketImpl.cpp b/Net/src/SocketImpl.cpp old mode 100644 new mode 100755 index 69620a6ce..ac49a2c35 --- a/Net/src/SocketImpl.cpp +++ b/Net/src/SocketImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/SocketNotification.cpp b/Net/src/SocketNotification.cpp old mode 100644 new mode 100755 index 2144d7e6c..d29a2203c --- a/Net/src/SocketNotification.cpp +++ b/Net/src/SocketNotification.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/SocketNotifier.cpp b/Net/src/SocketNotifier.cpp old mode 100644 new mode 100755 index 75a915729..91a04f48e --- a/Net/src/SocketNotifier.cpp +++ b/Net/src/SocketNotifier.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/SocketReactor.cpp b/Net/src/SocketReactor.cpp old mode 100644 new mode 100755 index c23218d91..19aeb88d2 --- a/Net/src/SocketReactor.cpp +++ b/Net/src/SocketReactor.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/SocketStream.cpp b/Net/src/SocketStream.cpp old mode 100644 new mode 100755 index 7b381a2a2..1649253b5 --- a/Net/src/SocketStream.cpp +++ b/Net/src/SocketStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/StreamSocket.cpp b/Net/src/StreamSocket.cpp old mode 100644 new mode 100755 index 374ea6399..3e6833faa --- a/Net/src/StreamSocket.cpp +++ b/Net/src/StreamSocket.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/StreamSocketImpl.cpp b/Net/src/StreamSocketImpl.cpp old mode 100644 new mode 100755 index 64f8d3000..94e683cb3 --- a/Net/src/StreamSocketImpl.cpp +++ b/Net/src/StreamSocketImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/StringPartSource.cpp b/Net/src/StringPartSource.cpp old mode 100644 new mode 100755 index eb391ab81..694a88d08 --- a/Net/src/StringPartSource.cpp +++ b/Net/src/StringPartSource.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/TCPServer.cpp b/Net/src/TCPServer.cpp old mode 100644 new mode 100755 index b77632c3c..431bdb9bb --- a/Net/src/TCPServer.cpp +++ b/Net/src/TCPServer.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/TCPServerConnection.cpp b/Net/src/TCPServerConnection.cpp old mode 100644 new mode 100755 index 55cd5efbd..08dc1b0d9 --- a/Net/src/TCPServerConnection.cpp +++ b/Net/src/TCPServerConnection.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/TCPServerConnectionFactory.cpp b/Net/src/TCPServerConnectionFactory.cpp old mode 100644 new mode 100755 index e73bfcabe..e8495625a --- a/Net/src/TCPServerConnectionFactory.cpp +++ b/Net/src/TCPServerConnectionFactory.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/TCPServerDispatcher.cpp b/Net/src/TCPServerDispatcher.cpp old mode 100644 new mode 100755 index 54f369aa4..a5f2de3c6 --- a/Net/src/TCPServerDispatcher.cpp +++ b/Net/src/TCPServerDispatcher.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/TCPServerParams.cpp b/Net/src/TCPServerParams.cpp old mode 100644 new mode 100755 index 0144c5539..6f84cd282 --- a/Net/src/TCPServerParams.cpp +++ b/Net/src/TCPServerParams.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2005-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/WebSocket.cpp b/Net/src/WebSocket.cpp old mode 100644 new mode 100755 index 274d4697b..8e4a3ddfc --- a/Net/src/WebSocket.cpp +++ b/Net/src/WebSocket.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/src/WebSocketImpl.cpp b/Net/src/WebSocketImpl.cpp old mode 100644 new mode 100755 index 6e64ae00f..b2dbc64ab --- a/Net/src/WebSocketImpl.cpp +++ b/Net/src/WebSocketImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/DNSTest.cpp b/Net/testsuite/src/DNSTest.cpp old mode 100644 new mode 100755 index 6bb39d92f..c230e7883 --- a/Net/testsuite/src/DNSTest.cpp +++ b/Net/testsuite/src/DNSTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/DNSTest.h b/Net/testsuite/src/DNSTest.h old mode 100644 new mode 100755 index 7e81ccc87..e940585e3 --- a/Net/testsuite/src/DNSTest.h +++ b/Net/testsuite/src/DNSTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/DatagramSocketTest.cpp b/Net/testsuite/src/DatagramSocketTest.cpp old mode 100644 new mode 100755 index e39a322eb..7d676bf0a --- a/Net/testsuite/src/DatagramSocketTest.cpp +++ b/Net/testsuite/src/DatagramSocketTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/DatagramSocketTest.h b/Net/testsuite/src/DatagramSocketTest.h old mode 100644 new mode 100755 index b883034fa..a702b869b --- a/Net/testsuite/src/DatagramSocketTest.h +++ b/Net/testsuite/src/DatagramSocketTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/DialogServer.cpp b/Net/testsuite/src/DialogServer.cpp old mode 100644 new mode 100755 index e9100ab41..985dbceb5 --- a/Net/testsuite/src/DialogServer.cpp +++ b/Net/testsuite/src/DialogServer.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/DialogServer.h b/Net/testsuite/src/DialogServer.h old mode 100644 new mode 100755 index 43028bbb2..36c519f85 --- a/Net/testsuite/src/DialogServer.h +++ b/Net/testsuite/src/DialogServer.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/DialogSocketTest.cpp b/Net/testsuite/src/DialogSocketTest.cpp old mode 100644 new mode 100755 index 6f60783d4..156b04dcc --- a/Net/testsuite/src/DialogSocketTest.cpp +++ b/Net/testsuite/src/DialogSocketTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/DialogSocketTest.h b/Net/testsuite/src/DialogSocketTest.h old mode 100644 new mode 100755 index 64f2e91cd..93ac0171c --- a/Net/testsuite/src/DialogSocketTest.h +++ b/Net/testsuite/src/DialogSocketTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/Driver.cpp b/Net/testsuite/src/Driver.cpp old mode 100644 new mode 100755 index 36d3b7918..e459d3986 --- a/Net/testsuite/src/Driver.cpp +++ b/Net/testsuite/src/Driver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/EchoServer.cpp b/Net/testsuite/src/EchoServer.cpp old mode 100644 new mode 100755 index ed28e66ae..712acd8ff --- a/Net/testsuite/src/EchoServer.cpp +++ b/Net/testsuite/src/EchoServer.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/EchoServer.h b/Net/testsuite/src/EchoServer.h old mode 100644 new mode 100755 index b527f8afb..ccab60ff1 --- a/Net/testsuite/src/EchoServer.h +++ b/Net/testsuite/src/EchoServer.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/FTPClientSessionTest.cpp b/Net/testsuite/src/FTPClientSessionTest.cpp old mode 100644 new mode 100755 index d49bbc5d0..a73c597e0 --- a/Net/testsuite/src/FTPClientSessionTest.cpp +++ b/Net/testsuite/src/FTPClientSessionTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/FTPClientSessionTest.h b/Net/testsuite/src/FTPClientSessionTest.h old mode 100644 new mode 100755 index aa6f62aaa..6e6fa238e --- a/Net/testsuite/src/FTPClientSessionTest.h +++ b/Net/testsuite/src/FTPClientSessionTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/FTPClientTestSuite.cpp b/Net/testsuite/src/FTPClientTestSuite.cpp old mode 100644 new mode 100755 index 198e2aac1..c581c1b6e --- a/Net/testsuite/src/FTPClientTestSuite.cpp +++ b/Net/testsuite/src/FTPClientTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/FTPClientTestSuite.h b/Net/testsuite/src/FTPClientTestSuite.h old mode 100644 new mode 100755 index 262a91c3f..4b573d02b --- a/Net/testsuite/src/FTPClientTestSuite.h +++ b/Net/testsuite/src/FTPClientTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/FTPStreamFactoryTest.cpp b/Net/testsuite/src/FTPStreamFactoryTest.cpp old mode 100644 new mode 100755 index 7a2370a23..2b0bec91c --- a/Net/testsuite/src/FTPStreamFactoryTest.cpp +++ b/Net/testsuite/src/FTPStreamFactoryTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/FTPStreamFactoryTest.h b/Net/testsuite/src/FTPStreamFactoryTest.h old mode 100644 new mode 100755 index 6edcacf8c..07e067bec --- a/Net/testsuite/src/FTPStreamFactoryTest.h +++ b/Net/testsuite/src/FTPStreamFactoryTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTMLFormTest.cpp b/Net/testsuite/src/HTMLFormTest.cpp old mode 100644 new mode 100755 index 0ba60ad31..587f13941 --- a/Net/testsuite/src/HTMLFormTest.cpp +++ b/Net/testsuite/src/HTMLFormTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTMLFormTest.h b/Net/testsuite/src/HTMLFormTest.h old mode 100644 new mode 100755 index bf53080b0..2da5923fa --- a/Net/testsuite/src/HTMLFormTest.h +++ b/Net/testsuite/src/HTMLFormTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTMLTestSuite.cpp b/Net/testsuite/src/HTMLTestSuite.cpp old mode 100644 new mode 100755 index 2b8af138d..137440ed5 --- a/Net/testsuite/src/HTMLTestSuite.cpp +++ b/Net/testsuite/src/HTMLTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTMLTestSuite.h b/Net/testsuite/src/HTMLTestSuite.h old mode 100644 new mode 100755 index 21843cff4..2e87a28fa --- a/Net/testsuite/src/HTMLTestSuite.h +++ b/Net/testsuite/src/HTMLTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPClientSessionTest.cpp b/Net/testsuite/src/HTTPClientSessionTest.cpp old mode 100644 new mode 100755 index ef848e761..b1001769a --- a/Net/testsuite/src/HTTPClientSessionTest.cpp +++ b/Net/testsuite/src/HTTPClientSessionTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPClientSessionTest.h b/Net/testsuite/src/HTTPClientSessionTest.h old mode 100644 new mode 100755 index e5bea88ae..ba098729b --- a/Net/testsuite/src/HTTPClientSessionTest.h +++ b/Net/testsuite/src/HTTPClientSessionTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPClientTestSuite.cpp b/Net/testsuite/src/HTTPClientTestSuite.cpp old mode 100644 new mode 100755 index a8ba4ab76..b098ea60f --- a/Net/testsuite/src/HTTPClientTestSuite.cpp +++ b/Net/testsuite/src/HTTPClientTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPClientTestSuite.h b/Net/testsuite/src/HTTPClientTestSuite.h old mode 100644 new mode 100755 index 027c9cebb..12eef6add --- a/Net/testsuite/src/HTTPClientTestSuite.h +++ b/Net/testsuite/src/HTTPClientTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPCookieTest.cpp b/Net/testsuite/src/HTTPCookieTest.cpp old mode 100644 new mode 100755 index cd1058671..65aebfdf3 --- a/Net/testsuite/src/HTTPCookieTest.cpp +++ b/Net/testsuite/src/HTTPCookieTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPCookieTest.h b/Net/testsuite/src/HTTPCookieTest.h old mode 100644 new mode 100755 index 2e00b3098..a5900a46b --- a/Net/testsuite/src/HTTPCookieTest.h +++ b/Net/testsuite/src/HTTPCookieTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPCredentialsTest.cpp b/Net/testsuite/src/HTTPCredentialsTest.cpp old mode 100644 new mode 100755 index 44bcc4b06..5186b9467 --- a/Net/testsuite/src/HTTPCredentialsTest.cpp +++ b/Net/testsuite/src/HTTPCredentialsTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPCredentialsTest.h b/Net/testsuite/src/HTTPCredentialsTest.h old mode 100644 new mode 100755 index fd116e5ec..94f85099f --- a/Net/testsuite/src/HTTPCredentialsTest.h +++ b/Net/testsuite/src/HTTPCredentialsTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPRequestTest.cpp b/Net/testsuite/src/HTTPRequestTest.cpp old mode 100644 new mode 100755 index b1d5a64fc..1180d529a --- a/Net/testsuite/src/HTTPRequestTest.cpp +++ b/Net/testsuite/src/HTTPRequestTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPRequestTest.h b/Net/testsuite/src/HTTPRequestTest.h old mode 100644 new mode 100755 index 3578f0cdb..cc389e659 --- a/Net/testsuite/src/HTTPRequestTest.h +++ b/Net/testsuite/src/HTTPRequestTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPResponseTest.cpp b/Net/testsuite/src/HTTPResponseTest.cpp old mode 100644 new mode 100755 index 79ad20f60..83e84bf2c --- a/Net/testsuite/src/HTTPResponseTest.cpp +++ b/Net/testsuite/src/HTTPResponseTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPResponseTest.h b/Net/testsuite/src/HTTPResponseTest.h old mode 100644 new mode 100755 index 3b67bdfd3..9cd342041 --- a/Net/testsuite/src/HTTPResponseTest.h +++ b/Net/testsuite/src/HTTPResponseTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPServerTest.cpp b/Net/testsuite/src/HTTPServerTest.cpp old mode 100644 new mode 100755 index d1091df82..0479cc1b1 --- a/Net/testsuite/src/HTTPServerTest.cpp +++ b/Net/testsuite/src/HTTPServerTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPServerTest.h b/Net/testsuite/src/HTTPServerTest.h old mode 100644 new mode 100755 index cd29471a9..033d10f89 --- a/Net/testsuite/src/HTTPServerTest.h +++ b/Net/testsuite/src/HTTPServerTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPServerTestSuite.cpp b/Net/testsuite/src/HTTPServerTestSuite.cpp old mode 100644 new mode 100755 index 7db90d751..a20712906 --- a/Net/testsuite/src/HTTPServerTestSuite.cpp +++ b/Net/testsuite/src/HTTPServerTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPServerTestSuite.h b/Net/testsuite/src/HTTPServerTestSuite.h old mode 100644 new mode 100755 index 92f4378ba..c5fb36306 --- a/Net/testsuite/src/HTTPServerTestSuite.h +++ b/Net/testsuite/src/HTTPServerTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPStreamFactoryTest.cpp b/Net/testsuite/src/HTTPStreamFactoryTest.cpp old mode 100644 new mode 100755 index 681d84cb2..45e7d9b2f --- a/Net/testsuite/src/HTTPStreamFactoryTest.cpp +++ b/Net/testsuite/src/HTTPStreamFactoryTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPStreamFactoryTest.h b/Net/testsuite/src/HTTPStreamFactoryTest.h old mode 100644 new mode 100755 index e8a8a8e94..a05b4479c --- a/Net/testsuite/src/HTTPStreamFactoryTest.h +++ b/Net/testsuite/src/HTTPStreamFactoryTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPTestServer.cpp b/Net/testsuite/src/HTTPTestServer.cpp old mode 100644 new mode 100755 index f2635ffd8..c7f570727 --- a/Net/testsuite/src/HTTPTestServer.cpp +++ b/Net/testsuite/src/HTTPTestServer.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPTestServer.h b/Net/testsuite/src/HTTPTestServer.h old mode 100644 new mode 100755 index 582d3ca6d..c490f7e84 --- a/Net/testsuite/src/HTTPTestServer.h +++ b/Net/testsuite/src/HTTPTestServer.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPTestSuite.cpp b/Net/testsuite/src/HTTPTestSuite.cpp old mode 100644 new mode 100755 index b50657747..cc5d185e4 --- a/Net/testsuite/src/HTTPTestSuite.cpp +++ b/Net/testsuite/src/HTTPTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/HTTPTestSuite.h b/Net/testsuite/src/HTTPTestSuite.h old mode 100644 new mode 100755 index 1f9c15fa6..b2151615d --- a/Net/testsuite/src/HTTPTestSuite.h +++ b/Net/testsuite/src/HTTPTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/ICMPClientTest.cpp b/Net/testsuite/src/ICMPClientTest.cpp old mode 100644 new mode 100755 index 18ae39bea..c20766703 --- a/Net/testsuite/src/ICMPClientTest.cpp +++ b/Net/testsuite/src/ICMPClientTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/ICMPClientTest.h b/Net/testsuite/src/ICMPClientTest.h old mode 100644 new mode 100755 index 80eaac172..32c84cb15 --- a/Net/testsuite/src/ICMPClientTest.h +++ b/Net/testsuite/src/ICMPClientTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/ICMPClientTestSuite.cpp b/Net/testsuite/src/ICMPClientTestSuite.cpp old mode 100644 new mode 100755 index 56366c5d8..220e842ce --- a/Net/testsuite/src/ICMPClientTestSuite.cpp +++ b/Net/testsuite/src/ICMPClientTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/ICMPClientTestSuite.h b/Net/testsuite/src/ICMPClientTestSuite.h old mode 100644 new mode 100755 index e17de89b1..2d3e80501 --- a/Net/testsuite/src/ICMPClientTestSuite.h +++ b/Net/testsuite/src/ICMPClientTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/ICMPSocketTest.cpp b/Net/testsuite/src/ICMPSocketTest.cpp old mode 100644 new mode 100755 index 3a3d209ab..7611a1cd6 --- a/Net/testsuite/src/ICMPSocketTest.cpp +++ b/Net/testsuite/src/ICMPSocketTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/ICMPSocketTest.h b/Net/testsuite/src/ICMPSocketTest.h old mode 100644 new mode 100755 index ef64892a7..2508924fb --- a/Net/testsuite/src/ICMPSocketTest.h +++ b/Net/testsuite/src/ICMPSocketTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/IPAddressTest.cpp b/Net/testsuite/src/IPAddressTest.cpp old mode 100644 new mode 100755 index c05496bff..984ffdfb0 --- a/Net/testsuite/src/IPAddressTest.cpp +++ b/Net/testsuite/src/IPAddressTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/IPAddressTest.h b/Net/testsuite/src/IPAddressTest.h old mode 100644 new mode 100755 index f8fd675ca..27837c354 --- a/Net/testsuite/src/IPAddressTest.h +++ b/Net/testsuite/src/IPAddressTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MailMessageTest.cpp b/Net/testsuite/src/MailMessageTest.cpp old mode 100644 new mode 100755 index 54e6b33e7..4fb326cb8 --- a/Net/testsuite/src/MailMessageTest.cpp +++ b/Net/testsuite/src/MailMessageTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MailMessageTest.h b/Net/testsuite/src/MailMessageTest.h old mode 100644 new mode 100755 index 7096ace12..fa63ee790 --- a/Net/testsuite/src/MailMessageTest.h +++ b/Net/testsuite/src/MailMessageTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MailStreamTest.cpp b/Net/testsuite/src/MailStreamTest.cpp old mode 100644 new mode 100755 index c3f378c5e..6ab95602a --- a/Net/testsuite/src/MailStreamTest.cpp +++ b/Net/testsuite/src/MailStreamTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MailStreamTest.h b/Net/testsuite/src/MailStreamTest.h old mode 100644 new mode 100755 index 763a08b79..57bda1998 --- a/Net/testsuite/src/MailStreamTest.h +++ b/Net/testsuite/src/MailStreamTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MailTestSuite.cpp b/Net/testsuite/src/MailTestSuite.cpp old mode 100644 new mode 100755 index 0233897d8..55864034a --- a/Net/testsuite/src/MailTestSuite.cpp +++ b/Net/testsuite/src/MailTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MailTestSuite.h b/Net/testsuite/src/MailTestSuite.h old mode 100644 new mode 100755 index ebde69daa..44a2a3037 --- a/Net/testsuite/src/MailTestSuite.h +++ b/Net/testsuite/src/MailTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MediaTypeTest.cpp b/Net/testsuite/src/MediaTypeTest.cpp old mode 100644 new mode 100755 index 9e7ae9c51..50e1158c1 --- a/Net/testsuite/src/MediaTypeTest.cpp +++ b/Net/testsuite/src/MediaTypeTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MediaTypeTest.h b/Net/testsuite/src/MediaTypeTest.h old mode 100644 new mode 100755 index 5bb261c78..7a8030126 --- a/Net/testsuite/src/MediaTypeTest.h +++ b/Net/testsuite/src/MediaTypeTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MessageHeaderTest.cpp b/Net/testsuite/src/MessageHeaderTest.cpp old mode 100644 new mode 100755 index 0ec58915d..793119f02 --- a/Net/testsuite/src/MessageHeaderTest.cpp +++ b/Net/testsuite/src/MessageHeaderTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MessageHeaderTest.h b/Net/testsuite/src/MessageHeaderTest.h old mode 100644 new mode 100755 index b320b570a..156db25ed --- a/Net/testsuite/src/MessageHeaderTest.h +++ b/Net/testsuite/src/MessageHeaderTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MessagesTestSuite.cpp b/Net/testsuite/src/MessagesTestSuite.cpp old mode 100644 new mode 100755 index ccaebfb0a..2edff4cbd --- a/Net/testsuite/src/MessagesTestSuite.cpp +++ b/Net/testsuite/src/MessagesTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MessagesTestSuite.h b/Net/testsuite/src/MessagesTestSuite.h old mode 100644 new mode 100755 index 30433e601..4da02b45d --- a/Net/testsuite/src/MessagesTestSuite.h +++ b/Net/testsuite/src/MessagesTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MulticastEchoServer.cpp b/Net/testsuite/src/MulticastEchoServer.cpp old mode 100644 new mode 100755 index af1857c29..479661830 --- a/Net/testsuite/src/MulticastEchoServer.cpp +++ b/Net/testsuite/src/MulticastEchoServer.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MulticastEchoServer.h b/Net/testsuite/src/MulticastEchoServer.h old mode 100644 new mode 100755 index d8df3f998..40890f9c0 --- a/Net/testsuite/src/MulticastEchoServer.h +++ b/Net/testsuite/src/MulticastEchoServer.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MulticastSocketTest.cpp b/Net/testsuite/src/MulticastSocketTest.cpp old mode 100644 new mode 100755 index c1706a854..7191e2071 --- a/Net/testsuite/src/MulticastSocketTest.cpp +++ b/Net/testsuite/src/MulticastSocketTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MulticastSocketTest.h b/Net/testsuite/src/MulticastSocketTest.h old mode 100644 new mode 100755 index e122a38c7..dcdea0cab --- a/Net/testsuite/src/MulticastSocketTest.h +++ b/Net/testsuite/src/MulticastSocketTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MultipartReaderTest.cpp b/Net/testsuite/src/MultipartReaderTest.cpp old mode 100644 new mode 100755 index 3ae5b76cf..a409e18e6 --- a/Net/testsuite/src/MultipartReaderTest.cpp +++ b/Net/testsuite/src/MultipartReaderTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MultipartReaderTest.h b/Net/testsuite/src/MultipartReaderTest.h old mode 100644 new mode 100755 index 6e2027110..3985423cd --- a/Net/testsuite/src/MultipartReaderTest.h +++ b/Net/testsuite/src/MultipartReaderTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MultipartWriterTest.cpp b/Net/testsuite/src/MultipartWriterTest.cpp old mode 100644 new mode 100755 index 2cc4db8d8..80beeb59c --- a/Net/testsuite/src/MultipartWriterTest.cpp +++ b/Net/testsuite/src/MultipartWriterTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/MultipartWriterTest.h b/Net/testsuite/src/MultipartWriterTest.h old mode 100644 new mode 100755 index 233efe2b9..0a4b55a57 --- a/Net/testsuite/src/MultipartWriterTest.h +++ b/Net/testsuite/src/MultipartWriterTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/NTPClientTest.cpp b/Net/testsuite/src/NTPClientTest.cpp old mode 100644 new mode 100755 index 6a8a352d9..a6d65336c --- a/Net/testsuite/src/NTPClientTest.cpp +++ b/Net/testsuite/src/NTPClientTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/NTPClientTest.h b/Net/testsuite/src/NTPClientTest.h old mode 100644 new mode 100755 index 7cecfeba5..3c71d8d16 --- a/Net/testsuite/src/NTPClientTest.h +++ b/Net/testsuite/src/NTPClientTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/NTPClientTestSuite.cpp b/Net/testsuite/src/NTPClientTestSuite.cpp old mode 100644 new mode 100755 index 4928fc164..5239a88e0 --- a/Net/testsuite/src/NTPClientTestSuite.cpp +++ b/Net/testsuite/src/NTPClientTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/NTPClientTestSuite.h b/Net/testsuite/src/NTPClientTestSuite.h old mode 100644 new mode 100755 index 1090d5275..dcafdb3e4 --- a/Net/testsuite/src/NTPClientTestSuite.h +++ b/Net/testsuite/src/NTPClientTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/NameValueCollectionTest.cpp b/Net/testsuite/src/NameValueCollectionTest.cpp old mode 100644 new mode 100755 index 7eb1d7033..7bf30e328 --- a/Net/testsuite/src/NameValueCollectionTest.cpp +++ b/Net/testsuite/src/NameValueCollectionTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/NameValueCollectionTest.h b/Net/testsuite/src/NameValueCollectionTest.h old mode 100644 new mode 100755 index 615d539bc..947f932c3 --- a/Net/testsuite/src/NameValueCollectionTest.h +++ b/Net/testsuite/src/NameValueCollectionTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/NetCoreTestSuite.cpp b/Net/testsuite/src/NetCoreTestSuite.cpp old mode 100644 new mode 100755 index 0e5b2eaa9..933ea9318 --- a/Net/testsuite/src/NetCoreTestSuite.cpp +++ b/Net/testsuite/src/NetCoreTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/NetCoreTestSuite.h b/Net/testsuite/src/NetCoreTestSuite.h old mode 100644 new mode 100755 index 5c65266a4..f7f6c03da --- a/Net/testsuite/src/NetCoreTestSuite.h +++ b/Net/testsuite/src/NetCoreTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/NetTestSuite.cpp b/Net/testsuite/src/NetTestSuite.cpp old mode 100644 new mode 100755 index 3220e8c2f..f94e249cb --- a/Net/testsuite/src/NetTestSuite.cpp +++ b/Net/testsuite/src/NetTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/NetTestSuite.h b/Net/testsuite/src/NetTestSuite.h old mode 100644 new mode 100755 index f2d82b8e4..9b04efad8 --- a/Net/testsuite/src/NetTestSuite.h +++ b/Net/testsuite/src/NetTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/NetworkInterfaceTest.cpp b/Net/testsuite/src/NetworkInterfaceTest.cpp old mode 100644 new mode 100755 index 3f99a54dc..863ae0c55 --- a/Net/testsuite/src/NetworkInterfaceTest.cpp +++ b/Net/testsuite/src/NetworkInterfaceTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/NetworkInterfaceTest.h b/Net/testsuite/src/NetworkInterfaceTest.h old mode 100644 new mode 100755 index a2988108f..a71d8f873 --- a/Net/testsuite/src/NetworkInterfaceTest.h +++ b/Net/testsuite/src/NetworkInterfaceTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/POP3ClientSessionTest.cpp b/Net/testsuite/src/POP3ClientSessionTest.cpp old mode 100644 new mode 100755 index 80b35d3fb..61dd7112b --- a/Net/testsuite/src/POP3ClientSessionTest.cpp +++ b/Net/testsuite/src/POP3ClientSessionTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/POP3ClientSessionTest.h b/Net/testsuite/src/POP3ClientSessionTest.h old mode 100644 new mode 100755 index 77437e2ca..8303f6efa --- a/Net/testsuite/src/POP3ClientSessionTest.h +++ b/Net/testsuite/src/POP3ClientSessionTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/QuotedPrintableTest.cpp b/Net/testsuite/src/QuotedPrintableTest.cpp old mode 100644 new mode 100755 index 184d8aa14..78c6e1b11 --- a/Net/testsuite/src/QuotedPrintableTest.cpp +++ b/Net/testsuite/src/QuotedPrintableTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/QuotedPrintableTest.h b/Net/testsuite/src/QuotedPrintableTest.h old mode 100644 new mode 100755 index db9d162d9..57f992d06 --- a/Net/testsuite/src/QuotedPrintableTest.h +++ b/Net/testsuite/src/QuotedPrintableTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/RawSocketTest.cpp b/Net/testsuite/src/RawSocketTest.cpp old mode 100644 new mode 100755 index 1e107155c..2dc9c1d17 --- a/Net/testsuite/src/RawSocketTest.cpp +++ b/Net/testsuite/src/RawSocketTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/RawSocketTest.h b/Net/testsuite/src/RawSocketTest.h old mode 100644 new mode 100755 index b18385ffd..a13bcec56 --- a/Net/testsuite/src/RawSocketTest.h +++ b/Net/testsuite/src/RawSocketTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/ReactorTestSuite.cpp b/Net/testsuite/src/ReactorTestSuite.cpp old mode 100644 new mode 100755 index 9fd3d448e..f9fe0d58e --- a/Net/testsuite/src/ReactorTestSuite.cpp +++ b/Net/testsuite/src/ReactorTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/ReactorTestSuite.h b/Net/testsuite/src/ReactorTestSuite.h old mode 100644 new mode 100755 index d9d339ec1..064a6fc9a --- a/Net/testsuite/src/ReactorTestSuite.h +++ b/Net/testsuite/src/ReactorTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/SMTPClientSessionTest.cpp b/Net/testsuite/src/SMTPClientSessionTest.cpp old mode 100644 new mode 100755 index beca9728d..bd785088e --- a/Net/testsuite/src/SMTPClientSessionTest.cpp +++ b/Net/testsuite/src/SMTPClientSessionTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/SMTPClientSessionTest.h b/Net/testsuite/src/SMTPClientSessionTest.h old mode 100644 new mode 100755 index 0d13f30bd..6d8961c59 --- a/Net/testsuite/src/SMTPClientSessionTest.h +++ b/Net/testsuite/src/SMTPClientSessionTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/SocketAddressTest.cpp b/Net/testsuite/src/SocketAddressTest.cpp old mode 100644 new mode 100755 index cf2ba83ae..7e1853fe4 --- a/Net/testsuite/src/SocketAddressTest.cpp +++ b/Net/testsuite/src/SocketAddressTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/SocketAddressTest.h b/Net/testsuite/src/SocketAddressTest.h old mode 100644 new mode 100755 index ab7f56415..75cbe67b7 --- a/Net/testsuite/src/SocketAddressTest.h +++ b/Net/testsuite/src/SocketAddressTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/SocketReactorTest.cpp b/Net/testsuite/src/SocketReactorTest.cpp old mode 100644 new mode 100755 index 39d258b7f..f1f9a8598 --- a/Net/testsuite/src/SocketReactorTest.cpp +++ b/Net/testsuite/src/SocketReactorTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/SocketReactorTest.h b/Net/testsuite/src/SocketReactorTest.h old mode 100644 new mode 100755 index 8348cec09..c47ffa4d9 --- a/Net/testsuite/src/SocketReactorTest.h +++ b/Net/testsuite/src/SocketReactorTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/SocketStreamTest.cpp b/Net/testsuite/src/SocketStreamTest.cpp old mode 100644 new mode 100755 index e21270095..e016e7f1f --- a/Net/testsuite/src/SocketStreamTest.cpp +++ b/Net/testsuite/src/SocketStreamTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/SocketStreamTest.h b/Net/testsuite/src/SocketStreamTest.h old mode 100644 new mode 100755 index c4160f667..00f24363a --- a/Net/testsuite/src/SocketStreamTest.h +++ b/Net/testsuite/src/SocketStreamTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/SocketTest.cpp b/Net/testsuite/src/SocketTest.cpp old mode 100644 new mode 100755 index b2cc3d04c..6f6780ea8 --- a/Net/testsuite/src/SocketTest.cpp +++ b/Net/testsuite/src/SocketTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/SocketTest.h b/Net/testsuite/src/SocketTest.h old mode 100644 new mode 100755 index 3057dbf51..5a8033ffa --- a/Net/testsuite/src/SocketTest.h +++ b/Net/testsuite/src/SocketTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/SocketsTestSuite.cpp b/Net/testsuite/src/SocketsTestSuite.cpp old mode 100644 new mode 100755 index e27138362..8b8f0e856 --- a/Net/testsuite/src/SocketsTestSuite.cpp +++ b/Net/testsuite/src/SocketsTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/SocketsTestSuite.h b/Net/testsuite/src/SocketsTestSuite.h old mode 100644 new mode 100755 index 2ec41bfd5..29efbe228 --- a/Net/testsuite/src/SocketsTestSuite.h +++ b/Net/testsuite/src/SocketsTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/SyslogTest.cpp b/Net/testsuite/src/SyslogTest.cpp old mode 100644 new mode 100755 index a6190e967..1d3954946 --- a/Net/testsuite/src/SyslogTest.cpp +++ b/Net/testsuite/src/SyslogTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/SyslogTest.h b/Net/testsuite/src/SyslogTest.h old mode 100644 new mode 100755 index 12d31b8d8..cb4c9ea93 --- a/Net/testsuite/src/SyslogTest.h +++ b/Net/testsuite/src/SyslogTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/TCPServerTest.cpp b/Net/testsuite/src/TCPServerTest.cpp old mode 100644 new mode 100755 index 9b5b4f7e9..ebd66fbe0 --- a/Net/testsuite/src/TCPServerTest.cpp +++ b/Net/testsuite/src/TCPServerTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/TCPServerTest.h b/Net/testsuite/src/TCPServerTest.h old mode 100644 new mode 100755 index 5904a5945..5ef556c46 --- a/Net/testsuite/src/TCPServerTest.h +++ b/Net/testsuite/src/TCPServerTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/TCPServerTestSuite.cpp b/Net/testsuite/src/TCPServerTestSuite.cpp old mode 100644 new mode 100755 index 4e3b9c99a..fa4f5228a --- a/Net/testsuite/src/TCPServerTestSuite.cpp +++ b/Net/testsuite/src/TCPServerTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/TCPServerTestSuite.h b/Net/testsuite/src/TCPServerTestSuite.h old mode 100644 new mode 100755 index 7d8fa8cf1..24a10f1ae --- a/Net/testsuite/src/TCPServerTestSuite.h +++ b/Net/testsuite/src/TCPServerTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/UDPEchoServer.cpp b/Net/testsuite/src/UDPEchoServer.cpp old mode 100644 new mode 100755 index e66499cbf..1286e12a0 --- a/Net/testsuite/src/UDPEchoServer.cpp +++ b/Net/testsuite/src/UDPEchoServer.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/UDPEchoServer.h b/Net/testsuite/src/UDPEchoServer.h old mode 100644 new mode 100755 index 32a1504b6..7e3a73a5a --- a/Net/testsuite/src/UDPEchoServer.h +++ b/Net/testsuite/src/UDPEchoServer.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/WebSocketTest.cpp b/Net/testsuite/src/WebSocketTest.cpp old mode 100644 new mode 100755 index 528e9bb4e..3cb701667 --- a/Net/testsuite/src/WebSocketTest.cpp +++ b/Net/testsuite/src/WebSocketTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/WebSocketTest.h b/Net/testsuite/src/WebSocketTest.h old mode 100644 new mode 100755 index a4b1ecf97..939acf630 --- a/Net/testsuite/src/WebSocketTest.h +++ b/Net/testsuite/src/WebSocketTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/WebSocketTestSuite.cpp b/Net/testsuite/src/WebSocketTestSuite.cpp old mode 100644 new mode 100755 index 52976d58f..162eb38aa --- a/Net/testsuite/src/WebSocketTestSuite.cpp +++ b/Net/testsuite/src/WebSocketTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/WebSocketTestSuite.h b/Net/testsuite/src/WebSocketTestSuite.h old mode 100644 new mode 100755 index 0a285c8cb..83b5dbb81 --- a/Net/testsuite/src/WebSocketTestSuite.h +++ b/Net/testsuite/src/WebSocketTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/WinCEDriver.cpp b/Net/testsuite/src/WinCEDriver.cpp old mode 100644 new mode 100755 index d8abdfecc..f2f5742d8 --- a/Net/testsuite/src/WinCEDriver.cpp +++ b/Net/testsuite/src/WinCEDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Net/testsuite/src/WinDriver.cpp b/Net/testsuite/src/WinDriver.cpp old mode 100644 new mode 100755 index 7f60cb6e1..1f2186a8b --- a/Net/testsuite/src/WinDriver.cpp +++ b/Net/testsuite/src/WinDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/AcceptCertificateHandler.h b/NetSSL_OpenSSL/include/Poco/Net/AcceptCertificateHandler.h old mode 100644 new mode 100755 index 7ebbfec68..8fcc8a191 --- a/NetSSL_OpenSSL/include/Poco/Net/AcceptCertificateHandler.h +++ b/NetSSL_OpenSSL/include/Poco/Net/AcceptCertificateHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/CertificateHandlerFactory.h b/NetSSL_OpenSSL/include/Poco/Net/CertificateHandlerFactory.h old mode 100644 new mode 100755 index d8a602ab0..bc5e8b9e9 --- a/NetSSL_OpenSSL/include/Poco/Net/CertificateHandlerFactory.h +++ b/NetSSL_OpenSSL/include/Poco/Net/CertificateHandlerFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/CertificateHandlerFactoryMgr.h b/NetSSL_OpenSSL/include/Poco/Net/CertificateHandlerFactoryMgr.h old mode 100644 new mode 100755 index 61cfea28c..773a069eb --- a/NetSSL_OpenSSL/include/Poco/Net/CertificateHandlerFactoryMgr.h +++ b/NetSSL_OpenSSL/include/Poco/Net/CertificateHandlerFactoryMgr.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/ConsoleCertificateHandler.h b/NetSSL_OpenSSL/include/Poco/Net/ConsoleCertificateHandler.h old mode 100644 new mode 100755 index a70d1cbfd..8fcf1f083 --- a/NetSSL_OpenSSL/include/Poco/Net/ConsoleCertificateHandler.h +++ b/NetSSL_OpenSSL/include/Poco/Net/ConsoleCertificateHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/Context.h b/NetSSL_OpenSSL/include/Poco/Net/Context.h old mode 100644 new mode 100755 index 323e53cb0..7fbcffc84 --- a/NetSSL_OpenSSL/include/Poco/Net/Context.h +++ b/NetSSL_OpenSSL/include/Poco/Net/Context.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/HTTPSClientSession.h b/NetSSL_OpenSSL/include/Poco/Net/HTTPSClientSession.h old mode 100644 new mode 100755 index 2a906642e..638403b9b --- a/NetSSL_OpenSSL/include/Poco/Net/HTTPSClientSession.h +++ b/NetSSL_OpenSSL/include/Poco/Net/HTTPSClientSession.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/HTTPSSessionInstantiator.h b/NetSSL_OpenSSL/include/Poco/Net/HTTPSSessionInstantiator.h old mode 100644 new mode 100755 index 858eb4268..1454f3ab8 --- a/NetSSL_OpenSSL/include/Poco/Net/HTTPSSessionInstantiator.h +++ b/NetSSL_OpenSSL/include/Poco/Net/HTTPSSessionInstantiator.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/HTTPSStreamFactory.h b/NetSSL_OpenSSL/include/Poco/Net/HTTPSStreamFactory.h old mode 100644 new mode 100755 index 6339e7c58..e179a7ce8 --- a/NetSSL_OpenSSL/include/Poco/Net/HTTPSStreamFactory.h +++ b/NetSSL_OpenSSL/include/Poco/Net/HTTPSStreamFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/InvalidCertificateHandler.h b/NetSSL_OpenSSL/include/Poco/Net/InvalidCertificateHandler.h old mode 100644 new mode 100755 index 86f8f7857..8fbb33e6c --- a/NetSSL_OpenSSL/include/Poco/Net/InvalidCertificateHandler.h +++ b/NetSSL_OpenSSL/include/Poco/Net/InvalidCertificateHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/KeyConsoleHandler.h b/NetSSL_OpenSSL/include/Poco/Net/KeyConsoleHandler.h old mode 100644 new mode 100755 index 82b3bdb84..5b2c62d67 --- a/NetSSL_OpenSSL/include/Poco/Net/KeyConsoleHandler.h +++ b/NetSSL_OpenSSL/include/Poco/Net/KeyConsoleHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/KeyFileHandler.h b/NetSSL_OpenSSL/include/Poco/Net/KeyFileHandler.h old mode 100644 new mode 100755 index d7f9b9840..9f437e9bb --- a/NetSSL_OpenSSL/include/Poco/Net/KeyFileHandler.h +++ b/NetSSL_OpenSSL/include/Poco/Net/KeyFileHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/NetSSL.h b/NetSSL_OpenSSL/include/Poco/Net/NetSSL.h old mode 100644 new mode 100755 index 6ec236941..f4ca2b578 --- a/NetSSL_OpenSSL/include/Poco/Net/NetSSL.h +++ b/NetSSL_OpenSSL/include/Poco/Net/NetSSL.h @@ -14,27 +14,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/PrivateKeyFactory.h b/NetSSL_OpenSSL/include/Poco/Net/PrivateKeyFactory.h old mode 100644 new mode 100755 index aff16dd10..9fb592243 --- a/NetSSL_OpenSSL/include/Poco/Net/PrivateKeyFactory.h +++ b/NetSSL_OpenSSL/include/Poco/Net/PrivateKeyFactory.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/PrivateKeyFactoryMgr.h b/NetSSL_OpenSSL/include/Poco/Net/PrivateKeyFactoryMgr.h old mode 100644 new mode 100755 index 807e8ac94..b7609f435 --- a/NetSSL_OpenSSL/include/Poco/Net/PrivateKeyFactoryMgr.h +++ b/NetSSL_OpenSSL/include/Poco/Net/PrivateKeyFactoryMgr.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/PrivateKeyPassphraseHandler.h b/NetSSL_OpenSSL/include/Poco/Net/PrivateKeyPassphraseHandler.h old mode 100644 new mode 100755 index 88341b827..0ab61b512 --- a/NetSSL_OpenSSL/include/Poco/Net/PrivateKeyPassphraseHandler.h +++ b/NetSSL_OpenSSL/include/Poco/Net/PrivateKeyPassphraseHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/RejectCertificateHandler.h b/NetSSL_OpenSSL/include/Poco/Net/RejectCertificateHandler.h old mode 100644 new mode 100755 index 0d9693182..6d3265e36 --- a/NetSSL_OpenSSL/include/Poco/Net/RejectCertificateHandler.h +++ b/NetSSL_OpenSSL/include/Poco/Net/RejectCertificateHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/SSLException.h b/NetSSL_OpenSSL/include/Poco/Net/SSLException.h old mode 100644 new mode 100755 index 8ca632c78..59b41f83d --- a/NetSSL_OpenSSL/include/Poco/Net/SSLException.h +++ b/NetSSL_OpenSSL/include/Poco/Net/SSLException.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/SSLManager.h b/NetSSL_OpenSSL/include/Poco/Net/SSLManager.h old mode 100644 new mode 100755 index aae6ab540..246906866 --- a/NetSSL_OpenSSL/include/Poco/Net/SSLManager.h +++ b/NetSSL_OpenSSL/include/Poco/Net/SSLManager.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/SecureSMTPClientSession.h b/NetSSL_OpenSSL/include/Poco/Net/SecureSMTPClientSession.h old mode 100644 new mode 100755 index 21d904575..9b38a1b07 --- a/NetSSL_OpenSSL/include/Poco/Net/SecureSMTPClientSession.h +++ b/NetSSL_OpenSSL/include/Poco/Net/SecureSMTPClientSession.h @@ -12,27 +12,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/SecureServerSocket.h b/NetSSL_OpenSSL/include/Poco/Net/SecureServerSocket.h old mode 100644 new mode 100755 index 50c576d54..49da07bd5 --- a/NetSSL_OpenSSL/include/Poco/Net/SecureServerSocket.h +++ b/NetSSL_OpenSSL/include/Poco/Net/SecureServerSocket.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/SecureServerSocketImpl.h b/NetSSL_OpenSSL/include/Poco/Net/SecureServerSocketImpl.h old mode 100644 new mode 100755 index 904dbc55c..fa52cd5f8 --- a/NetSSL_OpenSSL/include/Poco/Net/SecureServerSocketImpl.h +++ b/NetSSL_OpenSSL/include/Poco/Net/SecureServerSocketImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/SecureSocketImpl.h b/NetSSL_OpenSSL/include/Poco/Net/SecureSocketImpl.h old mode 100644 new mode 100755 index 5f1bdf7d9..74b6ecb47 --- a/NetSSL_OpenSSL/include/Poco/Net/SecureSocketImpl.h +++ b/NetSSL_OpenSSL/include/Poco/Net/SecureSocketImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/SecureStreamSocket.h b/NetSSL_OpenSSL/include/Poco/Net/SecureStreamSocket.h old mode 100644 new mode 100755 index 442778d4d..96c6edb33 --- a/NetSSL_OpenSSL/include/Poco/Net/SecureStreamSocket.h +++ b/NetSSL_OpenSSL/include/Poco/Net/SecureStreamSocket.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/SecureStreamSocketImpl.h b/NetSSL_OpenSSL/include/Poco/Net/SecureStreamSocketImpl.h old mode 100644 new mode 100755 index e9e4f60e6..a1bf72c6c --- a/NetSSL_OpenSSL/include/Poco/Net/SecureStreamSocketImpl.h +++ b/NetSSL_OpenSSL/include/Poco/Net/SecureStreamSocketImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/Session.h b/NetSSL_OpenSSL/include/Poco/Net/Session.h old mode 100644 new mode 100755 index fc61f74a6..1f6cf51a4 --- a/NetSSL_OpenSSL/include/Poco/Net/Session.h +++ b/NetSSL_OpenSSL/include/Poco/Net/Session.h @@ -12,27 +12,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/Utility.h b/NetSSL_OpenSSL/include/Poco/Net/Utility.h old mode 100644 new mode 100755 index c0b8cd061..ea002eac9 --- a/NetSSL_OpenSSL/include/Poco/Net/Utility.h +++ b/NetSSL_OpenSSL/include/Poco/Net/Utility.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/VerificationErrorArgs.h b/NetSSL_OpenSSL/include/Poco/Net/VerificationErrorArgs.h old mode 100644 new mode 100755 index 72accb760..045a9b8a1 --- a/NetSSL_OpenSSL/include/Poco/Net/VerificationErrorArgs.h +++ b/NetSSL_OpenSSL/include/Poco/Net/VerificationErrorArgs.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h b/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h old mode 100644 new mode 100755 index cf93eb786..b048222a8 --- a/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h +++ b/NetSSL_OpenSSL/include/Poco/Net/X509Certificate.h @@ -12,27 +12,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/samples/HTTPSTimeServer/src/HTTPSTimeServer.cpp b/NetSSL_OpenSSL/samples/HTTPSTimeServer/src/HTTPSTimeServer.cpp old mode 100644 new mode 100755 index e11b86201..e9811cded --- a/NetSSL_OpenSSL/samples/HTTPSTimeServer/src/HTTPSTimeServer.cpp +++ b/NetSSL_OpenSSL/samples/HTTPSTimeServer/src/HTTPSTimeServer.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/samples/Mail/src/Mail.cpp b/NetSSL_OpenSSL/samples/Mail/src/Mail.cpp old mode 100644 new mode 100755 index 38d52512b..8da1de9cf --- a/NetSSL_OpenSSL/samples/Mail/src/Mail.cpp +++ b/NetSSL_OpenSSL/samples/Mail/src/Mail.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2005-2011, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/samples/download/src/download.cpp b/NetSSL_OpenSSL/samples/download/src/download.cpp old mode 100644 new mode 100755 index 80e8e364f..e574cb55b --- a/NetSSL_OpenSSL/samples/download/src/download.cpp +++ b/NetSSL_OpenSSL/samples/download/src/download.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/AcceptCertificateHandler.cpp b/NetSSL_OpenSSL/src/AcceptCertificateHandler.cpp old mode 100644 new mode 100755 index 2adaa052b..5ace06d8e --- a/NetSSL_OpenSSL/src/AcceptCertificateHandler.cpp +++ b/NetSSL_OpenSSL/src/AcceptCertificateHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/CertificateHandlerFactory.cpp b/NetSSL_OpenSSL/src/CertificateHandlerFactory.cpp old mode 100644 new mode 100755 index 568cca293..d9969a2ab --- a/NetSSL_OpenSSL/src/CertificateHandlerFactory.cpp +++ b/NetSSL_OpenSSL/src/CertificateHandlerFactory.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/CertificateHandlerFactoryMgr.cpp b/NetSSL_OpenSSL/src/CertificateHandlerFactoryMgr.cpp old mode 100644 new mode 100755 index 219f76e74..aa8d0ce47 --- a/NetSSL_OpenSSL/src/CertificateHandlerFactoryMgr.cpp +++ b/NetSSL_OpenSSL/src/CertificateHandlerFactoryMgr.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/ConsoleCertificateHandler.cpp b/NetSSL_OpenSSL/src/ConsoleCertificateHandler.cpp old mode 100644 new mode 100755 index 4e6b77969..40cf8ce8b --- a/NetSSL_OpenSSL/src/ConsoleCertificateHandler.cpp +++ b/NetSSL_OpenSSL/src/ConsoleCertificateHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/Context.cpp b/NetSSL_OpenSSL/src/Context.cpp old mode 100644 new mode 100755 index d0e4c79ec..5c6e89197 --- a/NetSSL_OpenSSL/src/Context.cpp +++ b/NetSSL_OpenSSL/src/Context.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/HTTPSClientSession.cpp b/NetSSL_OpenSSL/src/HTTPSClientSession.cpp old mode 100644 new mode 100755 index e4aa06112..3a25874c8 --- a/NetSSL_OpenSSL/src/HTTPSClientSession.cpp +++ b/NetSSL_OpenSSL/src/HTTPSClientSession.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/HTTPSSessionInstantiator.cpp b/NetSSL_OpenSSL/src/HTTPSSessionInstantiator.cpp old mode 100644 new mode 100755 index 7eef65202..4131e4086 --- a/NetSSL_OpenSSL/src/HTTPSSessionInstantiator.cpp +++ b/NetSSL_OpenSSL/src/HTTPSSessionInstantiator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/HTTPSStreamFactory.cpp b/NetSSL_OpenSSL/src/HTTPSStreamFactory.cpp old mode 100644 new mode 100755 index 632a553cf..b3f1d096f --- a/NetSSL_OpenSSL/src/HTTPSStreamFactory.cpp +++ b/NetSSL_OpenSSL/src/HTTPSStreamFactory.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/InvalidCertificateHandler.cpp b/NetSSL_OpenSSL/src/InvalidCertificateHandler.cpp old mode 100644 new mode 100755 index 9e4812b9d..2d80ae0c1 --- a/NetSSL_OpenSSL/src/InvalidCertificateHandler.cpp +++ b/NetSSL_OpenSSL/src/InvalidCertificateHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/KeyConsoleHandler.cpp b/NetSSL_OpenSSL/src/KeyConsoleHandler.cpp old mode 100644 new mode 100755 index b077b330b..167a3f7e4 --- a/NetSSL_OpenSSL/src/KeyConsoleHandler.cpp +++ b/NetSSL_OpenSSL/src/KeyConsoleHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/KeyFileHandler.cpp b/NetSSL_OpenSSL/src/KeyFileHandler.cpp old mode 100644 new mode 100755 index 3d51d3c66..68c821704 --- a/NetSSL_OpenSSL/src/KeyFileHandler.cpp +++ b/NetSSL_OpenSSL/src/KeyFileHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/PrivateKeyFactory.cpp b/NetSSL_OpenSSL/src/PrivateKeyFactory.cpp old mode 100644 new mode 100755 index e7e244fbe..5830f20b2 --- a/NetSSL_OpenSSL/src/PrivateKeyFactory.cpp +++ b/NetSSL_OpenSSL/src/PrivateKeyFactory.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/PrivateKeyFactoryMgr.cpp b/NetSSL_OpenSSL/src/PrivateKeyFactoryMgr.cpp old mode 100644 new mode 100755 index d4c89f476..f2d1bc28b --- a/NetSSL_OpenSSL/src/PrivateKeyFactoryMgr.cpp +++ b/NetSSL_OpenSSL/src/PrivateKeyFactoryMgr.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/PrivateKeyPassphraseHandler.cpp b/NetSSL_OpenSSL/src/PrivateKeyPassphraseHandler.cpp old mode 100644 new mode 100755 index 2854e49d9..10048340f --- a/NetSSL_OpenSSL/src/PrivateKeyPassphraseHandler.cpp +++ b/NetSSL_OpenSSL/src/PrivateKeyPassphraseHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/RejectCertificateHandler.cpp b/NetSSL_OpenSSL/src/RejectCertificateHandler.cpp old mode 100644 new mode 100755 index 3d6c0e102..09572817c --- a/NetSSL_OpenSSL/src/RejectCertificateHandler.cpp +++ b/NetSSL_OpenSSL/src/RejectCertificateHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/SSLException.cpp b/NetSSL_OpenSSL/src/SSLException.cpp old mode 100644 new mode 100755 index b97ffd481..0137d1cbb --- a/NetSSL_OpenSSL/src/SSLException.cpp +++ b/NetSSL_OpenSSL/src/SSLException.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/SSLManager.cpp b/NetSSL_OpenSSL/src/SSLManager.cpp old mode 100644 new mode 100755 index 69a8e8d71..7f5d8f712 --- a/NetSSL_OpenSSL/src/SSLManager.cpp +++ b/NetSSL_OpenSSL/src/SSLManager.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/SecureSMTPClientSession.cpp b/NetSSL_OpenSSL/src/SecureSMTPClientSession.cpp old mode 100644 new mode 100755 index 6d4a927e0..f8501a5a2 --- a/NetSSL_OpenSSL/src/SecureSMTPClientSession.cpp +++ b/NetSSL_OpenSSL/src/SecureSMTPClientSession.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/SecureServerSocket.cpp b/NetSSL_OpenSSL/src/SecureServerSocket.cpp old mode 100644 new mode 100755 index 9a416640d..6308ccc09 --- a/NetSSL_OpenSSL/src/SecureServerSocket.cpp +++ b/NetSSL_OpenSSL/src/SecureServerSocket.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/SecureServerSocketImpl.cpp b/NetSSL_OpenSSL/src/SecureServerSocketImpl.cpp old mode 100644 new mode 100755 index ca89dc4df..772b672f1 --- a/NetSSL_OpenSSL/src/SecureServerSocketImpl.cpp +++ b/NetSSL_OpenSSL/src/SecureServerSocketImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/SecureSocketImpl.cpp b/NetSSL_OpenSSL/src/SecureSocketImpl.cpp old mode 100644 new mode 100755 index ebbf17537..d38c91f88 --- a/NetSSL_OpenSSL/src/SecureSocketImpl.cpp +++ b/NetSSL_OpenSSL/src/SecureSocketImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/SecureStreamSocket.cpp b/NetSSL_OpenSSL/src/SecureStreamSocket.cpp old mode 100644 new mode 100755 index a7d229a04..e525b6a12 --- a/NetSSL_OpenSSL/src/SecureStreamSocket.cpp +++ b/NetSSL_OpenSSL/src/SecureStreamSocket.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/SecureStreamSocketImpl.cpp b/NetSSL_OpenSSL/src/SecureStreamSocketImpl.cpp old mode 100644 new mode 100755 index 8f5209657..88694eec9 --- a/NetSSL_OpenSSL/src/SecureStreamSocketImpl.cpp +++ b/NetSSL_OpenSSL/src/SecureStreamSocketImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/Session.cpp b/NetSSL_OpenSSL/src/Session.cpp old mode 100644 new mode 100755 index d71f16b63..f46dcb16c --- a/NetSSL_OpenSSL/src/Session.cpp +++ b/NetSSL_OpenSSL/src/Session.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/Utility.cpp b/NetSSL_OpenSSL/src/Utility.cpp old mode 100644 new mode 100755 index 7d8d2cd43..ea94ecac8 --- a/NetSSL_OpenSSL/src/Utility.cpp +++ b/NetSSL_OpenSSL/src/Utility.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/VerificationErrorArgs.cpp b/NetSSL_OpenSSL/src/VerificationErrorArgs.cpp old mode 100644 new mode 100755 index 831c2de16..d90be6fe6 --- a/NetSSL_OpenSSL/src/VerificationErrorArgs.cpp +++ b/NetSSL_OpenSSL/src/VerificationErrorArgs.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/src/X509Certificate.cpp b/NetSSL_OpenSSL/src/X509Certificate.cpp old mode 100644 new mode 100755 index f52018e59..0df4baf8c --- a/NetSSL_OpenSSL/src/X509Certificate.cpp +++ b/NetSSL_OpenSSL/src/X509Certificate.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/Driver.cpp b/NetSSL_OpenSSL/testsuite/src/Driver.cpp old mode 100644 new mode 100755 index 9ef35b59e..81c51eca7 --- a/NetSSL_OpenSSL/testsuite/src/Driver.cpp +++ b/NetSSL_OpenSSL/testsuite/src/Driver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/HTTPSClientSessionTest.cpp b/NetSSL_OpenSSL/testsuite/src/HTTPSClientSessionTest.cpp old mode 100644 new mode 100755 index 0b09ceb5e..ed2106af0 --- a/NetSSL_OpenSSL/testsuite/src/HTTPSClientSessionTest.cpp +++ b/NetSSL_OpenSSL/testsuite/src/HTTPSClientSessionTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/HTTPSClientSessionTest.h b/NetSSL_OpenSSL/testsuite/src/HTTPSClientSessionTest.h old mode 100644 new mode 100755 index e319b73cf..41e89c05e --- a/NetSSL_OpenSSL/testsuite/src/HTTPSClientSessionTest.h +++ b/NetSSL_OpenSSL/testsuite/src/HTTPSClientSessionTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/HTTPSClientTestSuite.cpp b/NetSSL_OpenSSL/testsuite/src/HTTPSClientTestSuite.cpp old mode 100644 new mode 100755 index 5ff9ef375..4c919f980 --- a/NetSSL_OpenSSL/testsuite/src/HTTPSClientTestSuite.cpp +++ b/NetSSL_OpenSSL/testsuite/src/HTTPSClientTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/HTTPSClientTestSuite.h b/NetSSL_OpenSSL/testsuite/src/HTTPSClientTestSuite.h old mode 100644 new mode 100755 index 0e1fd7b66..94f7059da --- a/NetSSL_OpenSSL/testsuite/src/HTTPSClientTestSuite.h +++ b/NetSSL_OpenSSL/testsuite/src/HTTPSClientTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/HTTPSServerTest.cpp b/NetSSL_OpenSSL/testsuite/src/HTTPSServerTest.cpp old mode 100644 new mode 100755 index b46defd40..7e603dd26 --- a/NetSSL_OpenSSL/testsuite/src/HTTPSServerTest.cpp +++ b/NetSSL_OpenSSL/testsuite/src/HTTPSServerTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/HTTPSServerTest.h b/NetSSL_OpenSSL/testsuite/src/HTTPSServerTest.h old mode 100644 new mode 100755 index 19489dacb..7ff9ed68e --- a/NetSSL_OpenSSL/testsuite/src/HTTPSServerTest.h +++ b/NetSSL_OpenSSL/testsuite/src/HTTPSServerTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/HTTPSServerTestSuite.cpp b/NetSSL_OpenSSL/testsuite/src/HTTPSServerTestSuite.cpp old mode 100644 new mode 100755 index ada774f35..ec58bea7f --- a/NetSSL_OpenSSL/testsuite/src/HTTPSServerTestSuite.cpp +++ b/NetSSL_OpenSSL/testsuite/src/HTTPSServerTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/HTTPSServerTestSuite.h b/NetSSL_OpenSSL/testsuite/src/HTTPSServerTestSuite.h old mode 100644 new mode 100755 index 7c4574d57..cc97bf2c1 --- a/NetSSL_OpenSSL/testsuite/src/HTTPSServerTestSuite.h +++ b/NetSSL_OpenSSL/testsuite/src/HTTPSServerTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/HTTPSStreamFactoryTest.cpp b/NetSSL_OpenSSL/testsuite/src/HTTPSStreamFactoryTest.cpp old mode 100644 new mode 100755 index 0bb806e78..6f3eba719 --- a/NetSSL_OpenSSL/testsuite/src/HTTPSStreamFactoryTest.cpp +++ b/NetSSL_OpenSSL/testsuite/src/HTTPSStreamFactoryTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/HTTPSStreamFactoryTest.h b/NetSSL_OpenSSL/testsuite/src/HTTPSStreamFactoryTest.h old mode 100644 new mode 100755 index 1409cdd05..13cfba3e0 --- a/NetSSL_OpenSSL/testsuite/src/HTTPSStreamFactoryTest.h +++ b/NetSSL_OpenSSL/testsuite/src/HTTPSStreamFactoryTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/HTTPSTestServer.cpp b/NetSSL_OpenSSL/testsuite/src/HTTPSTestServer.cpp old mode 100644 new mode 100755 index f6d96a0ff..d67ff52c1 --- a/NetSSL_OpenSSL/testsuite/src/HTTPSTestServer.cpp +++ b/NetSSL_OpenSSL/testsuite/src/HTTPSTestServer.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/HTTPSTestServer.h b/NetSSL_OpenSSL/testsuite/src/HTTPSTestServer.h old mode 100644 new mode 100755 index b5b3e7823..e6d51b38c --- a/NetSSL_OpenSSL/testsuite/src/HTTPSTestServer.h +++ b/NetSSL_OpenSSL/testsuite/src/HTTPSTestServer.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/NetSSLTestSuite.cpp b/NetSSL_OpenSSL/testsuite/src/NetSSLTestSuite.cpp old mode 100644 new mode 100755 index 7eb572b29..241a68dbd --- a/NetSSL_OpenSSL/testsuite/src/NetSSLTestSuite.cpp +++ b/NetSSL_OpenSSL/testsuite/src/NetSSLTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/NetSSLTestSuite.h b/NetSSL_OpenSSL/testsuite/src/NetSSLTestSuite.h old mode 100644 new mode 100755 index d95ae4f2d..afc1f5abb --- a/NetSSL_OpenSSL/testsuite/src/NetSSLTestSuite.h +++ b/NetSSL_OpenSSL/testsuite/src/NetSSLTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/TCPServerTest.cpp b/NetSSL_OpenSSL/testsuite/src/TCPServerTest.cpp old mode 100644 new mode 100755 index a97df8060..4a39a1f12 --- a/NetSSL_OpenSSL/testsuite/src/TCPServerTest.cpp +++ b/NetSSL_OpenSSL/testsuite/src/TCPServerTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/TCPServerTest.h b/NetSSL_OpenSSL/testsuite/src/TCPServerTest.h old mode 100644 new mode 100755 index f69ce703d..8673230e3 --- a/NetSSL_OpenSSL/testsuite/src/TCPServerTest.h +++ b/NetSSL_OpenSSL/testsuite/src/TCPServerTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/TCPServerTestSuite.cpp b/NetSSL_OpenSSL/testsuite/src/TCPServerTestSuite.cpp old mode 100644 new mode 100755 index 2e9198dc9..94e706bd4 --- a/NetSSL_OpenSSL/testsuite/src/TCPServerTestSuite.cpp +++ b/NetSSL_OpenSSL/testsuite/src/TCPServerTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/TCPServerTestSuite.h b/NetSSL_OpenSSL/testsuite/src/TCPServerTestSuite.h old mode 100644 new mode 100755 index b334504ef..644bb9bf5 --- a/NetSSL_OpenSSL/testsuite/src/TCPServerTestSuite.h +++ b/NetSSL_OpenSSL/testsuite/src/TCPServerTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/WinCEDriver.cpp b/NetSSL_OpenSSL/testsuite/src/WinCEDriver.cpp old mode 100644 new mode 100755 index c2973e56f..a6cc405f5 --- a/NetSSL_OpenSSL/testsuite/src/WinCEDriver.cpp +++ b/NetSSL_OpenSSL/testsuite/src/WinCEDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/NetSSL_OpenSSL/testsuite/src/WinDriver.cpp b/NetSSL_OpenSSL/testsuite/src/WinDriver.cpp old mode 100644 new mode 100755 index 22fe5a464..78517ca5f --- a/NetSSL_OpenSSL/testsuite/src/WinDriver.cpp +++ b/NetSSL_OpenSSL/testsuite/src/WinDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/include/Poco/PDF/Destination.h b/PDF/include/Poco/PDF/Destination.h old mode 100644 new mode 100755 index 7ec124ff9..e6dddf3d8 --- a/PDF/include/Poco/PDF/Destination.h +++ b/PDF/include/Poco/PDF/Destination.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/include/Poco/PDF/Document.h b/PDF/include/Poco/PDF/Document.h old mode 100644 new mode 100755 index 45dafe75a..2415babf3 --- a/PDF/include/Poco/PDF/Document.h +++ b/PDF/include/Poco/PDF/Document.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/include/Poco/PDF/Encoder.h b/PDF/include/Poco/PDF/Encoder.h old mode 100644 new mode 100755 index d0282962d..3004f5a12 --- a/PDF/include/Poco/PDF/Encoder.h +++ b/PDF/include/Poco/PDF/Encoder.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/include/Poco/PDF/Font.h b/PDF/include/Poco/PDF/Font.h old mode 100644 new mode 100755 index 91622d392..6f5313e51 --- a/PDF/include/Poco/PDF/Font.h +++ b/PDF/include/Poco/PDF/Font.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/include/Poco/PDF/Image.h b/PDF/include/Poco/PDF/Image.h old mode 100644 new mode 100755 index ae852abb6..91e88e3b0 --- a/PDF/include/Poco/PDF/Image.h +++ b/PDF/include/Poco/PDF/Image.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/include/Poco/PDF/LinkAnnotation.h b/PDF/include/Poco/PDF/LinkAnnotation.h old mode 100644 new mode 100755 index f6a9a6cf6..d91f765f8 --- a/PDF/include/Poco/PDF/LinkAnnotation.h +++ b/PDF/include/Poco/PDF/LinkAnnotation.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/include/Poco/PDF/Outline.h b/PDF/include/Poco/PDF/Outline.h old mode 100644 new mode 100755 index c7d2237d1..8c84c91a4 --- a/PDF/include/Poco/PDF/Outline.h +++ b/PDF/include/Poco/PDF/Outline.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/include/Poco/PDF/PDF.h b/PDF/include/Poco/PDF/PDF.h old mode 100644 new mode 100755 index f4b6b5494..053cd712a --- a/PDF/include/Poco/PDF/PDF.h +++ b/PDF/include/Poco/PDF/PDF.h @@ -14,27 +14,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/include/Poco/PDF/PDFException.h b/PDF/include/Poco/PDF/PDFException.h old mode 100644 new mode 100755 index b5d8f3a05..881c8fc46 --- a/PDF/include/Poco/PDF/PDFException.h +++ b/PDF/include/Poco/PDF/PDFException.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/include/Poco/PDF/Page.h b/PDF/include/Poco/PDF/Page.h old mode 100644 new mode 100755 index f39b5a669..8797e8e5f --- a/PDF/include/Poco/PDF/Page.h +++ b/PDF/include/Poco/PDF/Page.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/include/Poco/PDF/Resource.h b/PDF/include/Poco/PDF/Resource.h old mode 100644 new mode 100755 index 531cea94e..2faccb48a --- a/PDF/include/Poco/PDF/Resource.h +++ b/PDF/include/Poco/PDF/Resource.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/include/Poco/PDF/TextAnnotation.h b/PDF/include/Poco/PDF/TextAnnotation.h old mode 100644 new mode 100755 index 6c3e029ae..b4b9fae1d --- a/PDF/include/Poco/PDF/TextAnnotation.h +++ b/PDF/include/Poco/PDF/TextAnnotation.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/src/Destination.cpp b/PDF/src/Destination.cpp old mode 100644 new mode 100755 index 3db0db0fb..3f4be7121 --- a/PDF/src/Destination.cpp +++ b/PDF/src/Destination.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/src/Document.cpp b/PDF/src/Document.cpp old mode 100644 new mode 100755 index 3aa2e1de2..c182edfbb --- a/PDF/src/Document.cpp +++ b/PDF/src/Document.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/src/Encoder.cpp b/PDF/src/Encoder.cpp old mode 100644 new mode 100755 index 01ed2923a..b56213211 --- a/PDF/src/Encoder.cpp +++ b/PDF/src/Encoder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/src/Font.cpp b/PDF/src/Font.cpp old mode 100644 new mode 100755 index 080d11bf1..005ad6198 --- a/PDF/src/Font.cpp +++ b/PDF/src/Font.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/src/Image.cpp b/PDF/src/Image.cpp old mode 100644 new mode 100755 index eb27f7e5a..f52a9c697 --- a/PDF/src/Image.cpp +++ b/PDF/src/Image.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/src/LinkAnnotation.cpp b/PDF/src/LinkAnnotation.cpp old mode 100644 new mode 100755 index 890a91892..a8289e6cd --- a/PDF/src/LinkAnnotation.cpp +++ b/PDF/src/LinkAnnotation.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/src/Outline.cpp b/PDF/src/Outline.cpp old mode 100644 new mode 100755 index 081a242c3..d3ccd4dc5 --- a/PDF/src/Outline.cpp +++ b/PDF/src/Outline.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/src/PDFException.cpp b/PDF/src/PDFException.cpp old mode 100644 new mode 100755 index 7b75216e1..550313859 --- a/PDF/src/PDFException.cpp +++ b/PDF/src/PDFException.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/src/Page.cpp b/PDF/src/Page.cpp old mode 100644 new mode 100755 index 30b32148c..6a2424df8 --- a/PDF/src/Page.cpp +++ b/PDF/src/Page.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/src/TextAnnotation.cpp b/PDF/src/TextAnnotation.cpp old mode 100644 new mode 100755 index 736efa859..30eb8d8b6 --- a/PDF/src/TextAnnotation.cpp +++ b/PDF/src/TextAnnotation.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/testsuite/src/Driver.cpp b/PDF/testsuite/src/Driver.cpp old mode 100644 new mode 100755 index 0f4b2059a..c76cb9f36 --- a/PDF/testsuite/src/Driver.cpp +++ b/PDF/testsuite/src/Driver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/testsuite/src/PDFTest.cpp b/PDF/testsuite/src/PDFTest.cpp old mode 100644 new mode 100755 index bf0c3c83d..3f2483091 --- a/PDF/testsuite/src/PDFTest.cpp +++ b/PDF/testsuite/src/PDFTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/testsuite/src/PDFTest.h b/PDF/testsuite/src/PDFTest.h old mode 100644 new mode 100755 index 08bd81d80..a639da9d8 --- a/PDF/testsuite/src/PDFTest.h +++ b/PDF/testsuite/src/PDFTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/testsuite/src/PDFTestSuite.cpp b/PDF/testsuite/src/PDFTestSuite.cpp old mode 100644 new mode 100755 index 292720b67..3a977cd4d --- a/PDF/testsuite/src/PDFTestSuite.cpp +++ b/PDF/testsuite/src/PDFTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/testsuite/src/PDFTestSuite.h b/PDF/testsuite/src/PDFTestSuite.h old mode 100644 new mode 100755 index fe3dc3f2f..fc8b28f2c --- a/PDF/testsuite/src/PDFTestSuite.h +++ b/PDF/testsuite/src/PDFTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PDF/testsuite/src/WinDriver.cpp b/PDF/testsuite/src/WinDriver.cpp old mode 100644 new mode 100755 index 807f0eceb..35d46106a --- a/PDF/testsuite/src/WinDriver.cpp +++ b/PDF/testsuite/src/WinDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PageCompiler/File2Page/src/File2Page.cpp b/PageCompiler/File2Page/src/File2Page.cpp old mode 100644 new mode 100755 index b323f1804..9fd5036ff --- a/PageCompiler/File2Page/src/File2Page.cpp +++ b/PageCompiler/File2Page/src/File2Page.cpp @@ -9,27 +9,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PageCompiler/samples/HTTPTimeServer/src/HTTPTimeServerApp.cpp b/PageCompiler/samples/HTTPTimeServer/src/HTTPTimeServerApp.cpp old mode 100644 new mode 100755 index 8c58e0a98..feeb362e1 --- a/PageCompiler/samples/HTTPTimeServer/src/HTTPTimeServerApp.cpp +++ b/PageCompiler/samples/HTTPTimeServer/src/HTTPTimeServerApp.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PageCompiler/src/ApacheCodeWriter.cpp b/PageCompiler/src/ApacheCodeWriter.cpp old mode 100644 new mode 100755 index c12b4e1bd..7536f5854 --- a/PageCompiler/src/ApacheCodeWriter.cpp +++ b/PageCompiler/src/ApacheCodeWriter.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PageCompiler/src/ApacheCodeWriter.h b/PageCompiler/src/ApacheCodeWriter.h old mode 100644 new mode 100755 index 7a15d5ea6..e6b85e569 --- a/PageCompiler/src/ApacheCodeWriter.h +++ b/PageCompiler/src/ApacheCodeWriter.h @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PageCompiler/src/CodeWriter.cpp b/PageCompiler/src/CodeWriter.cpp old mode 100644 new mode 100755 index 706fe8ab9..13c0973ec --- a/PageCompiler/src/CodeWriter.cpp +++ b/PageCompiler/src/CodeWriter.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PageCompiler/src/CodeWriter.h b/PageCompiler/src/CodeWriter.h old mode 100644 new mode 100755 index 1817fe3af..6ba34ef5b --- a/PageCompiler/src/CodeWriter.h +++ b/PageCompiler/src/CodeWriter.h @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PageCompiler/src/OSPCodeWriter.cpp b/PageCompiler/src/OSPCodeWriter.cpp old mode 100644 new mode 100755 index 9fcd77f77..dbbf00099 --- a/PageCompiler/src/OSPCodeWriter.cpp +++ b/PageCompiler/src/OSPCodeWriter.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PageCompiler/src/OSPCodeWriter.h b/PageCompiler/src/OSPCodeWriter.h old mode 100644 new mode 100755 index 0aec6ec73..9372abe4a --- a/PageCompiler/src/OSPCodeWriter.h +++ b/PageCompiler/src/OSPCodeWriter.h @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PageCompiler/src/Page.cpp b/PageCompiler/src/Page.cpp old mode 100644 new mode 100755 index 01d3d82d8..705236b45 --- a/PageCompiler/src/Page.cpp +++ b/PageCompiler/src/Page.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PageCompiler/src/Page.h b/PageCompiler/src/Page.h old mode 100644 new mode 100755 index 1d966cedb..5e5e6b12b --- a/PageCompiler/src/Page.h +++ b/PageCompiler/src/Page.h @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PageCompiler/src/PageCompiler.cpp b/PageCompiler/src/PageCompiler.cpp old mode 100644 new mode 100755 index d14e108a5..42fb1dee6 --- a/PageCompiler/src/PageCompiler.cpp +++ b/PageCompiler/src/PageCompiler.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PageCompiler/src/PageReader.cpp b/PageCompiler/src/PageReader.cpp old mode 100644 new mode 100755 index 74f095e9c..d435ca07f --- a/PageCompiler/src/PageReader.cpp +++ b/PageCompiler/src/PageReader.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PageCompiler/src/PageReader.h b/PageCompiler/src/PageReader.h old mode 100644 new mode 100755 index 3aff163fe..4e7ad7934 --- a/PageCompiler/src/PageReader.h +++ b/PageCompiler/src/PageReader.h @@ -6,27 +6,7 @@ // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PocoDoc/src/DocWriter.cpp b/PocoDoc/src/DocWriter.cpp old mode 100644 new mode 100755 index ad2f6c32d..5bb88a7d8 --- a/PocoDoc/src/DocWriter.cpp +++ b/PocoDoc/src/DocWriter.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PocoDoc/src/DocWriter.h b/PocoDoc/src/DocWriter.h old mode 100644 new mode 100755 index 91ddae9e9..9342cb4bc --- a/PocoDoc/src/DocWriter.h +++ b/PocoDoc/src/DocWriter.h @@ -8,27 +8,7 @@ // Copyright (c) 2005-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/PocoDoc/src/PocoDoc.cpp b/PocoDoc/src/PocoDoc.cpp old mode 100644 new mode 100755 index 11eeb9a20..5cd689a7f --- a/PocoDoc/src/PocoDoc.cpp +++ b/PocoDoc/src/PocoDoc.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2005-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ProGen/src/ProGen.cpp b/ProGen/src/ProGen.cpp old mode 100644 new mode 100755 index 5d6aaebe4..9c115e1a0 --- a/ProGen/src/ProGen.cpp +++ b/ProGen/src/ProGen.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ProGen/src/VSXMLWriter.cpp b/ProGen/src/VSXMLWriter.cpp old mode 100644 new mode 100755 index dae4a6b06..bac72b9c8 --- a/ProGen/src/VSXMLWriter.cpp +++ b/ProGen/src/VSXMLWriter.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/ProGen/src/VSXMLWriter.h b/ProGen/src/VSXMLWriter.h old mode 100644 new mode 100755 index d062a97fa..64fba533c --- a/ProGen/src/VSXMLWriter.h +++ b/ProGen/src/VSXMLWriter.h @@ -8,27 +8,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/SevenZip/include/Poco/SevenZip/Archive.h b/SevenZip/include/Poco/SevenZip/Archive.h old mode 100644 new mode 100755 index f559a00dc..24e9843bd --- a/SevenZip/include/Poco/SevenZip/Archive.h +++ b/SevenZip/include/Poco/SevenZip/Archive.h @@ -12,27 +12,7 @@ // Copyright (c) 2014, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/SevenZip/include/Poco/SevenZip/ArchiveEntry.h b/SevenZip/include/Poco/SevenZip/ArchiveEntry.h old mode 100644 new mode 100755 index ffd0a435b..1b730bb1f --- a/SevenZip/include/Poco/SevenZip/ArchiveEntry.h +++ b/SevenZip/include/Poco/SevenZip/ArchiveEntry.h @@ -12,27 +12,7 @@ // Copyright (c) 2014, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/SevenZip/include/Poco/SevenZip/SevenZip.h b/SevenZip/include/Poco/SevenZip/SevenZip.h old mode 100644 new mode 100755 index 24ccd8241..5e1f7fe25 --- a/SevenZip/include/Poco/SevenZip/SevenZip.h +++ b/SevenZip/include/Poco/SevenZip/SevenZip.h @@ -14,27 +14,7 @@ // Copyright (c) 2014, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/SevenZip/samples/un7zip/src/un7zip.cpp b/SevenZip/samples/un7zip/src/un7zip.cpp old mode 100644 new mode 100755 index afd2a4df7..e7d620371 --- a/SevenZip/samples/un7zip/src/un7zip.cpp +++ b/SevenZip/samples/un7zip/src/un7zip.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2014, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/SevenZip/src/Archive.cpp b/SevenZip/src/Archive.cpp old mode 100644 new mode 100755 index d48f27ec4..5145c358d --- a/SevenZip/src/Archive.cpp +++ b/SevenZip/src/Archive.cpp @@ -12,27 +12,7 @@ // Copyright (c) 2014, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/SevenZip/src/ArchiveEntry.cpp b/SevenZip/src/ArchiveEntry.cpp old mode 100644 new mode 100755 index 91f8dec01..8b710e65b --- a/SevenZip/src/ArchiveEntry.cpp +++ b/SevenZip/src/ArchiveEntry.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2014, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/AbstractConfiguration.h b/Util/include/Poco/Util/AbstractConfiguration.h old mode 100644 new mode 100755 index e48491143..4cc09cf07 --- a/Util/include/Poco/Util/AbstractConfiguration.h +++ b/Util/include/Poco/Util/AbstractConfiguration.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/Application.h b/Util/include/Poco/Util/Application.h old mode 100644 new mode 100755 index 9078092c2..30b826d9b --- a/Util/include/Poco/Util/Application.h +++ b/Util/include/Poco/Util/Application.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/ConfigurationMapper.h b/Util/include/Poco/Util/ConfigurationMapper.h old mode 100644 new mode 100755 index 8ae411aad..3b14b17e1 --- a/Util/include/Poco/Util/ConfigurationMapper.h +++ b/Util/include/Poco/Util/ConfigurationMapper.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/ConfigurationView.h b/Util/include/Poco/Util/ConfigurationView.h old mode 100644 new mode 100755 index 97c07b279..7b166bdc7 --- a/Util/include/Poco/Util/ConfigurationView.h +++ b/Util/include/Poco/Util/ConfigurationView.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/FilesystemConfiguration.h b/Util/include/Poco/Util/FilesystemConfiguration.h old mode 100644 new mode 100755 index aade7b7c1..652025c41 --- a/Util/include/Poco/Util/FilesystemConfiguration.h +++ b/Util/include/Poco/Util/FilesystemConfiguration.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/HelpFormatter.h b/Util/include/Poco/Util/HelpFormatter.h old mode 100644 new mode 100755 index 7cb41dd1c..bb3544573 --- a/Util/include/Poco/Util/HelpFormatter.h +++ b/Util/include/Poco/Util/HelpFormatter.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/IniFileConfiguration.h b/Util/include/Poco/Util/IniFileConfiguration.h old mode 100644 new mode 100755 index 0620b998a..3c4fde3ab --- a/Util/include/Poco/Util/IniFileConfiguration.h +++ b/Util/include/Poco/Util/IniFileConfiguration.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/IntValidator.h b/Util/include/Poco/Util/IntValidator.h old mode 100644 new mode 100755 index aee88a2e4..acc120772 --- a/Util/include/Poco/Util/IntValidator.h +++ b/Util/include/Poco/Util/IntValidator.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/JSONConfiguration.h b/Util/include/Poco/Util/JSONConfiguration.h old mode 100644 new mode 100755 index 2859115f5..f8e2f3c44 --- a/Util/include/Poco/Util/JSONConfiguration.h +++ b/Util/include/Poco/Util/JSONConfiguration.h @@ -12,27 +12,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/LayeredConfiguration.h b/Util/include/Poco/Util/LayeredConfiguration.h old mode 100644 new mode 100755 index 031af081c..8c258ed95 --- a/Util/include/Poco/Util/LayeredConfiguration.h +++ b/Util/include/Poco/Util/LayeredConfiguration.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/LoggingConfigurator.h b/Util/include/Poco/Util/LoggingConfigurator.h old mode 100644 new mode 100755 index 23394f906..4ffcaf294 --- a/Util/include/Poco/Util/LoggingConfigurator.h +++ b/Util/include/Poco/Util/LoggingConfigurator.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/LoggingSubsystem.h b/Util/include/Poco/Util/LoggingSubsystem.h old mode 100644 new mode 100755 index 7ca437943..fb15e4848 --- a/Util/include/Poco/Util/LoggingSubsystem.h +++ b/Util/include/Poco/Util/LoggingSubsystem.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/MapConfiguration.h b/Util/include/Poco/Util/MapConfiguration.h old mode 100644 new mode 100755 index 168634260..5fea33f98 --- a/Util/include/Poco/Util/MapConfiguration.h +++ b/Util/include/Poco/Util/MapConfiguration.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/Option.h b/Util/include/Poco/Util/Option.h old mode 100644 new mode 100755 index 883423afe..66c23942d --- a/Util/include/Poco/Util/Option.h +++ b/Util/include/Poco/Util/Option.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/OptionCallback.h b/Util/include/Poco/Util/OptionCallback.h old mode 100644 new mode 100755 index 363e57835..578175fbb --- a/Util/include/Poco/Util/OptionCallback.h +++ b/Util/include/Poco/Util/OptionCallback.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/OptionException.h b/Util/include/Poco/Util/OptionException.h old mode 100644 new mode 100755 index cdeba4bb0..031913c7b --- a/Util/include/Poco/Util/OptionException.h +++ b/Util/include/Poco/Util/OptionException.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/OptionProcessor.h b/Util/include/Poco/Util/OptionProcessor.h old mode 100644 new mode 100755 index 63ebb03df..752aa084a --- a/Util/include/Poco/Util/OptionProcessor.h +++ b/Util/include/Poco/Util/OptionProcessor.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/OptionSet.h b/Util/include/Poco/Util/OptionSet.h old mode 100644 new mode 100755 index 8dfa985ea..b02aed310 --- a/Util/include/Poco/Util/OptionSet.h +++ b/Util/include/Poco/Util/OptionSet.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/PropertyFileConfiguration.h b/Util/include/Poco/Util/PropertyFileConfiguration.h old mode 100644 new mode 100755 index 1a9ae6c89..a6b8c4442 --- a/Util/include/Poco/Util/PropertyFileConfiguration.h +++ b/Util/include/Poco/Util/PropertyFileConfiguration.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/RegExpValidator.h b/Util/include/Poco/Util/RegExpValidator.h old mode 100644 new mode 100755 index be15a9650..0279d6686 --- a/Util/include/Poco/Util/RegExpValidator.h +++ b/Util/include/Poco/Util/RegExpValidator.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/ServerApplication.h b/Util/include/Poco/Util/ServerApplication.h old mode 100644 new mode 100755 index 1b9bf8209..bcb23fa55 --- a/Util/include/Poco/Util/ServerApplication.h +++ b/Util/include/Poco/Util/ServerApplication.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/Subsystem.h b/Util/include/Poco/Util/Subsystem.h old mode 100644 new mode 100755 index df906549e..442e9ce5d --- a/Util/include/Poco/Util/Subsystem.h +++ b/Util/include/Poco/Util/Subsystem.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/SystemConfiguration.h b/Util/include/Poco/Util/SystemConfiguration.h old mode 100644 new mode 100755 index 2d76ce88d..22458f4fe --- a/Util/include/Poco/Util/SystemConfiguration.h +++ b/Util/include/Poco/Util/SystemConfiguration.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/Timer.h b/Util/include/Poco/Util/Timer.h old mode 100644 new mode 100755 index 3abd8b9a3..6431df563 --- a/Util/include/Poco/Util/Timer.h +++ b/Util/include/Poco/Util/Timer.h @@ -12,27 +12,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/TimerTask.h b/Util/include/Poco/Util/TimerTask.h old mode 100644 new mode 100755 index 529afe302..ae1bce3ad --- a/Util/include/Poco/Util/TimerTask.h +++ b/Util/include/Poco/Util/TimerTask.h @@ -12,27 +12,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/TimerTaskAdapter.h b/Util/include/Poco/Util/TimerTaskAdapter.h old mode 100644 new mode 100755 index 2ddab6138..ef4a5e01a --- a/Util/include/Poco/Util/TimerTaskAdapter.h +++ b/Util/include/Poco/Util/TimerTaskAdapter.h @@ -12,27 +12,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/Units.h b/Util/include/Poco/Util/Units.h old mode 100644 new mode 100755 index 73060cb73..2be4abd8a --- a/Util/include/Poco/Util/Units.h +++ b/Util/include/Poco/Util/Units.h @@ -12,27 +12,7 @@ // Copyright (c) 2007-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // // Adapted for POCO from the following source: // diff --git a/Util/include/Poco/Util/Util.h b/Util/include/Poco/Util/Util.h old mode 100644 new mode 100755 index b85418e7b..2cb66471c --- a/Util/include/Poco/Util/Util.h +++ b/Util/include/Poco/Util/Util.h @@ -14,27 +14,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/Validator.h b/Util/include/Poco/Util/Validator.h old mode 100644 new mode 100755 index 062deee44..c80e5ec3d --- a/Util/include/Poco/Util/Validator.h +++ b/Util/include/Poco/Util/Validator.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/WinRegistryConfiguration.h b/Util/include/Poco/Util/WinRegistryConfiguration.h old mode 100644 new mode 100755 index aeab9bb07..fbbbd0071 --- a/Util/include/Poco/Util/WinRegistryConfiguration.h +++ b/Util/include/Poco/Util/WinRegistryConfiguration.h @@ -12,27 +12,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/WinRegistryKey.h b/Util/include/Poco/Util/WinRegistryKey.h old mode 100644 new mode 100755 index 8c68527dc..7e9c66737 --- a/Util/include/Poco/Util/WinRegistryKey.h +++ b/Util/include/Poco/Util/WinRegistryKey.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/WinService.h b/Util/include/Poco/Util/WinService.h old mode 100644 new mode 100755 index de1eecf4e..ffd32d5ee --- a/Util/include/Poco/Util/WinService.h +++ b/Util/include/Poco/Util/WinService.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/include/Poco/Util/XMLConfiguration.h b/Util/include/Poco/Util/XMLConfiguration.h old mode 100644 new mode 100755 index 20089e1cf..539e44df1 --- a/Util/include/Poco/Util/XMLConfiguration.h +++ b/Util/include/Poco/Util/XMLConfiguration.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/samples/SampleApp/src/SampleApp.cpp b/Util/samples/SampleApp/src/SampleApp.cpp old mode 100644 new mode 100755 index 9af4d73ae..f0579a413 --- a/Util/samples/SampleApp/src/SampleApp.cpp +++ b/Util/samples/SampleApp/src/SampleApp.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/samples/SampleServer/src/SampleServer.cpp b/Util/samples/SampleServer/src/SampleServer.cpp old mode 100644 new mode 100755 index 905255184..c7b2a4636 --- a/Util/samples/SampleServer/src/SampleServer.cpp +++ b/Util/samples/SampleServer/src/SampleServer.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/samples/Units/src/Units.cpp b/Util/samples/Units/src/Units.cpp old mode 100644 new mode 100755 index b66393c31..c636b0a77 --- a/Util/samples/Units/src/Units.cpp +++ b/Util/samples/Units/src/Units.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/samples/pkill/src/pkill.cpp b/Util/samples/pkill/src/pkill.cpp old mode 100644 new mode 100755 index 26cc3c9f3..57b2684b1 --- a/Util/samples/pkill/src/pkill.cpp +++ b/Util/samples/pkill/src/pkill.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/AbstractConfiguration.cpp b/Util/src/AbstractConfiguration.cpp old mode 100644 new mode 100755 index 7df5c68eb..d9981ead2 --- a/Util/src/AbstractConfiguration.cpp +++ b/Util/src/AbstractConfiguration.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/Application.cpp b/Util/src/Application.cpp old mode 100644 new mode 100755 index 423da467c..bba976495 --- a/Util/src/Application.cpp +++ b/Util/src/Application.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/ConfigurationMapper.cpp b/Util/src/ConfigurationMapper.cpp old mode 100644 new mode 100755 index 7a61b7e64..1abe441e6 --- a/Util/src/ConfigurationMapper.cpp +++ b/Util/src/ConfigurationMapper.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/ConfigurationView.cpp b/Util/src/ConfigurationView.cpp old mode 100644 new mode 100755 index 96bf9c24b..d1c01a7f3 --- a/Util/src/ConfigurationView.cpp +++ b/Util/src/ConfigurationView.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/FilesystemConfiguration.cpp b/Util/src/FilesystemConfiguration.cpp old mode 100644 new mode 100755 index 3b90f51c8..de44fd986 --- a/Util/src/FilesystemConfiguration.cpp +++ b/Util/src/FilesystemConfiguration.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/HelpFormatter.cpp b/Util/src/HelpFormatter.cpp old mode 100644 new mode 100755 index e2257d2b7..c2d1958b8 --- a/Util/src/HelpFormatter.cpp +++ b/Util/src/HelpFormatter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/IniFileConfiguration.cpp b/Util/src/IniFileConfiguration.cpp old mode 100644 new mode 100755 index f6136ce10..45d371492 --- a/Util/src/IniFileConfiguration.cpp +++ b/Util/src/IniFileConfiguration.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/IntValidator.cpp b/Util/src/IntValidator.cpp old mode 100644 new mode 100755 index 3102fa391..6b555a3b7 --- a/Util/src/IntValidator.cpp +++ b/Util/src/IntValidator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/JSONConfiguration.cpp b/Util/src/JSONConfiguration.cpp old mode 100644 new mode 100755 index 2b830ef28..443938f8d --- a/Util/src/JSONConfiguration.cpp +++ b/Util/src/JSONConfiguration.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/LayeredConfiguration.cpp b/Util/src/LayeredConfiguration.cpp old mode 100644 new mode 100755 index 81cc48ac1..14bbeea1e --- a/Util/src/LayeredConfiguration.cpp +++ b/Util/src/LayeredConfiguration.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/LoggingConfigurator.cpp b/Util/src/LoggingConfigurator.cpp old mode 100644 new mode 100755 index 6bc6bae56..d50c5b8ee --- a/Util/src/LoggingConfigurator.cpp +++ b/Util/src/LoggingConfigurator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/LoggingSubsystem.cpp b/Util/src/LoggingSubsystem.cpp old mode 100644 new mode 100755 index e2392998d..76da60be5 --- a/Util/src/LoggingSubsystem.cpp +++ b/Util/src/LoggingSubsystem.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/MapConfiguration.cpp b/Util/src/MapConfiguration.cpp old mode 100644 new mode 100755 index 375ecd8d9..a5ef5dade --- a/Util/src/MapConfiguration.cpp +++ b/Util/src/MapConfiguration.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/Option.cpp b/Util/src/Option.cpp old mode 100644 new mode 100755 index 89b8719d2..1d316aa0d --- a/Util/src/Option.cpp +++ b/Util/src/Option.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/OptionCallback.cpp b/Util/src/OptionCallback.cpp old mode 100644 new mode 100755 index 36e18e649..c31560fdb --- a/Util/src/OptionCallback.cpp +++ b/Util/src/OptionCallback.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/OptionException.cpp b/Util/src/OptionException.cpp old mode 100644 new mode 100755 index 9a2f41213..0d8a9ef9a --- a/Util/src/OptionException.cpp +++ b/Util/src/OptionException.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/OptionProcessor.cpp b/Util/src/OptionProcessor.cpp old mode 100644 new mode 100755 index deec45589..f2b3694fc --- a/Util/src/OptionProcessor.cpp +++ b/Util/src/OptionProcessor.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/OptionSet.cpp b/Util/src/OptionSet.cpp old mode 100644 new mode 100755 index ae2e7f8c2..b8a4071e8 --- a/Util/src/OptionSet.cpp +++ b/Util/src/OptionSet.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/PropertyFileConfiguration.cpp b/Util/src/PropertyFileConfiguration.cpp old mode 100644 new mode 100755 index 5d69468c7..c34fadd9c --- a/Util/src/PropertyFileConfiguration.cpp +++ b/Util/src/PropertyFileConfiguration.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/RegExpValidator.cpp b/Util/src/RegExpValidator.cpp old mode 100644 new mode 100755 index b0ca5e9d7..437a4e890 --- a/Util/src/RegExpValidator.cpp +++ b/Util/src/RegExpValidator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/ServerApplication.cpp b/Util/src/ServerApplication.cpp old mode 100644 new mode 100755 index d9a2883e7..caee6eecd --- a/Util/src/ServerApplication.cpp +++ b/Util/src/ServerApplication.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/Subsystem.cpp b/Util/src/Subsystem.cpp old mode 100644 new mode 100755 index 81a2106e6..2b9c8229c --- a/Util/src/Subsystem.cpp +++ b/Util/src/Subsystem.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/SystemConfiguration.cpp b/Util/src/SystemConfiguration.cpp old mode 100644 new mode 100755 index bcc187219..eca32a3d9 --- a/Util/src/SystemConfiguration.cpp +++ b/Util/src/SystemConfiguration.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/Timer.cpp b/Util/src/Timer.cpp old mode 100644 new mode 100755 index e99c2b6a9..8c5588cea --- a/Util/src/Timer.cpp +++ b/Util/src/Timer.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/TimerTask.cpp b/Util/src/TimerTask.cpp old mode 100644 new mode 100755 index 66eab0979..89c5ac2d0 --- a/Util/src/TimerTask.cpp +++ b/Util/src/TimerTask.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/Validator.cpp b/Util/src/Validator.cpp old mode 100644 new mode 100755 index 032dad65d..2465e10db --- a/Util/src/Validator.cpp +++ b/Util/src/Validator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/WinRegistryConfiguration.cpp b/Util/src/WinRegistryConfiguration.cpp old mode 100644 new mode 100755 index 0c89ee5bb..11d55f155 --- a/Util/src/WinRegistryConfiguration.cpp +++ b/Util/src/WinRegistryConfiguration.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/WinRegistryKey.cpp b/Util/src/WinRegistryKey.cpp old mode 100644 new mode 100755 index 13dff109d..6eaf31229 --- a/Util/src/WinRegistryKey.cpp +++ b/Util/src/WinRegistryKey.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/WinService.cpp b/Util/src/WinService.cpp old mode 100644 new mode 100755 index 95a8276d6..bba8fae7c --- a/Util/src/WinService.cpp +++ b/Util/src/WinService.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/src/XMLConfiguration.cpp b/Util/src/XMLConfiguration.cpp old mode 100644 new mode 100755 index cff6e30cb..b039da783 --- a/Util/src/XMLConfiguration.cpp +++ b/Util/src/XMLConfiguration.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/AbstractConfigurationTest.cpp b/Util/testsuite/src/AbstractConfigurationTest.cpp old mode 100644 new mode 100755 index c71408a14..c74ca5c0d --- a/Util/testsuite/src/AbstractConfigurationTest.cpp +++ b/Util/testsuite/src/AbstractConfigurationTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/AbstractConfigurationTest.h b/Util/testsuite/src/AbstractConfigurationTest.h old mode 100644 new mode 100755 index d00327935..b6eb0c954 --- a/Util/testsuite/src/AbstractConfigurationTest.h +++ b/Util/testsuite/src/AbstractConfigurationTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/ConfigurationMapperTest.cpp b/Util/testsuite/src/ConfigurationMapperTest.cpp old mode 100644 new mode 100755 index 32d753590..abf854b70 --- a/Util/testsuite/src/ConfigurationMapperTest.cpp +++ b/Util/testsuite/src/ConfigurationMapperTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/ConfigurationMapperTest.h b/Util/testsuite/src/ConfigurationMapperTest.h old mode 100644 new mode 100755 index 2b460f2c6..d95cddaa0 --- a/Util/testsuite/src/ConfigurationMapperTest.h +++ b/Util/testsuite/src/ConfigurationMapperTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/ConfigurationTestSuite.cpp b/Util/testsuite/src/ConfigurationTestSuite.cpp old mode 100644 new mode 100755 index 7d06de284..a62afb742 --- a/Util/testsuite/src/ConfigurationTestSuite.cpp +++ b/Util/testsuite/src/ConfigurationTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/ConfigurationTestSuite.h b/Util/testsuite/src/ConfigurationTestSuite.h old mode 100644 new mode 100755 index 9d239cc92..2bc60fe63 --- a/Util/testsuite/src/ConfigurationTestSuite.h +++ b/Util/testsuite/src/ConfigurationTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/ConfigurationViewTest.cpp b/Util/testsuite/src/ConfigurationViewTest.cpp old mode 100644 new mode 100755 index 1f6714f56..db73b4f5b --- a/Util/testsuite/src/ConfigurationViewTest.cpp +++ b/Util/testsuite/src/ConfigurationViewTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/ConfigurationViewTest.h b/Util/testsuite/src/ConfigurationViewTest.h old mode 100644 new mode 100755 index d286d7a19..237477141 --- a/Util/testsuite/src/ConfigurationViewTest.h +++ b/Util/testsuite/src/ConfigurationViewTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/Driver.cpp b/Util/testsuite/src/Driver.cpp old mode 100644 new mode 100755 index 9865370a3..89e235d55 --- a/Util/testsuite/src/Driver.cpp +++ b/Util/testsuite/src/Driver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/FilesystemConfigurationTest.cpp b/Util/testsuite/src/FilesystemConfigurationTest.cpp old mode 100644 new mode 100755 index d3660cf5f..b2eee7a66 --- a/Util/testsuite/src/FilesystemConfigurationTest.cpp +++ b/Util/testsuite/src/FilesystemConfigurationTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/FilesystemConfigurationTest.h b/Util/testsuite/src/FilesystemConfigurationTest.h old mode 100644 new mode 100755 index a63aabce7..56c213bce --- a/Util/testsuite/src/FilesystemConfigurationTest.h +++ b/Util/testsuite/src/FilesystemConfigurationTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/HelpFormatterTest.cpp b/Util/testsuite/src/HelpFormatterTest.cpp old mode 100644 new mode 100755 index 47b0b7306..091f57482 --- a/Util/testsuite/src/HelpFormatterTest.cpp +++ b/Util/testsuite/src/HelpFormatterTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/HelpFormatterTest.h b/Util/testsuite/src/HelpFormatterTest.h old mode 100644 new mode 100755 index e36154e5e..5b32526d9 --- a/Util/testsuite/src/HelpFormatterTest.h +++ b/Util/testsuite/src/HelpFormatterTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/IniFileConfigurationTest.cpp b/Util/testsuite/src/IniFileConfigurationTest.cpp old mode 100644 new mode 100755 index 27f074505..6a8957fbf --- a/Util/testsuite/src/IniFileConfigurationTest.cpp +++ b/Util/testsuite/src/IniFileConfigurationTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/IniFileConfigurationTest.h b/Util/testsuite/src/IniFileConfigurationTest.h old mode 100644 new mode 100755 index 3131e38ba..053f7ee05 --- a/Util/testsuite/src/IniFileConfigurationTest.h +++ b/Util/testsuite/src/IniFileConfigurationTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/JSONConfigurationTest.cpp b/Util/testsuite/src/JSONConfigurationTest.cpp old mode 100644 new mode 100755 index 82d348325..e1a90fa1d --- a/Util/testsuite/src/JSONConfigurationTest.cpp +++ b/Util/testsuite/src/JSONConfigurationTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/JSONConfigurationTest.h b/Util/testsuite/src/JSONConfigurationTest.h old mode 100644 new mode 100755 index 5876f7e6d..ee5b80d44 --- a/Util/testsuite/src/JSONConfigurationTest.h +++ b/Util/testsuite/src/JSONConfigurationTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2012, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/LayeredConfigurationTest.cpp b/Util/testsuite/src/LayeredConfigurationTest.cpp old mode 100644 new mode 100755 index f5f198fea..693cdcc01 --- a/Util/testsuite/src/LayeredConfigurationTest.cpp +++ b/Util/testsuite/src/LayeredConfigurationTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/LayeredConfigurationTest.h b/Util/testsuite/src/LayeredConfigurationTest.h old mode 100644 new mode 100755 index 59afd264f..72f58ca80 --- a/Util/testsuite/src/LayeredConfigurationTest.h +++ b/Util/testsuite/src/LayeredConfigurationTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/LoggingConfiguratorTest.cpp b/Util/testsuite/src/LoggingConfiguratorTest.cpp old mode 100644 new mode 100755 index 2bfdad6f5..d1dc56668 --- a/Util/testsuite/src/LoggingConfiguratorTest.cpp +++ b/Util/testsuite/src/LoggingConfiguratorTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/LoggingConfiguratorTest.h b/Util/testsuite/src/LoggingConfiguratorTest.h old mode 100644 new mode 100755 index 418e73fbe..cbd03a396 --- a/Util/testsuite/src/LoggingConfiguratorTest.h +++ b/Util/testsuite/src/LoggingConfiguratorTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/MapConfigurationTest.cpp b/Util/testsuite/src/MapConfigurationTest.cpp old mode 100644 new mode 100755 index ad8f8629b..26064e2df --- a/Util/testsuite/src/MapConfigurationTest.cpp +++ b/Util/testsuite/src/MapConfigurationTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/MapConfigurationTest.h b/Util/testsuite/src/MapConfigurationTest.h old mode 100644 new mode 100755 index 901ae963e..74f0d1700 --- a/Util/testsuite/src/MapConfigurationTest.h +++ b/Util/testsuite/src/MapConfigurationTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/OptionProcessorTest.cpp b/Util/testsuite/src/OptionProcessorTest.cpp old mode 100644 new mode 100755 index 5402aa232..708c64b7c --- a/Util/testsuite/src/OptionProcessorTest.cpp +++ b/Util/testsuite/src/OptionProcessorTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/OptionProcessorTest.h b/Util/testsuite/src/OptionProcessorTest.h old mode 100644 new mode 100755 index ed6cb208c..f8aef18ad --- a/Util/testsuite/src/OptionProcessorTest.h +++ b/Util/testsuite/src/OptionProcessorTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/OptionSetTest.cpp b/Util/testsuite/src/OptionSetTest.cpp old mode 100644 new mode 100755 index f90dfb45e..a4108e9d9 --- a/Util/testsuite/src/OptionSetTest.cpp +++ b/Util/testsuite/src/OptionSetTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/OptionSetTest.h b/Util/testsuite/src/OptionSetTest.h old mode 100644 new mode 100755 index 52d822c60..e3b806814 --- a/Util/testsuite/src/OptionSetTest.h +++ b/Util/testsuite/src/OptionSetTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/OptionTest.cpp b/Util/testsuite/src/OptionTest.cpp old mode 100644 new mode 100755 index f4b2407ae..11cdeb2e9 --- a/Util/testsuite/src/OptionTest.cpp +++ b/Util/testsuite/src/OptionTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/OptionTest.h b/Util/testsuite/src/OptionTest.h old mode 100644 new mode 100755 index f700a621c..14e7b246d --- a/Util/testsuite/src/OptionTest.h +++ b/Util/testsuite/src/OptionTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/OptionsTestSuite.cpp b/Util/testsuite/src/OptionsTestSuite.cpp old mode 100644 new mode 100755 index 066dde7c9..a6e0b92d1 --- a/Util/testsuite/src/OptionsTestSuite.cpp +++ b/Util/testsuite/src/OptionsTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/OptionsTestSuite.h b/Util/testsuite/src/OptionsTestSuite.h old mode 100644 new mode 100755 index 54000e066..e33e9fae4 --- a/Util/testsuite/src/OptionsTestSuite.h +++ b/Util/testsuite/src/OptionsTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/PropertyFileConfigurationTest.cpp b/Util/testsuite/src/PropertyFileConfigurationTest.cpp old mode 100644 new mode 100755 index 0fec2ea7e..1356015b0 --- a/Util/testsuite/src/PropertyFileConfigurationTest.cpp +++ b/Util/testsuite/src/PropertyFileConfigurationTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/PropertyFileConfigurationTest.h b/Util/testsuite/src/PropertyFileConfigurationTest.h old mode 100644 new mode 100755 index dd7d7bf72..203d77a35 --- a/Util/testsuite/src/PropertyFileConfigurationTest.h +++ b/Util/testsuite/src/PropertyFileConfigurationTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/SystemConfigurationTest.cpp b/Util/testsuite/src/SystemConfigurationTest.cpp old mode 100644 new mode 100755 index 9c0afcb13..dc368a310 --- a/Util/testsuite/src/SystemConfigurationTest.cpp +++ b/Util/testsuite/src/SystemConfigurationTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/SystemConfigurationTest.h b/Util/testsuite/src/SystemConfigurationTest.h old mode 100644 new mode 100755 index 71ee529cb..65ee5b77f --- a/Util/testsuite/src/SystemConfigurationTest.h +++ b/Util/testsuite/src/SystemConfigurationTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/TimerTest.cpp b/Util/testsuite/src/TimerTest.cpp old mode 100644 new mode 100755 index f857cd305..d3bda092e --- a/Util/testsuite/src/TimerTest.cpp +++ b/Util/testsuite/src/TimerTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/TimerTest.h b/Util/testsuite/src/TimerTest.h old mode 100644 new mode 100755 index 2c9f458b3..50142b83c --- a/Util/testsuite/src/TimerTest.h +++ b/Util/testsuite/src/TimerTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/TimerTestSuite.cpp b/Util/testsuite/src/TimerTestSuite.cpp old mode 100644 new mode 100755 index 0815eaa4c..297ea4528 --- a/Util/testsuite/src/TimerTestSuite.cpp +++ b/Util/testsuite/src/TimerTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/TimerTestSuite.h b/Util/testsuite/src/TimerTestSuite.h old mode 100644 new mode 100755 index d9327d34a..34b663314 --- a/Util/testsuite/src/TimerTestSuite.h +++ b/Util/testsuite/src/TimerTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2009, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/UtilTestSuite.cpp b/Util/testsuite/src/UtilTestSuite.cpp old mode 100644 new mode 100755 index 33a35a78d..ba507f369 --- a/Util/testsuite/src/UtilTestSuite.cpp +++ b/Util/testsuite/src/UtilTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/UtilTestSuite.h b/Util/testsuite/src/UtilTestSuite.h old mode 100644 new mode 100755 index 9de31e49f..fe5d6b0b9 --- a/Util/testsuite/src/UtilTestSuite.h +++ b/Util/testsuite/src/UtilTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/ValidatorTest.cpp b/Util/testsuite/src/ValidatorTest.cpp old mode 100644 new mode 100755 index 20fb3b21d..54066bb87 --- a/Util/testsuite/src/ValidatorTest.cpp +++ b/Util/testsuite/src/ValidatorTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/ValidatorTest.h b/Util/testsuite/src/ValidatorTest.h old mode 100644 new mode 100755 index 06acf1a07..7bc1d4223 --- a/Util/testsuite/src/ValidatorTest.h +++ b/Util/testsuite/src/ValidatorTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/WinCEDriver.cpp b/Util/testsuite/src/WinCEDriver.cpp old mode 100644 new mode 100755 index 1602fd49e..9af67a695 --- a/Util/testsuite/src/WinCEDriver.cpp +++ b/Util/testsuite/src/WinCEDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/WinConfigurationTest.cpp b/Util/testsuite/src/WinConfigurationTest.cpp old mode 100644 new mode 100755 index c9eedb053..956fb7ff1 --- a/Util/testsuite/src/WinConfigurationTest.cpp +++ b/Util/testsuite/src/WinConfigurationTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/WinConfigurationTest.h b/Util/testsuite/src/WinConfigurationTest.h old mode 100644 new mode 100755 index 17cb67d01..23fc13b4a --- a/Util/testsuite/src/WinConfigurationTest.h +++ b/Util/testsuite/src/WinConfigurationTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/WinDriver.cpp b/Util/testsuite/src/WinDriver.cpp old mode 100644 new mode 100755 index 3e52b8af5..1beae93d6 --- a/Util/testsuite/src/WinDriver.cpp +++ b/Util/testsuite/src/WinDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/WinRegistryTest.cpp b/Util/testsuite/src/WinRegistryTest.cpp old mode 100644 new mode 100755 index 1537554fa..8fc415cb4 --- a/Util/testsuite/src/WinRegistryTest.cpp +++ b/Util/testsuite/src/WinRegistryTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/WinRegistryTest.h b/Util/testsuite/src/WinRegistryTest.h old mode 100644 new mode 100755 index 966985e17..b006deb4f --- a/Util/testsuite/src/WinRegistryTest.h +++ b/Util/testsuite/src/WinRegistryTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/WindowsTestSuite.cpp b/Util/testsuite/src/WindowsTestSuite.cpp old mode 100644 new mode 100755 index 125002b03..ecccbf1f4 --- a/Util/testsuite/src/WindowsTestSuite.cpp +++ b/Util/testsuite/src/WindowsTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/WindowsTestSuite.h b/Util/testsuite/src/WindowsTestSuite.h old mode 100644 new mode 100755 index f12bfe441..4bbbb0065 --- a/Util/testsuite/src/WindowsTestSuite.h +++ b/Util/testsuite/src/WindowsTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/XMLConfigurationTest.cpp b/Util/testsuite/src/XMLConfigurationTest.cpp old mode 100644 new mode 100755 index 018dcc4ab..7f3f0862c --- a/Util/testsuite/src/XMLConfigurationTest.cpp +++ b/Util/testsuite/src/XMLConfigurationTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Util/testsuite/src/XMLConfigurationTest.h b/Util/testsuite/src/XMLConfigurationTest.h old mode 100644 new mode 100755 index af6122085..799918f9c --- a/Util/testsuite/src/XMLConfigurationTest.h +++ b/Util/testsuite/src/XMLConfigurationTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/AbstractContainerNode.h b/XML/include/Poco/DOM/AbstractContainerNode.h old mode 100644 new mode 100755 index 1ac31de5f..77dcb860d --- a/XML/include/Poco/DOM/AbstractContainerNode.h +++ b/XML/include/Poco/DOM/AbstractContainerNode.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/AbstractNode.h b/XML/include/Poco/DOM/AbstractNode.h old mode 100644 new mode 100755 index d1446bf07..a737941b6 --- a/XML/include/Poco/DOM/AbstractNode.h +++ b/XML/include/Poco/DOM/AbstractNode.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/Attr.h b/XML/include/Poco/DOM/Attr.h old mode 100644 new mode 100755 index b368b35c5..3b878d17f --- a/XML/include/Poco/DOM/Attr.h +++ b/XML/include/Poco/DOM/Attr.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/AttrMap.h b/XML/include/Poco/DOM/AttrMap.h old mode 100644 new mode 100755 index ad9ce9fd8..524f26cba --- a/XML/include/Poco/DOM/AttrMap.h +++ b/XML/include/Poco/DOM/AttrMap.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/AutoPtr.h b/XML/include/Poco/DOM/AutoPtr.h old mode 100644 new mode 100755 index 4f8b176a1..5349de8c4 --- a/XML/include/Poco/DOM/AutoPtr.h +++ b/XML/include/Poco/DOM/AutoPtr.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/CDATASection.h b/XML/include/Poco/DOM/CDATASection.h old mode 100644 new mode 100755 index 0d2c8a377..e79d6984a --- a/XML/include/Poco/DOM/CDATASection.h +++ b/XML/include/Poco/DOM/CDATASection.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/CharacterData.h b/XML/include/Poco/DOM/CharacterData.h old mode 100644 new mode 100755 index 94b7d91a2..2036712ae --- a/XML/include/Poco/DOM/CharacterData.h +++ b/XML/include/Poco/DOM/CharacterData.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/ChildNodesList.h b/XML/include/Poco/DOM/ChildNodesList.h old mode 100644 new mode 100755 index a34e5b630..9cf1ebd67 --- a/XML/include/Poco/DOM/ChildNodesList.h +++ b/XML/include/Poco/DOM/ChildNodesList.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/Comment.h b/XML/include/Poco/DOM/Comment.h old mode 100644 new mode 100755 index c399573af..7a8edaa25 --- a/XML/include/Poco/DOM/Comment.h +++ b/XML/include/Poco/DOM/Comment.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/DOMBuilder.h b/XML/include/Poco/DOM/DOMBuilder.h old mode 100644 new mode 100755 index ce7dfaced..fa282c1b0 --- a/XML/include/Poco/DOM/DOMBuilder.h +++ b/XML/include/Poco/DOM/DOMBuilder.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/DOMException.h b/XML/include/Poco/DOM/DOMException.h old mode 100644 new mode 100755 index 54aea16af..ae1dce53d --- a/XML/include/Poco/DOM/DOMException.h +++ b/XML/include/Poco/DOM/DOMException.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/DOMImplementation.h b/XML/include/Poco/DOM/DOMImplementation.h old mode 100644 new mode 100755 index 9e69b7d16..75447f9b0 --- a/XML/include/Poco/DOM/DOMImplementation.h +++ b/XML/include/Poco/DOM/DOMImplementation.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/DOMObject.h b/XML/include/Poco/DOM/DOMObject.h old mode 100644 new mode 100755 index 9ef2501a9..a48e82d25 --- a/XML/include/Poco/DOM/DOMObject.h +++ b/XML/include/Poco/DOM/DOMObject.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/DOMParser.h b/XML/include/Poco/DOM/DOMParser.h old mode 100644 new mode 100755 index d0735422f..440b60574 --- a/XML/include/Poco/DOM/DOMParser.h +++ b/XML/include/Poco/DOM/DOMParser.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/DOMSerializer.h b/XML/include/Poco/DOM/DOMSerializer.h old mode 100644 new mode 100755 index 76aabcda1..fe18319a4 --- a/XML/include/Poco/DOM/DOMSerializer.h +++ b/XML/include/Poco/DOM/DOMSerializer.h @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/DOMWriter.h b/XML/include/Poco/DOM/DOMWriter.h old mode 100644 new mode 100755 index 1cf8939e8..ceae43d6f --- a/XML/include/Poco/DOM/DOMWriter.h +++ b/XML/include/Poco/DOM/DOMWriter.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/DTDMap.h b/XML/include/Poco/DOM/DTDMap.h old mode 100644 new mode 100755 index a44b9f0df..a3a925fce --- a/XML/include/Poco/DOM/DTDMap.h +++ b/XML/include/Poco/DOM/DTDMap.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/Document.h b/XML/include/Poco/DOM/Document.h old mode 100644 new mode 100755 index 9792d20dc..407b372bf --- a/XML/include/Poco/DOM/Document.h +++ b/XML/include/Poco/DOM/Document.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/DocumentEvent.h b/XML/include/Poco/DOM/DocumentEvent.h old mode 100644 new mode 100755 index 3105fb382..fd03cd0bb --- a/XML/include/Poco/DOM/DocumentEvent.h +++ b/XML/include/Poco/DOM/DocumentEvent.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/DocumentFragment.h b/XML/include/Poco/DOM/DocumentFragment.h old mode 100644 new mode 100755 index d6b4f0029..27cbc4c6b --- a/XML/include/Poco/DOM/DocumentFragment.h +++ b/XML/include/Poco/DOM/DocumentFragment.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/DocumentType.h b/XML/include/Poco/DOM/DocumentType.h old mode 100644 new mode 100755 index 870aa7019..35ef46a4c --- a/XML/include/Poco/DOM/DocumentType.h +++ b/XML/include/Poco/DOM/DocumentType.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/Element.h b/XML/include/Poco/DOM/Element.h old mode 100644 new mode 100755 index 48c1ffed6..ca1b4806c --- a/XML/include/Poco/DOM/Element.h +++ b/XML/include/Poco/DOM/Element.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/ElementsByTagNameList.h b/XML/include/Poco/DOM/ElementsByTagNameList.h old mode 100644 new mode 100755 index 56c84763a..885293ed6 --- a/XML/include/Poco/DOM/ElementsByTagNameList.h +++ b/XML/include/Poco/DOM/ElementsByTagNameList.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/Entity.h b/XML/include/Poco/DOM/Entity.h old mode 100644 new mode 100755 index 20e89a659..9ade38e0d --- a/XML/include/Poco/DOM/Entity.h +++ b/XML/include/Poco/DOM/Entity.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/EntityReference.h b/XML/include/Poco/DOM/EntityReference.h old mode 100644 new mode 100755 index 811d98a72..32ef17d91 --- a/XML/include/Poco/DOM/EntityReference.h +++ b/XML/include/Poco/DOM/EntityReference.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/Event.h b/XML/include/Poco/DOM/Event.h old mode 100644 new mode 100755 index b42198070..a437ebc94 --- a/XML/include/Poco/DOM/Event.h +++ b/XML/include/Poco/DOM/Event.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/EventDispatcher.h b/XML/include/Poco/DOM/EventDispatcher.h old mode 100644 new mode 100755 index dc0618368..f0c2570c2 --- a/XML/include/Poco/DOM/EventDispatcher.h +++ b/XML/include/Poco/DOM/EventDispatcher.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/EventException.h b/XML/include/Poco/DOM/EventException.h old mode 100644 new mode 100755 index cc75294e0..05d0a740f --- a/XML/include/Poco/DOM/EventException.h +++ b/XML/include/Poco/DOM/EventException.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/EventListener.h b/XML/include/Poco/DOM/EventListener.h old mode 100644 new mode 100755 index 6d2c4a0db..3ca7c5f1b --- a/XML/include/Poco/DOM/EventListener.h +++ b/XML/include/Poco/DOM/EventListener.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/EventTarget.h b/XML/include/Poco/DOM/EventTarget.h old mode 100644 new mode 100755 index 07ba749bb..0be97e21b --- a/XML/include/Poco/DOM/EventTarget.h +++ b/XML/include/Poco/DOM/EventTarget.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/MutationEvent.h b/XML/include/Poco/DOM/MutationEvent.h old mode 100644 new mode 100755 index 5c0b72287..5eebb0de2 --- a/XML/include/Poco/DOM/MutationEvent.h +++ b/XML/include/Poco/DOM/MutationEvent.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/NamedNodeMap.h b/XML/include/Poco/DOM/NamedNodeMap.h old mode 100644 new mode 100755 index 303efd570..6f1f5caba --- a/XML/include/Poco/DOM/NamedNodeMap.h +++ b/XML/include/Poco/DOM/NamedNodeMap.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/Node.h b/XML/include/Poco/DOM/Node.h old mode 100644 new mode 100755 index da42a8254..964b410ba --- a/XML/include/Poco/DOM/Node.h +++ b/XML/include/Poco/DOM/Node.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/NodeAppender.h b/XML/include/Poco/DOM/NodeAppender.h old mode 100644 new mode 100755 index 06720b0d3..22793430b --- a/XML/include/Poco/DOM/NodeAppender.h +++ b/XML/include/Poco/DOM/NodeAppender.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/NodeFilter.h b/XML/include/Poco/DOM/NodeFilter.h old mode 100644 new mode 100755 index 6065efc8d..b6c4da42c --- a/XML/include/Poco/DOM/NodeFilter.h +++ b/XML/include/Poco/DOM/NodeFilter.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/NodeIterator.h b/XML/include/Poco/DOM/NodeIterator.h old mode 100644 new mode 100755 index 6b71a3cfd..a9a4d010f --- a/XML/include/Poco/DOM/NodeIterator.h +++ b/XML/include/Poco/DOM/NodeIterator.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/NodeList.h b/XML/include/Poco/DOM/NodeList.h old mode 100644 new mode 100755 index 45f4e18df..59ca0a81b --- a/XML/include/Poco/DOM/NodeList.h +++ b/XML/include/Poco/DOM/NodeList.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/Notation.h b/XML/include/Poco/DOM/Notation.h old mode 100644 new mode 100755 index 08470c246..990208c3b --- a/XML/include/Poco/DOM/Notation.h +++ b/XML/include/Poco/DOM/Notation.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/ProcessingInstruction.h b/XML/include/Poco/DOM/ProcessingInstruction.h old mode 100644 new mode 100755 index 8dfd7ffb2..f0f5c62f0 --- a/XML/include/Poco/DOM/ProcessingInstruction.h +++ b/XML/include/Poco/DOM/ProcessingInstruction.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/Text.h b/XML/include/Poco/DOM/Text.h old mode 100644 new mode 100755 index dce0504b8..ebc90bc0e --- a/XML/include/Poco/DOM/Text.h +++ b/XML/include/Poco/DOM/Text.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/DOM/TreeWalker.h b/XML/include/Poco/DOM/TreeWalker.h old mode 100644 new mode 100755 index a79bd9c1b..bdb579be6 --- a/XML/include/Poco/DOM/TreeWalker.h +++ b/XML/include/Poco/DOM/TreeWalker.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/Attributes.h b/XML/include/Poco/SAX/Attributes.h old mode 100644 new mode 100755 index cb5ba0e70..706eb570c --- a/XML/include/Poco/SAX/Attributes.h +++ b/XML/include/Poco/SAX/Attributes.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/AttributesImpl.h b/XML/include/Poco/SAX/AttributesImpl.h old mode 100644 new mode 100755 index 4501b66e1..eadc582d5 --- a/XML/include/Poco/SAX/AttributesImpl.h +++ b/XML/include/Poco/SAX/AttributesImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/ContentHandler.h b/XML/include/Poco/SAX/ContentHandler.h old mode 100644 new mode 100755 index 4952593c4..c4c48bf58 --- a/XML/include/Poco/SAX/ContentHandler.h +++ b/XML/include/Poco/SAX/ContentHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/DTDHandler.h b/XML/include/Poco/SAX/DTDHandler.h old mode 100644 new mode 100755 index b56f76ac1..d1ea246b5 --- a/XML/include/Poco/SAX/DTDHandler.h +++ b/XML/include/Poco/SAX/DTDHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/DeclHandler.h b/XML/include/Poco/SAX/DeclHandler.h old mode 100644 new mode 100755 index 261e84c7d..cedc2c8cd --- a/XML/include/Poco/SAX/DeclHandler.h +++ b/XML/include/Poco/SAX/DeclHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/DefaultHandler.h b/XML/include/Poco/SAX/DefaultHandler.h old mode 100644 new mode 100755 index d31db6c26..39a9ff181 --- a/XML/include/Poco/SAX/DefaultHandler.h +++ b/XML/include/Poco/SAX/DefaultHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/EntityResolver.h b/XML/include/Poco/SAX/EntityResolver.h old mode 100644 new mode 100755 index 1457f2d7f..df1432b14 --- a/XML/include/Poco/SAX/EntityResolver.h +++ b/XML/include/Poco/SAX/EntityResolver.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/EntityResolverImpl.h b/XML/include/Poco/SAX/EntityResolverImpl.h old mode 100644 new mode 100755 index 8919af6e1..672c92a90 --- a/XML/include/Poco/SAX/EntityResolverImpl.h +++ b/XML/include/Poco/SAX/EntityResolverImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/ErrorHandler.h b/XML/include/Poco/SAX/ErrorHandler.h old mode 100644 new mode 100755 index dc043a88b..e6636ab24 --- a/XML/include/Poco/SAX/ErrorHandler.h +++ b/XML/include/Poco/SAX/ErrorHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/InputSource.h b/XML/include/Poco/SAX/InputSource.h old mode 100644 new mode 100755 index a603066b8..479f8be25 --- a/XML/include/Poco/SAX/InputSource.h +++ b/XML/include/Poco/SAX/InputSource.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/LexicalHandler.h b/XML/include/Poco/SAX/LexicalHandler.h old mode 100644 new mode 100755 index b0d6639cb..51d0a3066 --- a/XML/include/Poco/SAX/LexicalHandler.h +++ b/XML/include/Poco/SAX/LexicalHandler.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/Locator.h b/XML/include/Poco/SAX/Locator.h old mode 100644 new mode 100755 index f162a4076..86a1107f4 --- a/XML/include/Poco/SAX/Locator.h +++ b/XML/include/Poco/SAX/Locator.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/LocatorImpl.h b/XML/include/Poco/SAX/LocatorImpl.h old mode 100644 new mode 100755 index 08a273403..ad65a6414 --- a/XML/include/Poco/SAX/LocatorImpl.h +++ b/XML/include/Poco/SAX/LocatorImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/NamespaceSupport.h b/XML/include/Poco/SAX/NamespaceSupport.h old mode 100644 new mode 100755 index 6f883bc32..6b4ca2b5e --- a/XML/include/Poco/SAX/NamespaceSupport.h +++ b/XML/include/Poco/SAX/NamespaceSupport.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/SAXException.h b/XML/include/Poco/SAX/SAXException.h old mode 100644 new mode 100755 index 5070f2f50..bb08ad96e --- a/XML/include/Poco/SAX/SAXException.h +++ b/XML/include/Poco/SAX/SAXException.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/SAXParser.h b/XML/include/Poco/SAX/SAXParser.h old mode 100644 new mode 100755 index 809b4b0b3..3e6d41877 --- a/XML/include/Poco/SAX/SAXParser.h +++ b/XML/include/Poco/SAX/SAXParser.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/WhitespaceFilter.h b/XML/include/Poco/SAX/WhitespaceFilter.h old mode 100644 new mode 100755 index 9a9f08130..abb840acb --- a/XML/include/Poco/SAX/WhitespaceFilter.h +++ b/XML/include/Poco/SAX/WhitespaceFilter.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/XMLFilter.h b/XML/include/Poco/SAX/XMLFilter.h old mode 100644 new mode 100755 index bfcd961e5..e4fdd4008 --- a/XML/include/Poco/SAX/XMLFilter.h +++ b/XML/include/Poco/SAX/XMLFilter.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/XMLFilterImpl.h b/XML/include/Poco/SAX/XMLFilterImpl.h old mode 100644 new mode 100755 index 3bf1810c3..936fcd6a3 --- a/XML/include/Poco/SAX/XMLFilterImpl.h +++ b/XML/include/Poco/SAX/XMLFilterImpl.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/SAX/XMLReader.h b/XML/include/Poco/SAX/XMLReader.h old mode 100644 new mode 100755 index 794ec7831..9316350a4 --- a/XML/include/Poco/SAX/XMLReader.h +++ b/XML/include/Poco/SAX/XMLReader.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/XML/Name.h b/XML/include/Poco/XML/Name.h old mode 100644 new mode 100755 index 4e2a8e58a..81aa123eb --- a/XML/include/Poco/XML/Name.h +++ b/XML/include/Poco/XML/Name.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/XML/NamePool.h b/XML/include/Poco/XML/NamePool.h old mode 100644 new mode 100755 index f078a968b..e7c976cfc --- a/XML/include/Poco/XML/NamePool.h +++ b/XML/include/Poco/XML/NamePool.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/XML/NamespaceStrategy.h b/XML/include/Poco/XML/NamespaceStrategy.h old mode 100644 new mode 100755 index 2e6741938..3aca2751a --- a/XML/include/Poco/XML/NamespaceStrategy.h +++ b/XML/include/Poco/XML/NamespaceStrategy.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/XML/ParserEngine.h b/XML/include/Poco/XML/ParserEngine.h old mode 100644 new mode 100755 index 03b272ba2..16c1b565d --- a/XML/include/Poco/XML/ParserEngine.h +++ b/XML/include/Poco/XML/ParserEngine.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 #ifndef XML_ParserEngine_INCLUDED diff --git a/XML/include/Poco/XML/XML.h b/XML/include/Poco/XML/XML.h old mode 100644 new mode 100755 index 175ab8399..4a8e55013 --- a/XML/include/Poco/XML/XML.h +++ b/XML/include/Poco/XML/XML.h @@ -14,27 +14,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/XML/XMLException.h b/XML/include/Poco/XML/XMLException.h old mode 100644 new mode 100755 index b4f22980d..e7e3b7572 --- a/XML/include/Poco/XML/XMLException.h +++ b/XML/include/Poco/XML/XMLException.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/XML/XMLStream.h b/XML/include/Poco/XML/XMLStream.h old mode 100644 new mode 100755 index a413a5583..1428a07ae --- a/XML/include/Poco/XML/XMLStream.h +++ b/XML/include/Poco/XML/XMLStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/XML/XMLString.h b/XML/include/Poco/XML/XMLString.h old mode 100644 new mode 100755 index 87dee79ab..d3ae102a1 --- a/XML/include/Poco/XML/XMLString.h +++ b/XML/include/Poco/XML/XMLString.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/include/Poco/XML/XMLWriter.h b/XML/include/Poco/XML/XMLWriter.h old mode 100644 new mode 100755 index 09fb591de..98ce5349e --- a/XML/include/Poco/XML/XMLWriter.h +++ b/XML/include/Poco/XML/XMLWriter.h @@ -12,27 +12,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/samples/DOMParser/src/DOMParser.cpp b/XML/samples/DOMParser/src/DOMParser.cpp old mode 100644 new mode 100755 index f815979ad..db8d626be --- a/XML/samples/DOMParser/src/DOMParser.cpp +++ b/XML/samples/DOMParser/src/DOMParser.cpp @@ -9,27 +9,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/samples/DOMWriter/src/DOMWriter.cpp b/XML/samples/DOMWriter/src/DOMWriter.cpp old mode 100644 new mode 100755 index 7d1917cdd..cc9255e66 --- a/XML/samples/DOMWriter/src/DOMWriter.cpp +++ b/XML/samples/DOMWriter/src/DOMWriter.cpp @@ -9,27 +9,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/samples/PrettyPrint/src/PrettyPrint.cpp b/XML/samples/PrettyPrint/src/PrettyPrint.cpp old mode 100644 new mode 100755 index 369e745bf..0f6a2eb93 --- a/XML/samples/PrettyPrint/src/PrettyPrint.cpp +++ b/XML/samples/PrettyPrint/src/PrettyPrint.cpp @@ -9,27 +9,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/samples/SAXParser/src/SAXParser.cpp b/XML/samples/SAXParser/src/SAXParser.cpp old mode 100644 new mode 100755 index 373acd014..427ad1f24 --- a/XML/samples/SAXParser/src/SAXParser.cpp +++ b/XML/samples/SAXParser/src/SAXParser.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/AbstractContainerNode.cpp b/XML/src/AbstractContainerNode.cpp old mode 100644 new mode 100755 index 69a221c2f..c232ff738 --- a/XML/src/AbstractContainerNode.cpp +++ b/XML/src/AbstractContainerNode.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/AbstractNode.cpp b/XML/src/AbstractNode.cpp old mode 100644 new mode 100755 index b7b1a441c..fd7902f32 --- a/XML/src/AbstractNode.cpp +++ b/XML/src/AbstractNode.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/Attr.cpp b/XML/src/Attr.cpp old mode 100644 new mode 100755 index 639b24c64..ecd4d9714 --- a/XML/src/Attr.cpp +++ b/XML/src/Attr.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/AttrMap.cpp b/XML/src/AttrMap.cpp old mode 100644 new mode 100755 index 127b0c2d2..f9d752311 --- a/XML/src/AttrMap.cpp +++ b/XML/src/AttrMap.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/Attributes.cpp b/XML/src/Attributes.cpp old mode 100644 new mode 100755 index 205a6ebfd..992052cc0 --- a/XML/src/Attributes.cpp +++ b/XML/src/Attributes.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/AttributesImpl.cpp b/XML/src/AttributesImpl.cpp old mode 100644 new mode 100755 index bac34554e..d458cfe28 --- a/XML/src/AttributesImpl.cpp +++ b/XML/src/AttributesImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/CDATASection.cpp b/XML/src/CDATASection.cpp old mode 100644 new mode 100755 index ef5431ba4..1de577bb9 --- a/XML/src/CDATASection.cpp +++ b/XML/src/CDATASection.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/CharacterData.cpp b/XML/src/CharacterData.cpp old mode 100644 new mode 100755 index 026a1a05a..4838fcfca --- a/XML/src/CharacterData.cpp +++ b/XML/src/CharacterData.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/ChildNodesList.cpp b/XML/src/ChildNodesList.cpp old mode 100644 new mode 100755 index 6f7380a85..5a1b2c8a4 --- a/XML/src/ChildNodesList.cpp +++ b/XML/src/ChildNodesList.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/Comment.cpp b/XML/src/Comment.cpp old mode 100644 new mode 100755 index eb86ad0a4..8d231d644 --- a/XML/src/Comment.cpp +++ b/XML/src/Comment.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/ContentHandler.cpp b/XML/src/ContentHandler.cpp old mode 100644 new mode 100755 index 5046565ca..12dc06b9f --- a/XML/src/ContentHandler.cpp +++ b/XML/src/ContentHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/DOMBuilder.cpp b/XML/src/DOMBuilder.cpp old mode 100644 new mode 100755 index 4fb8c3df9..8bc7c5994 --- a/XML/src/DOMBuilder.cpp +++ b/XML/src/DOMBuilder.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/DOMException.cpp b/XML/src/DOMException.cpp old mode 100644 new mode 100755 index fce15640b..64c060f0b --- a/XML/src/DOMException.cpp +++ b/XML/src/DOMException.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/DOMImplementation.cpp b/XML/src/DOMImplementation.cpp old mode 100644 new mode 100755 index 7f12ece95..10961ed98 --- a/XML/src/DOMImplementation.cpp +++ b/XML/src/DOMImplementation.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/DOMObject.cpp b/XML/src/DOMObject.cpp old mode 100644 new mode 100755 index 9a777a785..d378859e5 --- a/XML/src/DOMObject.cpp +++ b/XML/src/DOMObject.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/DOMParser.cpp b/XML/src/DOMParser.cpp old mode 100644 new mode 100755 index 1b6ee7705..4360f0f37 --- a/XML/src/DOMParser.cpp +++ b/XML/src/DOMParser.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/DOMSerializer.cpp b/XML/src/DOMSerializer.cpp old mode 100644 new mode 100755 index c62d046f0..fa4edf8a1 --- a/XML/src/DOMSerializer.cpp +++ b/XML/src/DOMSerializer.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/DOMWriter.cpp b/XML/src/DOMWriter.cpp old mode 100644 new mode 100755 index 7b923a45e..1e0164374 --- a/XML/src/DOMWriter.cpp +++ b/XML/src/DOMWriter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/DTDHandler.cpp b/XML/src/DTDHandler.cpp old mode 100644 new mode 100755 index e3bc22e26..18a0beb9f --- a/XML/src/DTDHandler.cpp +++ b/XML/src/DTDHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/DTDMap.cpp b/XML/src/DTDMap.cpp old mode 100644 new mode 100755 index 3da9accc5..f0630082d --- a/XML/src/DTDMap.cpp +++ b/XML/src/DTDMap.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/DeclHandler.cpp b/XML/src/DeclHandler.cpp old mode 100644 new mode 100755 index 6d6214957..daebae9f2 --- a/XML/src/DeclHandler.cpp +++ b/XML/src/DeclHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/DefaultHandler.cpp b/XML/src/DefaultHandler.cpp old mode 100644 new mode 100755 index d52b9f0ee..9d38db526 --- a/XML/src/DefaultHandler.cpp +++ b/XML/src/DefaultHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/Document.cpp b/XML/src/Document.cpp old mode 100644 new mode 100755 index 47b387300..7bf6182eb --- a/XML/src/Document.cpp +++ b/XML/src/Document.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/DocumentEvent.cpp b/XML/src/DocumentEvent.cpp old mode 100644 new mode 100755 index e61e986fe..a10580073 --- a/XML/src/DocumentEvent.cpp +++ b/XML/src/DocumentEvent.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/DocumentFragment.cpp b/XML/src/DocumentFragment.cpp old mode 100644 new mode 100755 index 480cd182c..226dc4d6c --- a/XML/src/DocumentFragment.cpp +++ b/XML/src/DocumentFragment.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/DocumentType.cpp b/XML/src/DocumentType.cpp old mode 100644 new mode 100755 index b6ea04816..099a30f5f --- a/XML/src/DocumentType.cpp +++ b/XML/src/DocumentType.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/Element.cpp b/XML/src/Element.cpp old mode 100644 new mode 100755 index bde48f8a0..71a1e65f5 --- a/XML/src/Element.cpp +++ b/XML/src/Element.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/ElementsByTagNameList.cpp b/XML/src/ElementsByTagNameList.cpp old mode 100644 new mode 100755 index b93259089..6fc18dd75 --- a/XML/src/ElementsByTagNameList.cpp +++ b/XML/src/ElementsByTagNameList.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/Entity.cpp b/XML/src/Entity.cpp old mode 100644 new mode 100755 index d752a8a4b..3e9ad3bac --- a/XML/src/Entity.cpp +++ b/XML/src/Entity.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/EntityReference.cpp b/XML/src/EntityReference.cpp old mode 100644 new mode 100755 index 99daad57f..7333bff22 --- a/XML/src/EntityReference.cpp +++ b/XML/src/EntityReference.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/EntityResolver.cpp b/XML/src/EntityResolver.cpp old mode 100644 new mode 100755 index a31b2f70d..eb6e3efa2 --- a/XML/src/EntityResolver.cpp +++ b/XML/src/EntityResolver.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/EntityResolverImpl.cpp b/XML/src/EntityResolverImpl.cpp old mode 100644 new mode 100755 index 354a7c496..0d505a15e --- a/XML/src/EntityResolverImpl.cpp +++ b/XML/src/EntityResolverImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/ErrorHandler.cpp b/XML/src/ErrorHandler.cpp old mode 100644 new mode 100755 index 0c2b4c891..58e9462ff --- a/XML/src/ErrorHandler.cpp +++ b/XML/src/ErrorHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/Event.cpp b/XML/src/Event.cpp old mode 100644 new mode 100755 index 68769d451..e187c1bfc --- a/XML/src/Event.cpp +++ b/XML/src/Event.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/EventDispatcher.cpp b/XML/src/EventDispatcher.cpp old mode 100644 new mode 100755 index 8d8ebd2e8..d35b0d4e4 --- a/XML/src/EventDispatcher.cpp +++ b/XML/src/EventDispatcher.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/EventException.cpp b/XML/src/EventException.cpp old mode 100644 new mode 100755 index 94bb032e3..b341500ab --- a/XML/src/EventException.cpp +++ b/XML/src/EventException.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/EventListener.cpp b/XML/src/EventListener.cpp old mode 100644 new mode 100755 index 2b6473acc..79be73a9b --- a/XML/src/EventListener.cpp +++ b/XML/src/EventListener.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/EventTarget.cpp b/XML/src/EventTarget.cpp old mode 100644 new mode 100755 index 4236ae9a0..62aee5b18 --- a/XML/src/EventTarget.cpp +++ b/XML/src/EventTarget.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/InputSource.cpp b/XML/src/InputSource.cpp old mode 100644 new mode 100755 index cda055987..8dbf0fa08 --- a/XML/src/InputSource.cpp +++ b/XML/src/InputSource.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/LexicalHandler.cpp b/XML/src/LexicalHandler.cpp old mode 100644 new mode 100755 index 3116a2637..784634c29 --- a/XML/src/LexicalHandler.cpp +++ b/XML/src/LexicalHandler.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/Locator.cpp b/XML/src/Locator.cpp old mode 100644 new mode 100755 index e38fc3792..eebfd7894 --- a/XML/src/Locator.cpp +++ b/XML/src/Locator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/LocatorImpl.cpp b/XML/src/LocatorImpl.cpp old mode 100644 new mode 100755 index 65c5f56c0..9a8420879 --- a/XML/src/LocatorImpl.cpp +++ b/XML/src/LocatorImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/MutationEvent.cpp b/XML/src/MutationEvent.cpp old mode 100644 new mode 100755 index cf09a9d9b..2d2c94d93 --- a/XML/src/MutationEvent.cpp +++ b/XML/src/MutationEvent.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/Name.cpp b/XML/src/Name.cpp old mode 100644 new mode 100755 index 0d1527204..cccd63735 --- a/XML/src/Name.cpp +++ b/XML/src/Name.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/NamePool.cpp b/XML/src/NamePool.cpp old mode 100644 new mode 100755 index 00efcd590..6553110c5 --- a/XML/src/NamePool.cpp +++ b/XML/src/NamePool.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/NamedNodeMap.cpp b/XML/src/NamedNodeMap.cpp old mode 100644 new mode 100755 index 60f436d66..39a9bf9a3 --- a/XML/src/NamedNodeMap.cpp +++ b/XML/src/NamedNodeMap.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/NamespaceStrategy.cpp b/XML/src/NamespaceStrategy.cpp old mode 100644 new mode 100755 index 536498f7c..f0c4292a6 --- a/XML/src/NamespaceStrategy.cpp +++ b/XML/src/NamespaceStrategy.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/NamespaceSupport.cpp b/XML/src/NamespaceSupport.cpp old mode 100644 new mode 100755 index ff09ee04b..6123f12b9 --- a/XML/src/NamespaceSupport.cpp +++ b/XML/src/NamespaceSupport.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/Node.cpp b/XML/src/Node.cpp old mode 100644 new mode 100755 index c629cf356..445fca4f2 --- a/XML/src/Node.cpp +++ b/XML/src/Node.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/NodeAppender.cpp b/XML/src/NodeAppender.cpp old mode 100644 new mode 100755 index a1aa15cbb..aefa6bbbe --- a/XML/src/NodeAppender.cpp +++ b/XML/src/NodeAppender.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/NodeFilter.cpp b/XML/src/NodeFilter.cpp old mode 100644 new mode 100755 index 2c7795263..c4e4087d6 --- a/XML/src/NodeFilter.cpp +++ b/XML/src/NodeFilter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/NodeIterator.cpp b/XML/src/NodeIterator.cpp old mode 100644 new mode 100755 index 00d3e3704..dc096aa08 --- a/XML/src/NodeIterator.cpp +++ b/XML/src/NodeIterator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/NodeList.cpp b/XML/src/NodeList.cpp old mode 100644 new mode 100755 index b3b20eb22..50f231a67 --- a/XML/src/NodeList.cpp +++ b/XML/src/NodeList.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/Notation.cpp b/XML/src/Notation.cpp old mode 100644 new mode 100755 index ed6b6ea5e..39e4af10b --- a/XML/src/Notation.cpp +++ b/XML/src/Notation.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/ParserEngine.cpp b/XML/src/ParserEngine.cpp old mode 100644 new mode 100755 index 7cb28a141..89c2385f1 --- a/XML/src/ParserEngine.cpp +++ b/XML/src/ParserEngine.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/ProcessingInstruction.cpp b/XML/src/ProcessingInstruction.cpp old mode 100644 new mode 100755 index 100af585f..5e7e8bdd0 --- a/XML/src/ProcessingInstruction.cpp +++ b/XML/src/ProcessingInstruction.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/SAXException.cpp b/XML/src/SAXException.cpp old mode 100644 new mode 100755 index 33d57200e..f6a730438 --- a/XML/src/SAXException.cpp +++ b/XML/src/SAXException.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/SAXParser.cpp b/XML/src/SAXParser.cpp old mode 100644 new mode 100755 index 3bf453040..8f2bc0778 --- a/XML/src/SAXParser.cpp +++ b/XML/src/SAXParser.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/Text.cpp b/XML/src/Text.cpp old mode 100644 new mode 100755 index e94a079a5..ac48fc054 --- a/XML/src/Text.cpp +++ b/XML/src/Text.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/TreeWalker.cpp b/XML/src/TreeWalker.cpp old mode 100644 new mode 100755 index 204da0284..490cd0be4 --- a/XML/src/TreeWalker.cpp +++ b/XML/src/TreeWalker.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/WhitespaceFilter.cpp b/XML/src/WhitespaceFilter.cpp old mode 100644 new mode 100755 index b38178456..f3a05a11b --- a/XML/src/WhitespaceFilter.cpp +++ b/XML/src/WhitespaceFilter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/XMLException.cpp b/XML/src/XMLException.cpp old mode 100644 new mode 100755 index b31821592..c42aab40f --- a/XML/src/XMLException.cpp +++ b/XML/src/XMLException.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/XMLFilter.cpp b/XML/src/XMLFilter.cpp old mode 100644 new mode 100755 index e5eae3479..ad5e10d25 --- a/XML/src/XMLFilter.cpp +++ b/XML/src/XMLFilter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/XMLFilterImpl.cpp b/XML/src/XMLFilterImpl.cpp old mode 100644 new mode 100755 index 701028dbe..8d0c6358f --- a/XML/src/XMLFilterImpl.cpp +++ b/XML/src/XMLFilterImpl.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/XMLReader.cpp b/XML/src/XMLReader.cpp old mode 100644 new mode 100755 index d6fa1ddb8..5b932c440 --- a/XML/src/XMLReader.cpp +++ b/XML/src/XMLReader.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/XMLString.cpp b/XML/src/XMLString.cpp old mode 100644 new mode 100755 index 34bba630c..2549e20d3 --- a/XML/src/XMLString.cpp +++ b/XML/src/XMLString.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/XMLWriter.cpp b/XML/src/XMLWriter.cpp old mode 100644 new mode 100755 index df341e348..6e8a0d702 --- a/XML/src/XMLWriter.cpp +++ b/XML/src/XMLWriter.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/src/expat_config.h b/XML/src/expat_config.h old mode 100644 new mode 100755 index 0c624770f..8c363f54f --- a/XML/src/expat_config.h +++ b/XML/src/expat_config.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/AttributesImplTest.cpp b/XML/testsuite/src/AttributesImplTest.cpp old mode 100644 new mode 100755 index 92b4ecf54..c915cc0a6 --- a/XML/testsuite/src/AttributesImplTest.cpp +++ b/XML/testsuite/src/AttributesImplTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/AttributesImplTest.h b/XML/testsuite/src/AttributesImplTest.h old mode 100644 new mode 100755 index 7b1bd08b6..671357a62 --- a/XML/testsuite/src/AttributesImplTest.h +++ b/XML/testsuite/src/AttributesImplTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/ChildNodesTest.cpp b/XML/testsuite/src/ChildNodesTest.cpp old mode 100644 new mode 100755 index 935e738e5..562a4a6c1 --- a/XML/testsuite/src/ChildNodesTest.cpp +++ b/XML/testsuite/src/ChildNodesTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/ChildNodesTest.h b/XML/testsuite/src/ChildNodesTest.h old mode 100644 new mode 100755 index c5ba8ca3a..913377dc2 --- a/XML/testsuite/src/ChildNodesTest.h +++ b/XML/testsuite/src/ChildNodesTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/DOMTestSuite.cpp b/XML/testsuite/src/DOMTestSuite.cpp old mode 100644 new mode 100755 index b5b0305c6..d0bb61371 --- a/XML/testsuite/src/DOMTestSuite.cpp +++ b/XML/testsuite/src/DOMTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/DOMTestSuite.h b/XML/testsuite/src/DOMTestSuite.h old mode 100644 new mode 100755 index b997155fc..f76c91037 --- a/XML/testsuite/src/DOMTestSuite.h +++ b/XML/testsuite/src/DOMTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/DocumentTest.cpp b/XML/testsuite/src/DocumentTest.cpp old mode 100644 new mode 100755 index 84bfb537d..687749dd7 --- a/XML/testsuite/src/DocumentTest.cpp +++ b/XML/testsuite/src/DocumentTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/DocumentTest.h b/XML/testsuite/src/DocumentTest.h old mode 100644 new mode 100755 index 33b44f131..d472fb79f --- a/XML/testsuite/src/DocumentTest.h +++ b/XML/testsuite/src/DocumentTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/DocumentTypeTest.cpp b/XML/testsuite/src/DocumentTypeTest.cpp old mode 100644 new mode 100755 index 92e82ce09..1801e59cd --- a/XML/testsuite/src/DocumentTypeTest.cpp +++ b/XML/testsuite/src/DocumentTypeTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/DocumentTypeTest.h b/XML/testsuite/src/DocumentTypeTest.h old mode 100644 new mode 100755 index df9b26f1f..2f839aa45 --- a/XML/testsuite/src/DocumentTypeTest.h +++ b/XML/testsuite/src/DocumentTypeTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/Driver.cpp b/XML/testsuite/src/Driver.cpp old mode 100644 new mode 100755 index 87355922b..fa39ed92e --- a/XML/testsuite/src/Driver.cpp +++ b/XML/testsuite/src/Driver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/ElementTest.cpp b/XML/testsuite/src/ElementTest.cpp old mode 100644 new mode 100755 index 0b73f997d..33aef2990 --- a/XML/testsuite/src/ElementTest.cpp +++ b/XML/testsuite/src/ElementTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/ElementTest.h b/XML/testsuite/src/ElementTest.h old mode 100644 new mode 100755 index 7a708a3a9..0f5cce0a2 --- a/XML/testsuite/src/ElementTest.h +++ b/XML/testsuite/src/ElementTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/EventTest.cpp b/XML/testsuite/src/EventTest.cpp old mode 100644 new mode 100755 index ab8b769b4..c41f14593 --- a/XML/testsuite/src/EventTest.cpp +++ b/XML/testsuite/src/EventTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/EventTest.h b/XML/testsuite/src/EventTest.h old mode 100644 new mode 100755 index d0ca1ac77..a50abe472 --- a/XML/testsuite/src/EventTest.h +++ b/XML/testsuite/src/EventTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/NamePoolTest.cpp b/XML/testsuite/src/NamePoolTest.cpp old mode 100644 new mode 100755 index 0d432598b..2faeae022 --- a/XML/testsuite/src/NamePoolTest.cpp +++ b/XML/testsuite/src/NamePoolTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/NamePoolTest.h b/XML/testsuite/src/NamePoolTest.h old mode 100644 new mode 100755 index 2378a35cd..feaae8562 --- a/XML/testsuite/src/NamePoolTest.h +++ b/XML/testsuite/src/NamePoolTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/NameTest.cpp b/XML/testsuite/src/NameTest.cpp old mode 100644 new mode 100755 index cd8aae7ba..5a7711219 --- a/XML/testsuite/src/NameTest.cpp +++ b/XML/testsuite/src/NameTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/NameTest.h b/XML/testsuite/src/NameTest.h old mode 100644 new mode 100755 index a5390a904..ad307da71 --- a/XML/testsuite/src/NameTest.h +++ b/XML/testsuite/src/NameTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/NamespaceSupportTest.cpp b/XML/testsuite/src/NamespaceSupportTest.cpp old mode 100644 new mode 100755 index ba871bb96..b20c31b4a --- a/XML/testsuite/src/NamespaceSupportTest.cpp +++ b/XML/testsuite/src/NamespaceSupportTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/NamespaceSupportTest.h b/XML/testsuite/src/NamespaceSupportTest.h old mode 100644 new mode 100755 index 85ffe9a04..d243c877e --- a/XML/testsuite/src/NamespaceSupportTest.h +++ b/XML/testsuite/src/NamespaceSupportTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/NodeAppenderTest.cpp b/XML/testsuite/src/NodeAppenderTest.cpp old mode 100644 new mode 100755 index 30f7610f7..1da757a35 --- a/XML/testsuite/src/NodeAppenderTest.cpp +++ b/XML/testsuite/src/NodeAppenderTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/NodeAppenderTest.h b/XML/testsuite/src/NodeAppenderTest.h old mode 100644 new mode 100755 index 06569e9ab..2616d8043 --- a/XML/testsuite/src/NodeAppenderTest.h +++ b/XML/testsuite/src/NodeAppenderTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/NodeIteratorTest.cpp b/XML/testsuite/src/NodeIteratorTest.cpp old mode 100644 new mode 100755 index 6cdf3efcb..29c18c36e --- a/XML/testsuite/src/NodeIteratorTest.cpp +++ b/XML/testsuite/src/NodeIteratorTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/NodeIteratorTest.h b/XML/testsuite/src/NodeIteratorTest.h old mode 100644 new mode 100755 index 6845ad7c6..a01d5ebca --- a/XML/testsuite/src/NodeIteratorTest.h +++ b/XML/testsuite/src/NodeIteratorTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/NodeTest.cpp b/XML/testsuite/src/NodeTest.cpp old mode 100644 new mode 100755 index a7e147681..f443ef304 --- a/XML/testsuite/src/NodeTest.cpp +++ b/XML/testsuite/src/NodeTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/NodeTest.h b/XML/testsuite/src/NodeTest.h old mode 100644 new mode 100755 index 4cb27529a..d46bfe67e --- a/XML/testsuite/src/NodeTest.h +++ b/XML/testsuite/src/NodeTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/ParserWriterTest.cpp b/XML/testsuite/src/ParserWriterTest.cpp old mode 100644 new mode 100755 index 7ae54a137..8d15dd1cf --- a/XML/testsuite/src/ParserWriterTest.cpp +++ b/XML/testsuite/src/ParserWriterTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/ParserWriterTest.h b/XML/testsuite/src/ParserWriterTest.h old mode 100644 new mode 100755 index e788434e2..b6dab69f2 --- a/XML/testsuite/src/ParserWriterTest.h +++ b/XML/testsuite/src/ParserWriterTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/SAXParserTest.cpp b/XML/testsuite/src/SAXParserTest.cpp old mode 100644 new mode 100755 index 06e43b462..1e09271e9 --- a/XML/testsuite/src/SAXParserTest.cpp +++ b/XML/testsuite/src/SAXParserTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/SAXParserTest.h b/XML/testsuite/src/SAXParserTest.h old mode 100644 new mode 100755 index 8668caba5..2410a5e44 --- a/XML/testsuite/src/SAXParserTest.h +++ b/XML/testsuite/src/SAXParserTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/SAXTestSuite.cpp b/XML/testsuite/src/SAXTestSuite.cpp old mode 100644 new mode 100755 index 204c61322..7d4631cd3 --- a/XML/testsuite/src/SAXTestSuite.cpp +++ b/XML/testsuite/src/SAXTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/SAXTestSuite.h b/XML/testsuite/src/SAXTestSuite.h old mode 100644 new mode 100755 index 512f2ad81..3b0f88e82 --- a/XML/testsuite/src/SAXTestSuite.h +++ b/XML/testsuite/src/SAXTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/TextTest.cpp b/XML/testsuite/src/TextTest.cpp old mode 100644 new mode 100755 index d0fcedf02..fc7df67bd --- a/XML/testsuite/src/TextTest.cpp +++ b/XML/testsuite/src/TextTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/TextTest.h b/XML/testsuite/src/TextTest.h old mode 100644 new mode 100755 index 56e115e58..772693ee1 --- a/XML/testsuite/src/TextTest.h +++ b/XML/testsuite/src/TextTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/TreeWalkerTest.cpp b/XML/testsuite/src/TreeWalkerTest.cpp old mode 100644 new mode 100755 index 206df70f6..e8f48e659 --- a/XML/testsuite/src/TreeWalkerTest.cpp +++ b/XML/testsuite/src/TreeWalkerTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/TreeWalkerTest.h b/XML/testsuite/src/TreeWalkerTest.h old mode 100644 new mode 100755 index 5b3794d4b..d09b3cfa5 --- a/XML/testsuite/src/TreeWalkerTest.h +++ b/XML/testsuite/src/TreeWalkerTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/WinCEDriver.cpp b/XML/testsuite/src/WinCEDriver.cpp old mode 100644 new mode 100755 index 2905720ad..a95ed5899 --- a/XML/testsuite/src/WinCEDriver.cpp +++ b/XML/testsuite/src/WinCEDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/WinDriver.cpp b/XML/testsuite/src/WinDriver.cpp old mode 100644 new mode 100755 index 2cffce01f..78e10ae1f --- a/XML/testsuite/src/WinDriver.cpp +++ b/XML/testsuite/src/WinDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/XMLTestSuite.cpp b/XML/testsuite/src/XMLTestSuite.cpp old mode 100644 new mode 100755 index 764c9e8ed..28bb213ed --- a/XML/testsuite/src/XMLTestSuite.cpp +++ b/XML/testsuite/src/XMLTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/XMLTestSuite.h b/XML/testsuite/src/XMLTestSuite.h old mode 100644 new mode 100755 index ffeab412f..bafb5b79c --- a/XML/testsuite/src/XMLTestSuite.h +++ b/XML/testsuite/src/XMLTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/XMLWriterTest.cpp b/XML/testsuite/src/XMLWriterTest.cpp old mode 100644 new mode 100755 index 3717d59c4..10667d039 --- a/XML/testsuite/src/XMLWriterTest.cpp +++ b/XML/testsuite/src/XMLWriterTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/XML/testsuite/src/XMLWriterTest.h b/XML/testsuite/src/XMLWriterTest.h old mode 100644 new mode 100755 index 3e266fe58..65af24f83 --- a/XML/testsuite/src/XMLWriterTest.h +++ b/XML/testsuite/src/XMLWriterTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/Add.h b/Zip/include/Poco/Zip/Add.h old mode 100644 new mode 100755 index 1546e6202..54be975fb --- a/Zip/include/Poco/Zip/Add.h +++ b/Zip/include/Poco/Zip/Add.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/AutoDetectStream.h b/Zip/include/Poco/Zip/AutoDetectStream.h old mode 100644 new mode 100755 index cec13add4..5341e4002 --- a/Zip/include/Poco/Zip/AutoDetectStream.h +++ b/Zip/include/Poco/Zip/AutoDetectStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/Compress.h b/Zip/include/Poco/Zip/Compress.h old mode 100644 new mode 100755 index 07a6d0ae5..bed4324c8 --- a/Zip/include/Poco/Zip/Compress.h +++ b/Zip/include/Poco/Zip/Compress.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/Decompress.h b/Zip/include/Poco/Zip/Decompress.h old mode 100644 new mode 100755 index e75f8e241..06901c263 --- a/Zip/include/Poco/Zip/Decompress.h +++ b/Zip/include/Poco/Zip/Decompress.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/Delete.h b/Zip/include/Poco/Zip/Delete.h old mode 100644 new mode 100755 index de2f231da..1a383d1c8 --- a/Zip/include/Poco/Zip/Delete.h +++ b/Zip/include/Poco/Zip/Delete.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/Keep.h b/Zip/include/Poco/Zip/Keep.h old mode 100644 new mode 100755 index e22513838..8d5bd8edf --- a/Zip/include/Poco/Zip/Keep.h +++ b/Zip/include/Poco/Zip/Keep.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/ParseCallback.h b/Zip/include/Poco/Zip/ParseCallback.h old mode 100644 new mode 100755 index 401967442..52d6ece10 --- a/Zip/include/Poco/Zip/ParseCallback.h +++ b/Zip/include/Poco/Zip/ParseCallback.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/PartialStream.h b/Zip/include/Poco/Zip/PartialStream.h old mode 100644 new mode 100755 index 3ed144085..c745f691d --- a/Zip/include/Poco/Zip/PartialStream.h +++ b/Zip/include/Poco/Zip/PartialStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/Rename.h b/Zip/include/Poco/Zip/Rename.h old mode 100644 new mode 100755 index 58a0cf45a..bd0cc31ac --- a/Zip/include/Poco/Zip/Rename.h +++ b/Zip/include/Poco/Zip/Rename.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/Replace.h b/Zip/include/Poco/Zip/Replace.h old mode 100644 new mode 100755 index 747556438..b1b12fd04 --- a/Zip/include/Poco/Zip/Replace.h +++ b/Zip/include/Poco/Zip/Replace.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/SkipCallback.h b/Zip/include/Poco/Zip/SkipCallback.h old mode 100644 new mode 100755 index a0f09279f..e100e3313 --- a/Zip/include/Poco/Zip/SkipCallback.h +++ b/Zip/include/Poco/Zip/SkipCallback.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/Zip.h b/Zip/include/Poco/Zip/Zip.h old mode 100644 new mode 100755 index 0cedf370c..bd1412dc6 --- a/Zip/include/Poco/Zip/Zip.h +++ b/Zip/include/Poco/Zip/Zip.h @@ -14,27 +14,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/ZipArchive.h b/Zip/include/Poco/Zip/ZipArchive.h old mode 100644 new mode 100755 index 7a134c6da..943485d9b --- a/Zip/include/Poco/Zip/ZipArchive.h +++ b/Zip/include/Poco/Zip/ZipArchive.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/ZipArchiveInfo.h b/Zip/include/Poco/Zip/ZipArchiveInfo.h old mode 100644 new mode 100755 index 286e7180e..571c7a379 --- a/Zip/include/Poco/Zip/ZipArchiveInfo.h +++ b/Zip/include/Poco/Zip/ZipArchiveInfo.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/ZipCommon.h b/Zip/include/Poco/Zip/ZipCommon.h old mode 100644 new mode 100755 index 9c56e6d65..108622495 --- a/Zip/include/Poco/Zip/ZipCommon.h +++ b/Zip/include/Poco/Zip/ZipCommon.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/ZipDataInfo.h b/Zip/include/Poco/Zip/ZipDataInfo.h old mode 100644 new mode 100755 index 0eced7911..bf4be2327 --- a/Zip/include/Poco/Zip/ZipDataInfo.h +++ b/Zip/include/Poco/Zip/ZipDataInfo.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/ZipException.h b/Zip/include/Poco/Zip/ZipException.h old mode 100644 new mode 100755 index 197e92bb3..ec4e08d3f --- a/Zip/include/Poco/Zip/ZipException.h +++ b/Zip/include/Poco/Zip/ZipException.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/ZipFileInfo.h b/Zip/include/Poco/Zip/ZipFileInfo.h old mode 100644 new mode 100755 index b80798d53..5e6ad343e --- a/Zip/include/Poco/Zip/ZipFileInfo.h +++ b/Zip/include/Poco/Zip/ZipFileInfo.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/ZipLocalFileHeader.h b/Zip/include/Poco/Zip/ZipLocalFileHeader.h old mode 100644 new mode 100755 index 9c45f1e76..67645a2c6 --- a/Zip/include/Poco/Zip/ZipLocalFileHeader.h +++ b/Zip/include/Poco/Zip/ZipLocalFileHeader.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/ZipManipulator.h b/Zip/include/Poco/Zip/ZipManipulator.h old mode 100644 new mode 100755 index a043be33a..a146e146e --- a/Zip/include/Poco/Zip/ZipManipulator.h +++ b/Zip/include/Poco/Zip/ZipManipulator.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/ZipOperation.h b/Zip/include/Poco/Zip/ZipOperation.h old mode 100644 new mode 100755 index fb9576a2e..1ea3b83a2 --- a/Zip/include/Poco/Zip/ZipOperation.h +++ b/Zip/include/Poco/Zip/ZipOperation.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/ZipStream.h b/Zip/include/Poco/Zip/ZipStream.h old mode 100644 new mode 100755 index 7de62ef9f..052d5bf0b --- a/Zip/include/Poco/Zip/ZipStream.h +++ b/Zip/include/Poco/Zip/ZipStream.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/include/Poco/Zip/ZipUtil.h b/Zip/include/Poco/Zip/ZipUtil.h old mode 100644 new mode 100755 index ae66b5c9b..0e89b4878 --- a/Zip/include/Poco/Zip/ZipUtil.h +++ b/Zip/include/Poco/Zip/ZipUtil.h @@ -12,27 +12,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/samples/unzip/src/unzip.cpp b/Zip/samples/unzip/src/unzip.cpp old mode 100644 new mode 100755 index c87c541b0..0bb63df81 --- a/Zip/samples/unzip/src/unzip.cpp +++ b/Zip/samples/unzip/src/unzip.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/samples/zip/src/zip.cpp b/Zip/samples/zip/src/zip.cpp old mode 100644 new mode 100755 index f06c021e7..1ec9c812d --- a/Zip/samples/zip/src/zip.cpp +++ b/Zip/samples/zip/src/zip.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/Add.cpp b/Zip/src/Add.cpp old mode 100644 new mode 100755 index d261d0edc..fb57a8bf3 --- a/Zip/src/Add.cpp +++ b/Zip/src/Add.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/AutoDetectStream.cpp b/Zip/src/AutoDetectStream.cpp old mode 100644 new mode 100755 index 828adc1bc..1229e3294 --- a/Zip/src/AutoDetectStream.cpp +++ b/Zip/src/AutoDetectStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/Compress.cpp b/Zip/src/Compress.cpp old mode 100644 new mode 100755 index 21750fd46..7e5c8aed2 --- a/Zip/src/Compress.cpp +++ b/Zip/src/Compress.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/Decompress.cpp b/Zip/src/Decompress.cpp old mode 100644 new mode 100755 index e07711878..656922899 --- a/Zip/src/Decompress.cpp +++ b/Zip/src/Decompress.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/Delete.cpp b/Zip/src/Delete.cpp old mode 100644 new mode 100755 index 7b817808e..ee9482763 --- a/Zip/src/Delete.cpp +++ b/Zip/src/Delete.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/Keep.cpp b/Zip/src/Keep.cpp old mode 100644 new mode 100755 index a8968184a..5e2c97d1c --- a/Zip/src/Keep.cpp +++ b/Zip/src/Keep.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/ParseCallback.cpp b/Zip/src/ParseCallback.cpp old mode 100644 new mode 100755 index c5e60d39a..f757a523b --- a/Zip/src/ParseCallback.cpp +++ b/Zip/src/ParseCallback.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/PartialStream.cpp b/Zip/src/PartialStream.cpp old mode 100644 new mode 100755 index 2dac076c2..fd786aa18 --- a/Zip/src/PartialStream.cpp +++ b/Zip/src/PartialStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/Rename.cpp b/Zip/src/Rename.cpp old mode 100644 new mode 100755 index 349080dd0..da60259ea --- a/Zip/src/Rename.cpp +++ b/Zip/src/Rename.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/Replace.cpp b/Zip/src/Replace.cpp old mode 100644 new mode 100755 index 28911d2f4..feb18d679 --- a/Zip/src/Replace.cpp +++ b/Zip/src/Replace.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/SkipCallback.cpp b/Zip/src/SkipCallback.cpp old mode 100644 new mode 100755 index 74dd0d8e9..20d0ca491 --- a/Zip/src/SkipCallback.cpp +++ b/Zip/src/SkipCallback.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/ZipArchive.cpp b/Zip/src/ZipArchive.cpp old mode 100644 new mode 100755 index 0dda2d17e..c24ed66dd --- a/Zip/src/ZipArchive.cpp +++ b/Zip/src/ZipArchive.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/ZipArchiveInfo.cpp b/Zip/src/ZipArchiveInfo.cpp old mode 100644 new mode 100755 index 73f851f18..c76a53dab --- a/Zip/src/ZipArchiveInfo.cpp +++ b/Zip/src/ZipArchiveInfo.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/ZipCommon.cpp b/Zip/src/ZipCommon.cpp old mode 100644 new mode 100755 index 0d55c2c5f..e1399fe2a --- a/Zip/src/ZipCommon.cpp +++ b/Zip/src/ZipCommon.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/ZipDataInfo.cpp b/Zip/src/ZipDataInfo.cpp old mode 100644 new mode 100755 index dbc19093b..3d5197a0c --- a/Zip/src/ZipDataInfo.cpp +++ b/Zip/src/ZipDataInfo.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/ZipException.cpp b/Zip/src/ZipException.cpp old mode 100644 new mode 100755 index 2242ec119..5c4ad05c3 --- a/Zip/src/ZipException.cpp +++ b/Zip/src/ZipException.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/ZipFileInfo.cpp b/Zip/src/ZipFileInfo.cpp old mode 100644 new mode 100755 index b7f3d9d15..aa91571cc --- a/Zip/src/ZipFileInfo.cpp +++ b/Zip/src/ZipFileInfo.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/ZipLocalFileHeader.cpp b/Zip/src/ZipLocalFileHeader.cpp old mode 100644 new mode 100755 index 47ae53634..ef7dca368 --- a/Zip/src/ZipLocalFileHeader.cpp +++ b/Zip/src/ZipLocalFileHeader.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/ZipManipulator.cpp b/Zip/src/ZipManipulator.cpp old mode 100644 new mode 100755 index 26ce1f2c8..5fc00e9ae --- a/Zip/src/ZipManipulator.cpp +++ b/Zip/src/ZipManipulator.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/ZipOperation.cpp b/Zip/src/ZipOperation.cpp old mode 100644 new mode 100755 index 7a0b239c4..a13f24a6f --- a/Zip/src/ZipOperation.cpp +++ b/Zip/src/ZipOperation.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/ZipStream.cpp b/Zip/src/ZipStream.cpp old mode 100644 new mode 100755 index 5d2adb9c8..e8d466a0d --- a/Zip/src/ZipStream.cpp +++ b/Zip/src/ZipStream.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/src/ZipUtil.cpp b/Zip/src/ZipUtil.cpp old mode 100644 new mode 100755 index 46a8ac252..8e24bc7d9 --- a/Zip/src/ZipUtil.cpp +++ b/Zip/src/ZipUtil.cpp @@ -10,27 +10,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/testsuite/src/CompressTest.cpp b/Zip/testsuite/src/CompressTest.cpp old mode 100644 new mode 100755 index 55853ad70..ee8bf8428 --- a/Zip/testsuite/src/CompressTest.cpp +++ b/Zip/testsuite/src/CompressTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/testsuite/src/CompressTest.h b/Zip/testsuite/src/CompressTest.h old mode 100644 new mode 100755 index b170c6988..98fbd56ed --- a/Zip/testsuite/src/CompressTest.h +++ b/Zip/testsuite/src/CompressTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/testsuite/src/Driver.cpp b/Zip/testsuite/src/Driver.cpp old mode 100644 new mode 100755 index 724d1adca..f43e656bd --- a/Zip/testsuite/src/Driver.cpp +++ b/Zip/testsuite/src/Driver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/testsuite/src/PartialStreamTest.cpp b/Zip/testsuite/src/PartialStreamTest.cpp old mode 100644 new mode 100755 index 84faa27d7..bd98ad139 --- a/Zip/testsuite/src/PartialStreamTest.cpp +++ b/Zip/testsuite/src/PartialStreamTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/testsuite/src/PartialStreamTest.h b/Zip/testsuite/src/PartialStreamTest.h old mode 100644 new mode 100755 index 8e4c935d5..29f7c3385 --- a/Zip/testsuite/src/PartialStreamTest.h +++ b/Zip/testsuite/src/PartialStreamTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/testsuite/src/WinCEDriver.cpp b/Zip/testsuite/src/WinCEDriver.cpp old mode 100644 new mode 100755 index c659ef373..23297e1b2 --- a/Zip/testsuite/src/WinCEDriver.cpp +++ b/Zip/testsuite/src/WinCEDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/testsuite/src/WinDriver.cpp b/Zip/testsuite/src/WinDriver.cpp old mode 100644 new mode 100755 index 65d5097c7..de28b5d52 --- a/Zip/testsuite/src/WinDriver.cpp +++ b/Zip/testsuite/src/WinDriver.cpp @@ -8,27 +8,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/testsuite/src/ZipTest.cpp b/Zip/testsuite/src/ZipTest.cpp old mode 100644 new mode 100755 index eea16de26..0b89bd9e6 --- a/Zip/testsuite/src/ZipTest.cpp +++ b/Zip/testsuite/src/ZipTest.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/testsuite/src/ZipTest.h b/Zip/testsuite/src/ZipTest.h old mode 100644 new mode 100755 index 91e9b5373..8f8adeeb1 --- a/Zip/testsuite/src/ZipTest.h +++ b/Zip/testsuite/src/ZipTest.h @@ -8,27 +8,7 @@ // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/testsuite/src/ZipTestSuite.cpp b/Zip/testsuite/src/ZipTestSuite.cpp old mode 100644 new mode 100755 index 5316108d2..6e5832a12 --- a/Zip/testsuite/src/ZipTestSuite.cpp +++ b/Zip/testsuite/src/ZipTestSuite.cpp @@ -6,27 +6,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 // diff --git a/Zip/testsuite/src/ZipTestSuite.h b/Zip/testsuite/src/ZipTestSuite.h old mode 100644 new mode 100755 index a222904b8..62f645693 --- a/Zip/testsuite/src/ZipTestSuite.h +++ b/Zip/testsuite/src/ZipTestSuite.h @@ -8,27 +8,7 @@ // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. // and Contributors. // -// Permission is hereby granted, free of charge, to any person or organization -// obtaining a copy of the software and accompanying documentation covered by -// this license (the "Software") to use, reproduce, display, distribute, -// execute, and transmit the Software, and to prepare derivative works of the -// Software, and to permit third-parties to whom the Software is furnished to -// do so, all subject to the following: -// -// The copyright notices in the Software and this entire statement, including -// the above license grant, this restriction and the following disclaimer, -// must be included in all copies of the Software, in whole or in part, and -// all derivative works of the Software, unless such copies or derivative -// works are solely in the form of machine-executable object code generated by -// a source language processor. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -// DEALINGS IN THE SOFTWARE. +// SPDX-License-Identifier: BSL-1.0 //